-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 1.79 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
{
"name": "@node-ts/logger",
"version": "0.0.1",
"repository": "github:node-ts/logger.git",
"author": "Andrew den Hertog <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"clean": "lerna run clean && rm -r node_modules",
"lint": "lerna run lint",
"test": "yarn run test:unit && yarn run test:integration",
"test:integration": "jest \"(src\\/.+\\.|/)integration\\.ts$\"",
"test:integration:watch": "yarn run test:integration --watch",
"test:unit": "jest \"(src\\/.+\\.|/)spec\\.ts$\"",
"test:unit:watch": "yarn run test:unit --watch"
},
"keywords": [
"typescript",
"logger",
"logging",
"node"
],
"dependencies": {
"@node-ts/code-standards": "^0.0.10",
"@types/jest": "^24.0.0",
"jest": "^24.1.0",
"lerna": "^3.11.0",
"reflect-metadata": "^0.1.13",
"ts-jest": "^24.0.1",
"tslib": "^1.9.3",
"typescript": "^3.3.3"
},
"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\\/.+\\.|/)(spec|integration)\\.ts$",
"setupFilesAfterEnv": [
"<rootDir>/test/setup.ts"
],
"modulePathIgnorePatterns": [
"dist/"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"testEnvironment": "node",
"bail": true,
"coverageReporters": [
"html"
],
"globals": {
"ts-jest": {
"babelConfig": true
}
}
},
"workspaces": [
"packages/*"
]
}