-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
35 lines (35 loc) · 1.06 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
{
"name": "plcr-revival",
"version": "2.0.0",
"description": "Voting smart contract system for use with ERC20 tokens",
"scripts": {
"install": "truffle install",
"compile": "truffle compile",
"coverage": "./node_modules/.bin/solidity-coverage",
"test": "npm run lint ./ && truffle test",
"fix": "eslint --fix",
"lint": "eslint",
"publish": "truffle publish"
},
"author": "Yorke Rhodes <yorke.rhodesiv@consensys.net>, Aspyn Palatnick <aspyn.palatnick@consensys.net>, Cem Ozer <cem.ozer@consensys.net>",
"license": "ISC",
"dependencies": {
"bignumber.js": "5.0.0",
"bip39": "2.4.0",
"ethereumjs-abi": "0.6.4",
"ethereumjs-testrpc": "4.1.1",
"ethereumjs-wallet": "0.6.0",
"ethjs-provider-http": "0.1.6",
"ethjs-query": "0.2.6",
"ethjs-rpc": "0.1.5",
"ethjs-util": "0.1.4",
"truffle": "4.1.14",
"truffle-hdwallet-provider": "0.0.3"
},
"devDependencies": {
"eslint": "4.4.1",
"eslint-config-airbnb-base": "11.3.1",
"eslint-plugin-import": "2.7.0",
"solidity-coverage": "0.4.15"
}
}