forked from stryker-mutator/stryker-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.35 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
{
"name": "stryker-parent",
"private": true,
"devDependencies": {
"@types/chai": "~4.2.12",
"@types/chai-as-promised": "~7.1.3",
"@types/glob": "~7.1.0",
"@types/istanbul": "~0.4.29",
"@types/karma": "~5.0.0",
"@types/lodash": "~4.14.110",
"@types/minimatch": "~3.0.3",
"@types/mkdirp": "~1.0.1",
"@types/mocha": "~8.2.0",
"@types/node": "^14.0.1",
"@types/rimraf": "~3.0.0",
"@types/sinon": "^9.0.10",
"@types/sinon-chai": "~3.2.4",
"@types/source-map-support": "^0.5.3",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"chai": "~4.2.0",
"chai-as-promised": "~7.1.1",
"concurrently": "~5.3.0",
"cross-env": "~7.0.0",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-unicorn": "27.0.0",
"execa": "~5.0.0",
"glob": "~7.1.1",
"install-local": "^3.0.1",
"jasmine": "~3.6.2",
"jasmine-core": "~3.6.0",
"json-schema-to-typescript": "~10.1.0",
"lerna": "~3.22.1",
"link-parent-bin": "^2.0.0",
"minimatch": "~3.0.4",
"mocha": "~8.2.0",
"nyc": "~15.1.0",
"prettier": "2.2.1",
"rimraf": "~3.0.0",
"sinon": "~9.2.0",
"sinon-chai": "~3.5.0",
"source-map-support": "^0.5.19",
"typescript": "~4.1.3"
},
"scripts": {
"all": "npm run clean && npm run build && npm run lint && npm run test",
"postinstall": "lerna bootstrap --no-ci && link-parent-bin",
"lint": "eslint . --resolve-plugins-relative-to . --ext .ts,.tsx",
"lint:log": "eslint . --resolve-plugins-relative-to . --ext .ts,.tsx -f compact -o lint.log",
"lint:fix": "eslint . --resolve-plugins-relative-to . --ext .ts,.tsx --fix",
"clean": "rimraf \"packages/*/{.nyc_output,reports,coverage,src-generated,*.tsbuildinfo,.stryker-tmp,dist}\" \"packages/core/schema/stryker-schema.json\"",
"generate": "node tasks/generate-json-schema-to-ts.js && node tasks/generate-mono-schema.js",
"prebuild": "npm run generate",
"build": "tsc -b && lerna run build",
"test": "lerna run test --stream --concurrency 2",
"e2e": "cd e2e && npm ci && npm t && cd ..",
"perf": "cd perf && npm ci && npm t && cd ..",
"start": "tsc -b -w",
"release": "lerna version"
},
"engines": {
"node": ">=10",
"npm": ">=5"
}
}