-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
99 lines (99 loc) · 2.61 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "node-cqrs",
"version": "1.0.0-rc.10",
"description": "Basic ES6 backbone for CQRS app development",
"keywords": [
"cqrs",
"eventsourcing"
],
"repository": {
"type": "git",
"url": "https://github.com/snatalenko/node-cqrs.git"
},
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"typesVersions": {
"*": {
"rabbitmq": [
"types/rabbitmq/index.d.ts"
],
"sqlite": [
"types/sqlite/index.d.ts"
]
}
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./types/index.d.ts"
},
"./rabbitmq": {
"require": "./dist/rabbitmq/index.js",
"import": "./dist/rabbitmq/index.js",
"types": "./types/rabbitmq/index.d.ts"
},
"./sqlite": {
"require": "./dist/sqlite/index.js",
"import": "./dist/sqlite/index.js",
"types": "./types/sqlite/index.d.ts"
}
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"pretest": "npm run build",
"test": "jest tests/unit",
"test:coverage": "jest --collect-coverage tests/unit",
"pretest:integration": "npm run build",
"test:integration": "jest --verbose examples/user-domain-tests tests/integration",
"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",
"lint": "eslint"
},
"author": "@snatalenko",
"license": "MIT",
"homepage": "https://github.com/snatalenko/node-cqrs#readme",
"dependencies": {
"async-iterable-buffer": "^1.0.0",
"async-parallel-pipe": "^1.0.2",
"di0": "^1.0.0"
},
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^4.2.0",
"@types/amqplib": "^0.10.7",
"@types/better-sqlite3": "^7.6.11",
"@types/chai": "^4.3.20",
"@types/jest": "^29.5.13",
"@types/md5": "^2.3.5",
"@types/node": "^20.16.9",
"@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"chai": "^4.5.0",
"conventional-changelog": "^3.1.25",
"eslint": "^9.24.0",
"eslint-plugin-jest": "^28.11.0",
"jest": "^29.7.0",
"sinon": "^19.0.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.29.0"
},
"peerDependencies": {
"amqplib": "^0.10.5",
"better-sqlite3": "^11.3.0",
"md5": "^2.3.0"
}
}