-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.95 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.95 KB
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
{
"name": "root",
"private": true,
"version": "0.0.6",
"packageManager": "pnpm@10.30.3",
"description": "A suite of web components for a mutation testing report.",
"workspaces": [
"packages/*"
],
"nx": {},
"scripts": {
"clean": "rimraf --glob packages/*/{dist,dist-tsc,src-generated,*.tsbuildinfo}",
"all": "nx affected --target=lint:prettier,lint,build,test",
"build": "nx run-many --target=build --exclude=root",
"lint:prettier": "prettier --check .",
"lint:fix": "prettier --write . && nx run-many --target=lint --fix",
"build:tsc": "tsc --build",
"start": "nx start elements",
"start:tsc": "tsc --build --watch",
"download-incremental-reports": "bash tasks/download-incremental-reports.sh",
"lerna:version:patch": "lerna version patch",
"lerna:version:minor": "lerna version minor",
"lerna:version:major": "lerna version major",
"lerna:publish": "lerna publish from-git --yes --no-verify-access",
"generate": "nx run report-schema:generate",
"install-browsers": "pnpm --filter mutation-testing-elements exec playwright install chromium firefox"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stryker-mutator/mutation-testing-elements.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/stryker-mutator/mutation-testing-elements/issues"
},
"homepage": "https://github.com/stryker-mutator/mutation-testing-elements#readme",
"devDependencies": {
"@tsconfig/node-lts": "24.0.0",
"@tsconfig/recommended": "1.0.13",
"@tsconfig/strictest": "2.0.8",
"@types/chai": "5.2.3",
"@types/mocha": "10.0.10",
"@types/node": "24.10.15",
"@types/sinon": "21.0.0",
"chai": "6.2.2",
"json-schema-to-typescript": "15.0.4",
"lerna": "9.0.4",
"mocha": "11.7.5",
"nx": "22.5.2",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"rimraf": "6.1.3",
"sinon": "21.0.1",
"typescript": "5.9.3"
}
}