-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
33 lines (33 loc) · 992 Bytes
/
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
{
"name": "robo-coasters-example",
"version": "1.0.0",
"type": "module",
"description": "An example for Mutation Testing",
"repository": {
"type": "git",
"url": "https://github.com/stryker-mutator/robo-coasters-example"
},
"main": "index.js",
"scripts": {
"all": "npm run lint && npm test && npm run test:mutation",
"lint": "npm run lint:ts && npm run lint:format",
"lint:ts": "tsc -b jsconfig.json",
"lint:format": "prettier --write --check --ignore-path .gitignore .",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:mutation": "stryker run",
"start": "lite-server"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@stryker-mutator/jest-runner": "^8.5.0",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lite-server": "^2.6.1",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"whatwg-fetch": "^3.6.20"
}
}