forked from marcj/estdlib.ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.49 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
{
"name": "root",
"repository": "https://github.com/marcj/estdlib.ts",
"author": "Marc J. Schmidt <[email protected]>",
"license": "MIT",
"scripts": {
"test": "rm -rf packages/*/dist && lerna run tsc && jest --coverage",
"bootstrap": "lerna bootstrap --hoist --no-ci",
"tsc": "lerna run tsc",
"docs": "lerna run tsc && typedoc",
"tsc-watch": "lerna run --parallel tsc-watch",
"publish": "lerna run tsc && lerna publish",
"docker-image": "docker build -t estdlib/website .",
"publish-website": "heroku container:push web && heroku container:release web"
},
"peerDependencies": {
"reflect-metadata": "^0.1.12"
},
"devDependencies": {
"@types/jest": "^23.3.9",
"@types/node": "^11.9.5",
"jest": "^23.6.0",
"jest-extended": "^0.11.0",
"ts-jest": "^23.10.4",
"tslint": "5.11.0",
"typescript": "^3.3.3333",
"typedoc": "^0.14.2",
"typedoc-plugin-lerna-packages": "^0.1.3"
},
"engines": {
"node": ">= 8.9.0"
},
"jest": {
"testURL": "http://localhost/",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"collectCoverageFrom": [
"**/*.{ts}",
"!**/node_modules/**",
"!**/dist/**/*",
"!**/*.d.ts",
"!website/**/*",
"!index.ts"
],
"testPathIgnorePatterns": [
"packages/dev"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/*.spec.ts"
],
"setupTestFrameworkScriptFile": "jest-extended"
}
}