forked from deepkit/deepkit-framework
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.59 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
{
"name": "@marcj/marshal",
"repository": "https://github.com/marcj/marshal",
"author": "Marc J. Schmidt <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest --coverage",
"bootstrap": "lerna bootstrap --hoist --no-ci",
"tsc": "lerna run tsc",
"tsc-watch": "lerna run --parallel tsc-watch",
"docs": "rm -rf docs && typedoc",
"docker-image": "docker build -t marshal/website .",
"publish": "lerna run tsc && lerna publish",
"publish-website": "heroku container:push web && heroku container:release web"
},
"peerDependencies": {
"reflect-metadata": "^0.1.12"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.11.6",
"coveralls": "^3.0.3",
"jest": "^24.5.0",
"jest-extended": "^0.11.1",
"lerna": "^3.13.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3",
"typescript": "^3.5.2",
"typedoc": "^0.16.8",
"typedoc-plugin-lerna-packages": "^0.3.0"
},
"engines": {
"node": ">= 8.9.0"
},
"jest": {
"testURL": "http://localhost/",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"collectCoverageFrom": [
"**/*.ts",
"!**/node_modules/**",
"!**/dist/**/*",
"!**/tests/**/*",
"!packages/benchmark/**/*",
"!packages/core/src/mapper-old.ts",
"!packages/core/src/validation-old.ts",
"!index.ts"
],
"testPathIgnorePatterns": [
"packages/benchmark"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/*.spec.ts"
]
}
}