forked from stryker-mutator/stryker-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.31 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
{
"name": "stryker-parent",
"private": true,
"type": "module",
"devDependencies": {
"@types/chai": "4.3.1",
"@types/chai-as-promised": "7.1.5",
"@types/glob": "7.2.0",
"@types/istanbul": "0.4.30",
"@types/karma": "6.3.3",
"@types/lodash": "4.14.182",
"@types/minimatch": "3.0.5",
"@types/mkdirp": "1.0.2",
"@types/mocha": "9.1.1",
"@types/node": "17.0.31",
"@types/rimraf": "3.0.2",
"@types/sinon": "10.0.11",
"@types/sinon-chai": "3.2.8",
"@types/source-map-support": "0.5.4",
"@typescript-eslint/eslint-plugin": "5.26.0",
"@typescript-eslint/parser": "5.26.0",
"c8": "7.11.3",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"concurrently": "7.2.1",
"cross-env": "7.0.3",
"eslint": "8.16.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-unicorn": "42.0.0",
"execa": "6.1.0",
"glob": "8.0.3",
"install-local": "3.0.1",
"jasmine": "4.1.0",
"jasmine-core": "4.1.1",
"json-schema-to-typescript": "10.1.5",
"lerna": "5.0.0",
"minimatch": "5.1.0",
"mocha": "10.0.0",
"prettier": "2.6.2",
"rimraf": "3.0.2",
"sinon": "14.0.0",
"sinon-chai": "3.7.0",
"source-map-support": "0.5.21",
"typescript": "4.7.2"
},
"scripts": {
"all": "npm run clean && npm run build && npm run lint && npm run test",
"postinstall": "lerna bootstrap --no-ci -- --legacy-peer-deps",
"lint": "eslint . --resolve-plugins-relative-to . --ext .ts,.js",
"lint:fix": "npm run lint -- --fix",
"clean": "rimraf \"packages/*/{package-lock.json,.nyc_output,reports,coverage,src-generated,*.tsbuildinfo,.stryker-tmp,dist,testResources/tmp}\" \"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 run lint && npm t && cd ..",
"e2e:update-snapshots": "CHAI_JEST_SNAPSHOT_UPDATE_ALL=true npm run e2e",
"perf": "cd perf && npm ci && npm run lint && npm t && cd ..",
"start": "tsc -b -w",
"release": "lerna version"
},
"engines": {
"node": ">=14.18.0"
}
}