-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.45 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
{
"name": "mutode",
"version": "1.4.2",
"description": "Mutation testing for Node.js and JavaScript",
"main": "src/mutode.js",
"engines": {
"node": ">=8.0.0"
},
"bin": {
"mutode": "./bin/mutode"
},
"scripts": {
"jsdoc": "jsdoc -c .jsdoc.json",
"test": "standard src && nyc ava test/* && nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"mutation",
"testing",
"mutant",
"mutants",
"test",
"tests",
"framework",
"tool"
],
"author": "Diego Rodríguez Baquero <[email protected]> (https://diegorbaquero.com)",
"license": "MIT",
"dependencies": {
"async": "3.1.0",
"babylon": "^6.18.0",
"babylon-walk": "^1.0.2",
"chalk": "3.0.0",
"debug": "4.1.1",
"del": "5.1.0",
"diff": "4.0.2",
"escape-string-regexp": "2.0.0",
"globby": "10.0.1",
"mkdirp": "^0.5.1",
"pretty-ms": "5.1.0",
"recursive-copy": "2.0.10",
"strip-ansi": "6.0.0",
"terminate": "2.1.2",
"yargs": "15.0.2"
},
"devDependencies": {
"ava": "0.25.0",
"coveralls": "3.0.9",
"minami": "^1.2.3",
"nyc": "14.1.1",
"standard": "14.3.1"
},
"nyc": {
"include": [
"src"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/TheSoftwareDesignLab/mutode.git"
},
"bugs": {
"url": "https://github.com/TheSoftwareDesignLab/mutode/issues"
},
"homepage": "https://github.com/TheSoftwareDesignLab/mutode"
}