-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "election-futures-contracts",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"scripts": {
"test": "scripts/test.sh",
"lint:sol": "solium -d .",
"lint:sol:fix": "solium -d . --fix",
"coverage": "scripts/coverage.sh"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@haechi-labs/vvisp-utils": "^1.2.0",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.1",
"eth-gas-reporter": "^0.2.0",
"ethereumjs-util": "^5.1.2",
"ethjs-abi": "^0.2.1",
"ganache-cli": "^6.4.3",
"husky": "^1.2.1",
"lint-staged": "^8.1.0",
"openzeppelin-solidity": "^2.3.0",
"prettier": "^1.15.3",
"solidity-coverage": "git+https://github.com/rotcivegaf/solidity-coverage.git#5875f5b7bc74d447f3312c9c0e9fc7814b482477",
"solium": "^1.2.4",
"truffle": "^5.0.0",
"web3": "^1.0.0-beta.37",
"openzeppelin-test-helpers": "^0.1.2"
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"printWidth": 80
}
}