-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 802 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 802 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
26
27
28
29
30
{
"name": "delphi",
"version": "0.0.1",
"description": "A decentralized dispute arbitration system",
"scripts": {
"install": "truffle install",
"coverage": "solidity-coverage",
"compile": "truffle compile",
"test": "npm run lint ./ && truffle test",
"fix": "eslint --fix",
"lint": "eslint",
"stop": "sudo kill `sudo lsof -t -i:9545`"
},
"license": "MIT",
"dependencies": {
"ethjs-provider-http": "0.1.6",
"ethjs-rpc": "0.1.9",
"bignumber.js": "4.0.4",
"ethereumjs-abi": "0.6.5",
"truffle": "4.1.7",
"truffle-hdwallet-provider": "0.0.3",
"web3": "1.0.0-beta.34"
},
"devDependencies": {
"eslint": "4.4.1",
"eslint-config-airbnb-base": "11.3.1",
"eslint-plugin-import": "2.7.0",
"solidity-coverage": "^0.5.0"
}
}