-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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": "perturb",
"version": "0.3.1",
"description": "A mutation testing framework for JavaScript libraries",
"main": "lib/index.js",
"bin": {
"perturb": "./lib/cli.js"
},
"repository": "git@github.com:bttmly/perturb.git",
"dependencies": {
"chalk": "^2.3.2",
"change-case": "^2.2.0",
"commander": "^2.19.0",
"debug": "^2.2.0",
"diff": "^3.5.0",
"escodegen": "^1.8.0",
"eslint-utils": "^1.4.1",
"esprima": "^4.0.0",
"estraverse": "^4.2.0",
"fs-extra": "7.0.1",
"glob": "7.1.3",
"lodash": "^4.17.13",
"ramda": "^0.18.0",
"typescript": "^3.7.0-beta"
},
"devDependencies": {
"@types/bluebird": "^3.5.20",
"@types/change-case": "^2.3.1",
"@types/debug": "^0.0.30",
"@types/diff": "^3.2.2",
"@types/escodegen": "^0.0.6",
"@types/esprima": "^4.0.1",
"@types/estraverse": "^0.0.6",
"@types/estree": "^0.0.38",
"@types/fs-extra": "^5.0.1",
"@types/glob": "^5.0.35",
"@types/mocha": "^5.0.0",
"@types/node": "^12.7.12",
"@types/ramda": "^0.25.21",
"babel-eslint": "^8.2.2",
"eslint": "^5.16.0",
"expect": "^1.20.2",
"mocha": "^6.0.2",
"prettier": "^1.11.1",
"tslint": "^5.9.1"
},
"scripts": {
"example": "make example",
"example-i": "make example-i",
"test-example": "make test-example",
"dogfood": "make dogfood",
"dogfood-i": "make dogfood-i",
"test": "make test"
},
"author": "Nick Bottomley (github.com/bttmly)",
"license": "MIT"
}