-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
51 lines (51 loc) · 1.08 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
{
"name": "root",
"repository": "https://gitlab.com/deepkit",
"author": "Marc J. Schmidt <[email protected]>",
"license": "closed",
"scripts": {
"test": "jest --coverage",
"bootstrap": "lerna bootstrap --nohoist \\* --no-ci"
},
"engineStrict": true,
"engines": {
"node": ">=12.2.0"
},
"dependencies": {
"ws": "^6.1.2",
"typescript": "^3.3.4000",
"reflect-metadata": "^0.1.12"
},
"devDependencies": {
"@types/jest": "^23.3.9",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"lerna": "^3.4.3",
"ts-jest": "22.0.4",
"jest-extended": "^0.11.0",
"typescript": "^3.3.3333",
"ts-node": "^7.0.1",
"tslint": "^5.9.1"
},
"jest": {
"testURL": "http://localhost/",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"collectCoverageFrom": [
"**/*.{ts}",
"!**/node_modules/**",
"!**/lib/**/*",
"!**/*.d.ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/*.spec.ts"
],
"setupTestFrameworkScriptFile": "jest-extended"
}
}