-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.45 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
{
"name": "general-state-channels",
"version": "1.0.0",
"description": "A set of ethereum contracts to abstract the management of authority contracts that may fit many use cases",
"main": "truffle.js",
"scripts": {
"coverage": "./node_modules/.bin/solidity-coverage",
"ganache": "ganache-cli -p 9545 -m 'candy maple cake sugar pudding cream honey rich smooth crumble sweet treat' > /dev/null &",
"test": "echo \"Error: no test specified\" && exit 1",
"stop": "sudo kill `sudo lsof -t -i:9545`",
"solium": "solium -d contracts/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nginnever/general-state-channels.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nginnever/general-state-channels/issues"
},
"homepage": "https://github.com/nginnever/general-state-channels#readme",
"devDependencies": {
"babel-polyfill": "^6.26.0",
"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",
"bignumber.js": "^4.0.3",
"coveralls": "^3.0.0",
"ganache-cli": "^6.1.0",
"secp256k1": "^3.5.0",
"solidity-coverage": "^0.5.0",
"solium": "^1.1.7",
"typescript": "^2.8.3"
},
"dependencies": {
"buffer": "^5.0.7",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-util": "^5.1.5",
"truffle-hdwallet-provider-privkey": "^0.2.0",
"web3": "^1.0.0-beta.34"
}
}