-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
57 lines (57 loc) · 1.91 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
{
"name": "root",
"private": true,
"version": "0.0.6",
"packageManager": "[email protected]",
"description": "A suite of web components for a mutation testing report.",
"workspaces": [
"packages/*",
"libs/*"
],
"nx": {},
"scripts": {
"clean": "rimraf --glob packages/*/{dist,dist-tsc,src-generated}",
"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"
},
"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": {
"@stryker-mutator/core": "8.5.0",
"@stryker-mutator/mocha-runner": "8.5.0",
"@stryker-mutator/typescript-checker": "8.5.0",
"@stryker-mutator/vitest-runner": "8.5.0",
"@types/chai": "5.0.1",
"@types/mocha": "10.0.9",
"@types/node": "22.9.0",
"@types/sinon": "17.0.3",
"chai": "5.1.2",
"json-schema-to-typescript": "15.0.3",
"lerna": "8.1.9",
"mocha": "10.8.2",
"nx": "20.0.12",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"rimraf": "6.0.1",
"sinon": "19.0.2",
"typescript": "5.6.3"
}
}