-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
31 lines (31 loc) · 893 Bytes
/
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
{
"name": "dead-mans-switch",
"version": "0.0.1",
"description": "A dead man's switch for ERC 20 tokens",
"scripts": {
"install": "truffle install tokens",
"compile": "truffle compile",
"deploy-rinkeby": "truffle migrate --network rinkeby",
"test": "npm run lint && truffle test",
"fix": "eslint --fix",
"lint:sol": "solhint contracts/*.sol",
"lint:js": "eslint ./*",
"lint": "npm run lint:js && npm run lint:sol"
},
"author": "Mike Goldin <[email protected]>",
"license": "ISC",
"dependencies": {
"bignumber.js": "4.0.4",
"bip39": "2.4.0",
"ethjs-provider-http": "0.1.6",
"ethjs-rpc": "0.1.7",
"truffle": "4.0.6",
"truffle-hdwallet-provider": "0.0.3"
},
"devDependencies": {
"eslint": "4.4.1",
"eslint-config-airbnb-base": "11.3.1",
"eslint-plugin-import": "2.7.0",
"solhint": "1.1.10"
}
}