-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
62 lines (62 loc) · 1.68 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
55
56
57
58
59
60
61
62
{
"name": "node-cqrs",
"version": "1.0.0-rc.5",
"description": "Basic ES6 backbone for CQRS app development",
"repository": {
"type": "git",
"url": "https://github.com/snatalenko/node-cqrs.git"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"keywords": [
"cqrs",
"eventsourcing",
"ddd",
"domain",
"eventstore"
],
"main": "./dist/index.js",
"types": "./src/index.ts",
"engines": {
"node": ">=10.3.0"
},
"scripts": {
"pretest": "npm run build",
"test": "jest --verbose tests/unit",
"test:coverage": "jest --collect-coverage tests/unit",
"pretest:integration": "npm run build",
"test:integration": "jest --verbose examples/user-domain-tests",
"pretest:coveralls": "npm run test:coverage",
"test:coveralls": "cat ./coverage/lcov.info | coveralls",
"posttest:coveralls": "rm -rf ./coverage",
"changelog": "conventional-changelog -n ./scripts/changelog -i CHANGELOG.md -s",
"clean": "tsc --build --clean",
"build": "tsc --build",
"prepare": "npm run build",
"preversion": "npm test",
"version": "npm run changelog && git add CHANGELOG.md"
},
"author": "@snatalenko",
"license": "MIT",
"homepage": "https://github.com/snatalenko/node-cqrs#readme",
"dependencies": {
"di0": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.17",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.14",
"@types/sinon": "^10.0.20",
"chai": "^4.5.0",
"conventional-changelog": "^3.1.25",
"coveralls": "^3.1.1",
"jest": "^29.7.0",
"sinon": "^15.2.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}