-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.82 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
{
"name": "mutation-switch-instrumenter",
"version": "0.3.1",
"description": "An example implementation for [mutation switching](https://stryker-mutator.io/blog/2018-10-6/mutation-switching) in JavaScript and TypeScript.",
"main": "index.js",
"scripts": {
"all": "npm run clean && npm run build && npm run lint",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .ts .",
"clean": "rimraf dist instrumented",
"preversion": "npm run all",
"postversion": "git push --tags && git push && npm publish",
"build": "tsc"
},
"bin": {
"mutation-switch-instrumenter": "./bin/mutation-switch-instrumenter"
},
"repository": {
"type": "git",
"url": "https://github.com/nicojs/mutation-switch-instrumenter.git"
},
"keywords": [
"mutation testing",
"poc"
],
"author": "Nico Jansen <[email protected]> (https://stryker-mutator.io)",
"license": "MIT",
"devDependencies": {
"@types/babel__core": "^7.1.6",
"@types/babel__generator": "^7.6.1",
"@types/babel__traverse": "^7.0.9",
"@types/glob": "^7.1.1",
"@types/minimist": "^1.2.0",
"@types/node": "^13.9.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"nyc": "^15.0.1",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.16",
"typescript": "^3.8.3"
},
"dependencies": {
"@babel/core": "^7.8.7",
"@babel/generator": "^7.8.7",
"@babel/parser": "^7.9.4",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@babel/traverse": "^7.8.6",
"angular-html-parser": "^1.4.0",
"chalk": "^4.0.0",
"glob": "^7.1.6",
"minimist": "^1.2.5"
}
}