forked from HAECHI-LABS/vvisp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.79 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
{
"name": "haechi-cli",
"version": "1.0.0",
"description": "script for upgrading smart contracts",
"directories": {
"test": "test"
},
"bin": {
"haechi": "bin/haechi-cli.js"
},
"scripts": {
"precommit": "lint-staged",
"test": "mocha",
"testAll": "mocha $(find ./test -name '*.test.js') --recursive",
"ci":"./test/test.sh"
},
"author": "Jay Choy <jay@haechi.io>",
"license": "MIT",
"dependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.7.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",
"bip39": "^2.5.0",
"chalk": "^2.4.1",
"commander": "^2.17.1",
"dotenv": "^5.0.1",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-wallet": "^0.6.2",
"find-up": "^3.0.0",
"fs-extra": "^7.0.0",
"lodash": "^4.17.10",
"mustache": "^2.3.2",
"node-find-folder": "^0.1.32",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-regenerator": "^0.6.0",
"semver": "^5.5.1",
"solc": "^0.4.24",
"solidity-parser-antlr": "^0.3.2",
"tsort": "0.0.1",
"web3": "^1.0.0-beta.35"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eth-gas-reporter": "^0.1.7",
"ethereumjs-util": "^5.1.2",
"ethjs-abi": "^0.2.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"mitm": "^1.4.0",
"mocha": "^5.2.0",
"prettier": "1.14.2"
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"printWidth": 80
}
}