-
Notifications
You must be signed in to change notification settings - Fork 250
/
package.json
74 lines (74 loc) · 2.55 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
69
70
71
72
73
74
{
"name": "stryker-parent",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@eslint/js": "9.13.0",
"@types/chai-as-promised": "8.0.1",
"@types/chai-jest-snapshot": "1.3.8",
"@types/eslint__js": "8.42.3",
"@types/istanbul": "0.4.34",
"@types/karma": "6.3.9",
"@types/mocha": "10.0.10",
"@types/node": "20.17.9",
"@types/sinon": "17.0.3",
"@types/sinon-chai": "4.0.0",
"@types/source-map-support": "0.5.10",
"c8": "10.1.2",
"chai": "5.1.2",
"chai-as-promised": "8.0.1",
"chai-jest-snapshot": "2.0.0",
"concurrently": "9.1.0",
"cross-env": "7.0.3",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-chai-friendly": "1.0.1",
"eslint-plugin-prettier": "5.2.1",
"execa": "9.4.1",
"glob": "10.4.5",
"install-local": "3.0.1",
"jasmine": "5.4.0",
"jasmine-core": "5.4.0",
"json-schema-to-typescript": "15.0.3",
"lerna": "8.1.9",
"minimatch": "9.0.5",
"mocha": "11.0.1",
"prettier": "3.4.1",
"rimraf": "5.0.10",
"sinon": "19.0.2",
"sinon-chai": "4.0.0",
"source-map-support": "0.5.21",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"typescript-eslint": "8.11.0"
},
"scripts": {
"all": "npm run clean && npm run build && npm run lint && npm run test",
"postinstall": "playwright install chromium",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"clean": "rimraf --glob \"packages/*/{.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",
"build:no-check": "npm run build -- --noCheck",
"test": "lerna run test --stream --concurrency 2",
"download-incremental-reports": "./tasks/download-incremental-reports.sh",
"test:mutation:incremental": "lerna run stryker --stream --concurrency 1 -- --incremental",
"e2e": "npm run e2e:install && npm run e2e:lint && npm run e2e:run",
"e2e:install": "cd e2e && npm ci --force",
"e2e:lint": "cd e2e && npm run lint",
"e2e:run": "cd e2e && npm t",
"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",
"version": "node tasks/bump-peer-deps.js"
},
"engines": {
"node": ">=18.0.0"
}
}