-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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
{
"name": "ts-cqs",
"version": "0.1.0",
"description": "Lightweight Command and Query Separation library",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shawnmclean/ts-cqs.git"
},
"keywords": [
"cqs",
"cqrs",
"typescript",
"inversify",
"inversifyJs",
"command",
"query"
],
"author": "Shawn Mclean",
"license": "ISC",
"bugs": {
"url": "https://github.com/shawnmclean/ts-cqs/issues"
},
"homepage": "https://github.com/shawnmclean/ts-cqs#readme",
"devDependencies": {
"@types/jest": "^23.3.9",
"@types/node": "^10.12.2",
"jest": "^23.6.0",
"prettier": "^1.14.3",
"pretty-quick": "^1.8.0",
"reflect-metadata": "^0.1.12",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"typescript": "^3.3.4000"
},
"dependencies": {
"inversify": "^5.0.1"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}