forked from stryker-mutator/stryker-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.09 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
{
"name": "stryker-parent",
"private": true,
"devDependencies": {
"@types/chai": "4.1.7",
"@types/chai-as-promised": "7.1.1",
"@types/execa": "^2.0.0",
"@types/glob": "^7.1.0",
"@types/istanbul": "^0.4.29",
"@types/karma": "^3.0.0",
"@types/lodash": "^4.14.110",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^2.2.44",
"@types/node": "^10.11.5",
"@types/rimraf": "2.0.2",
"@types/sinon": "5.0.5",
"@types/sinon-chai": "3.2.2",
"acorn": "^6.0.4",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"concurrently": "^4.0.1",
"cross-env": "^5.2.0",
"execa": "^2.0.3",
"glob": "^7.1.1",
"if-node-version": "^1.1.1",
"install-local": "~1.0.0",
"jasmine": "^3.1.0",
"jasmine-core": "^3.1.0",
"lerna": "^3.10.7",
"link-parent-bin": "~1.0.0",
"mocha": "^6.1.2",
"nyc": "^14.0.0",
"rimraf": "^3.0.0",
"rxjs": "^6.4.0",
"sinon": "^7.2.0",
"sinon-chai": "^3.2.0",
"source-map-support": "^0.5.6",
"tslint": "~5.18.0",
"tslint-consistent-codestyle": "~1.15.1",
"typescript": "~3.5.3"
},
"prettier": {
"singleQuote": true
},
"scripts": {
"all": "npm run clean && npm run lint && npm run build && npm run test && npm run e2e",
"postinstall": "lerna bootstrap --no-ci && link-parent-bin",
"lint-info": "tslint --out tslint.log --project tsconfig.lint.json",
"lint-fix": "tslint --fix --project tsconfig.lint.json",
"clean": "rimraf \"packages/api/*+(.d.ts|.js|.map)\" \"packages/*/+(test|src)/**/*+(.d.ts|.js|.map)\" \"packages/*/{.nyc_output,reports,coverage,*.tsbuildinfo}\"",
"lint": "tslint -p tsconfig.lint.json",
"build": "tsc -b && lerna run build",
"test": "npm run mocha",
"mocha": "lerna run test --stream --concurrency 4",
"e2e": "cd e2e && npm ci && npm t && cd ..",
"perf": "cd perf && npm ci && npm t && cd ..",
"start": "tsc -b -w",
"lerna-publish": "lerna version --conventional-commits --yes --git-remote gh-publish --force-publish && lerna publish from-git --yes"
},
"engines": {
"node": ">=8",
"npm": ">=5"
}
}