-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 986 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
34
35
36
37
38
39
40
{
"name": "eth-mutants",
"version": "0.1.1",
"description": "A mutation testing tool for Solidity contracts",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier --single-quote --no-semi --write **/*.js"
},
"bin": {
"eth-mutants": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/federicobond/eth-mutants.git"
},
"keywords": [
"ethereum",
"mutation",
"testing",
"solidity"
],
"author": "Federico Bond <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/federicobond/eth-mutants/issues"
},
"homepage": "https://github.com/federicobond/eth-mutants#readme",
"dependencies": {
"chalk": "^2.4.1",
"diff": "^3.5.0",
"recursive-copy": "^2.0.9",
"sha1": "^1.1.1",
"solidity-parser-antlr": "^0.3.1",
"yargs": "^12.0.1"
},
"devDependencies": {
"prettier": "1.14.2"
}
}