-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"name": "@node-ts/ddd-types",
"version": "0.2.0",
"description": "A set of types that define core DDD objects",
"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": "pnpm lint:ts",
"lint:ts": "tslint --project tsconfig.json 'src/**/*.ts'",
"lint:fix": "pnpm lint --fix",
"publish:packages": "npm publish --access=public",
"test": "jest \"(src\\/.+\\.|/)spec\\.ts$\"",
"test:coverage": "pnpm run test --coverage",
"test:ci": "pnpm run test -w 8",
"test:watch": "pnpm run test --watch"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"typescript",
"ddd",
"domain driven design",
"distributed systems",
"enterprise framework",
"CQRS",
"ES"
],
"devDependencies": {
"@node-ts/code-standards": "^0.0.10",
"tslint": "^6.1.3",
"typescript": "^4.6.4"
},
"dependencies": {
"@node-ts/bus-messages": "^1.0.4",
"reflect-metadata": "^0.2.0"
}
}