-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "contract-coverager",
"version": "0.3.1",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/**/*.js test/**/*.spec.js",
"lint:fix": "eslint src/**/*.js test/**/*.spec.js --fix",
"test": "mocha --colors ./test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chaintope/contract-coverager.git"
},
"keywords": [
"ethereum",
"solidity",
"vyper",
"coverage"
],
"author": "Yukishige Nakajo <[email protected]>",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/chaintope/contract-coverager/issues"
},
"homepage": "https://github.com/chaintope/contract-coverager#readme",
"eslintConfig": {
"parser": "babel-eslint",
"extends": "standard",
"plugins": [
"mocha",
"chai-friendly"
],
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"mocha": true
},
"rules": {
"space-before-function-paren": [
"error",
"never"
],
"no-underscore-dangle": 0,
"mocha/no-exclusive-tests": "error",
"no-unused-expressions": 0,
"chai-friendly/no-unused-expressions": 2
}
},
"dependencies": {
"cli-table": "^0.3.1",
"colors": "^1.3.3",
"keccak256": "^1.0.0",
"truffle-code-utils": "^1.2.2",
"web3-provider-engine": "^15.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-mocha": "^5.1.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^6.1.4",
"sinon": "^7.3.2"
}
}