-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
79 lines (79 loc) · 2.1 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
{
"name": "@node-ts/ddd-repo",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"build": "pnpm run build --recursive",
"lint": "pnpm run lint --recursive",
"lint:fix": "pnpm run lint:fix --recursive",
"test": "pnpm run test:unit && pnpm run test:integration --passWithNoTests",
"test:unit": "dotenv -- jest \"packages\\/.*[\\/]?(src\\/.+\\.|/)spec\\.ts$\"",
"test:unit:coverage": "pnpm run test:unit --coverage",
"test:unit:ci": "pnpm run test:unit -w 8",
"test:unit:watch": "pnpm run test:unit --watch",
"test:integration": "pnpm run test:integration:run",
"test:integration:watch": "pnpm run test:integration:run --watch",
"test:integration:run": "dotenv -- jest \"$TEST_SCOPE[\\/]?(src\\/.+\\.|/)integration\\.ts$\"",
"test:integration:run:ci": "pnpm run test:integration:run -w 8"
},
"author": "Andrew den Hertog <[email protected]>",
"license": "MIT",
"devDependencies": {
"@node-ts/code-standards": "^0.0.10",
"@types/jest": "^27.5.1",
"dotenv-cli": "^5.1.0",
"jest": "^28.1.0",
"reflect-metadata": "^0.1.13",
"ts-jest": "^28.0.2",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"jest": {
"collectCoverageFrom": [
"packages/**/*.ts",
"!packages/**/index.ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\](?!node-ts.+).+\\.ts$"
],
"coveragePathIgnorePatterns": [
".*\\.d\\.ts",
"<rootDir>/node_modules/"
],
"testRegex": "(src\\/.+\\.|/)(integration|spec)\\.ts$",
"setupFilesAfterEnv": [
"<rootDir>/test/setup.ts"
],
"modulePathIgnorePatterns": [
"dist/"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"testEnvironment": "node",
"bail": true,
"coverageReporters": [
"html"
],
"globals": {
"ts-jest": {
"babelConfig": true
}
}
},
"keywords": [
"typescript",
"ddd",
"domain driven design",
"distributed systems",
"enterprise framework",
"CQRS",
"ES"
]
}