forked from rocket-pool/rocketpool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.01 KB
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
{
"name": "rocketpool",
"version": "1.0.0",
"description": "A next generation decentralised Ethereum proof of stake pool",
"repository": "git@github.com:darcius/rocketpool.git",
"author": "David Rugendyke <david@mail.rocketpool.net>",
"scripts": {
"console": "truffle console",
"compile": "truffle compile",
"migrate": "truffle migrate",
"test": "scripts/test.sh test/rocketPool-tests.js",
"format": "prettier --write '**/*.js'"
},
"devDependencies": {
"ganache-cli": "^6.0.3",
"prettier": "^1.10.2",
"truffle": "4.1.3",
"web3-utils": "^1.0.0-beta.28",
"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",
"truffle-contract": "^3.0.4",
"web3": "^1.0.0-beta.33"
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"trailingComma": "es5"
},
"dependencies": {
"scrypt": "^6.0.3"
}
}