-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.62 KB
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
{
"name": "@node-ts/ddd",
"version": "0.1.5",
"description": "A domain driven design framework for enterprise grade applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/node-ts/ddd.git",
"author": "Andrew den Hertog <andrew.denhertog@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc --project tsconfig.json --stripInternal --outDir dist/ --declaration",
"lint": "yarn lint:ts",
"lint:ts": "tslint --project tsconfig.json 'src/**/*.ts'",
"lint:fix": "yarn lint --fix",
"publish:packages": "npm publish --access=public",
"test": "jest \"(src\\/.+\\.|/)spec\\.ts$\"",
"test:coverage": "yarn run test --coverage",
"test:ci": "yarn run test -w 8",
"test:watch": "yarn run test --watch"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"typescript",
"ddd",
"domain driven design",
"distributed systems",
"enterprise framework",
"CQRS",
"ES"
],
"devDependencies": {
"@node-ts/bus-core": "^0.1.10",
"@node-ts/code-standards": "^0.0.10",
"@node-ts/logger-core": "^0.0.13",
"@types/change-case": "^2.3.1",
"@types/node": "^12.0.0",
"inversify": "^5.0.1",
"tslint": "^5.13.0",
"typemoq": "^2.1.0",
"typescript": "^3.3.3333"
},
"peerDependencies": {
"@node-ts/bus-core": "^0.1.10",
"@node-ts/logger-core": "^0.0.9",
"inversify": "^5.0.1"
},
"dependencies": {
"@node-ts/bus-messages": "^0.2.2",
"@node-ts/ddd-types": "^0.1.3",
"change-case": "^3.1.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.14"
}
}