-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.43 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
45
46
47
48
49
50
51
{
"name": "single_multisig",
"version": "2.2.1",
"description": "single transaction multi signature contract",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"ganache": "ganache-cli -p 9545 -m 'candy maple cake sugar pudding cream honey rich smooth crumble sweet treat' > /dev/null &",
"stop": "sudo kill `sudo lsof -t -i:9545`",
"test": "npm run ganache sleep 5 && npm run lint && truffle test && npm run stop",
"coverage": "./node_modules/.bin/solidity-coverage",
"fix": "eslint ./ --fix",
"lint": "eslint ./",
"solium": "solium -d contracts/",
"solium:fix": "solium -d contracts/ --fix"
},
"keywords": [
"solidity",
"truffle",
"multisig"
],
"author": "Nicolas Frega",
"repository": {
"type": "git",
"url": "https://github.com/NFhbar/SingleTxMultisig"
},
"license": "MIT",
"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",
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"chai-bignumber": "^2.0.0",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"ganache-cli": "^6.1.0",
"solidity-coverage": "^0.5.0",
"solium": "^1.1.7"
},
"dependencies": {
"dotenv": "^4.0.0",
"ethereumjs-wallet": "^0.6.0",
"truffle": "^4.1.8",
"truffle-wallet-provider": "0.0.5"
}
}