-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.49 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
{
"name": "@grubou/bussy",
"version": "1.0.0",
"engines": {
"node": ">=14.0.0"
},
"description": "Command & query bus implementations",
"keywords": [
"CQS",
"bus",
"Command",
"Query",
"DDD",
"Event",
"CQRS"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "tap --no-coverage --ts --reporter=spec tests/**/*.test.ts",
"test:watch": "tap --no-coverage -w --ts --reporter=spec tests/**/*.test.ts",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/franck-romano/bussy.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/franck-romano/bussy/issues"
},
"homepage": "https://github.com/franck-romano/bussy#readme",
"devDependencies": {
"@types/mocha": "9.1.1",
"@types/node": "17.0.8",
"@types/tap": "15.0.5",
"cz-conventional-changelog": "3.3.0",
"fastify": "3.25.3",
"gts": "3.1.0",
"husky": "7.0.4",
"tap": "15.1.6",
"ts-mockito": "2.6.1",
"ts-node": "10.4.0",
"typescript": "4.5.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"printWidth": 120,
"tabWidth": 2
},
"dependencies": {
"pino": "7.6.2"
}
}