-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.32 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": "ddd",
"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": "^0.1.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.23.0",
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"chai-bignumber": "^2.0.0",
"coveralls": "^3.0.1",
"dotenv": "^5.0.1",
"eth-gas-reporter": "^0.1.7",
"ethereumjs-util": "^5.1.2",
"ethjs-abi": "^0.2.1",
"ganache-cli": "6.1.0",
"husky": "^1.2.1",
"lint-staged": "^8.1.0",
"openzeppelin-solidity": "^2.0.0",
"prettier": "^1.15.3",
"solc": "^0.4.24",
"solidity-coverage": "^0.5.0",
"solium": "^1.1.6",
"truffle": "^4.1.12",
"truffle-hdwallet-provider": "0.0.5",
"web3": "^1.0.0-beta.35"
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"printWidth": 80
}
}