forked from rocket-pool/rocketpool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.35 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
{
"name": "rocketpool",
"version": "2.0.0",
"description": "A next generation decentralised Ethereum proof of stake pool",
"repository": "[email protected]:rocket-pool/rocketpool.git",
"author": "David Rugendyke <[email protected]>",
"scripts": {
"console": "truffle console",
"compile": "truffle compile",
"migrate": "truffle migrate",
"test": "scripts/test.sh test/rocket-pool-tests.js",
"test-cov": "./node_modules/.bin/solidity-coverage",
"format": "prettier --write '**/*.js'"
},
"devDependencies": {
"@babel/runtime": "^7.9.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"ganache-cli": "^6.12.1",
"prettier": "^1.10.2",
"solidity-coverage": "^0.5.11",
"truffle": "^5.1.51",
"truffle-contract": "^3.*",
"typedarray-to-buffer": "^3.1.5",
"web3": "^1.2.8"
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"trailingComma": "es5"
},
"dependencies": {
"@chainsafe/lodestar-types": "^0.5.0",
"@chainsafe/ssz": "^0.6.1",
"bn.js": "^4.11.8",
"eth-crypto": "^1.5.2",
"ethereumjs-util": "^6.2.0",
"lerna": "^2.10.1",
"pako": "^1.0.6",
"rlp": "^2.0.0",
"underscore": "^1.9.0"
}
}