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
25 lines (25 loc) · 700 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 700 Bytes
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
{
"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.js",
"format": "prettier --write '**/*.js'"
},
"devDependencies": {
"ganache-cli": "^6.0.3",
"prettier": "^1.10.2",
"truffle": "4.0.6",
"web3-utils": "^1.0.0-beta.28"
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"trailingComma": "es5"
}
}