forked from stryker-mutator/stryker-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.62 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": {
"@types/chai-as-promised": "7.1.8",
"@types/chai-jest-snapshot": "1.3.8",
"@types/istanbul": "0.4.34",
"@types/karma": "6.3.8",
"@types/mocha": "10.0.6",
"@types/node": "20.11.19",
"@types/sinon": "17.0.3",
"@types/sinon-chai": "3.2.12",
"@types/source-map-support": "0.5.10",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"c8": "9.1.0",
"chai": "4.4.1",
"chai-as-promised": "7.1.1",
"chai-jest-snapshot": "2.0.0",
"concurrently": "8.2.2",
"cross-env": "7.0.3",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-unicorn": "51.0.1",
"execa": "8.0.1",
"glob": "10.3.10",
"install-local": "3.0.1",
"jasmine": "5.1.0",
"jasmine-core": "5.1.2",
"json-schema-to-typescript": "13.1.2",
"lerna": "8.1.2",
"minimatch": "9.0.3",
"mocha": "10.3.0",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"sinon": "17.0.1",
"sinon-chai": "3.7.0",
"source-map-support": "0.5.21",
"ts-node": "10.9.2",
"typescript": "5.3.3"
},
"scripts": {
"all": "npm run clean && npm run build && npm run lint && npm run test",
"postinstall": "playwright install chromium",
"lint": "eslint . --resolve-plugins-relative-to . --ext .ts,.js",
"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",
"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"
}
}