-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "stalagmite",
"version": "0.0.10",
"description": "Event sourcing library that helps you building event sourced aggregates.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"doc": "typedoc --options typedoc.json",
"test": "jest",
"test:watch": "jest --watch",
"all": "npm run typecheck && npm run build && npm test && npm run doc",
"open:doc": "open docs/index.html",
"open:coverage": "open coverage/lcov-report/index.html",
"preversion": "npm test && npm run doc",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"keywords": [
"event-sourcing",
"event sourcing",
"ES",
"CQRS",
"DDD",
"aggregate",
"event"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SachaCR/stalagmite.git"
},
"author": "SachaCR",
"license": "MIT",
"bugs": {
"url": "https://github.com/SachaCR/stalagmite/issues"
},
"homepage": "https://github.com/SachaCR/stalagmite#readme",
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/jest": "^26.0.22",
"@types/lodash.clonedeep": "^4.5.6",
"jest": "^26.6.3",
"ts-jest": "^26.5.5",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0"
}
}