forked from BitGo/eth-multisig-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.92 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
{
"name": "eth-multisig-v2",
"version": "1.0.0",
"description": "Ethereum multi signature wallet contract supporting single-tx execute and confirm with multiple owners",
"author": "Ben Chan",
"license": "ISC",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"testrpc": "./node_modules/ethereumjs-testrpc/bin/testrpc --account='0xc8209c2200f920b11a460733c91687565c712b40c6f0350e9ad4138bf3193e47,200000000000000000000000000' --account='0x915334f048736c64127e91a1dc35dad86c91e59081cdc12cd060103050e2f3b1,200000000000000000000000000' --account='0x80bf357dd53e61db0e68acbb270e16fd42645903b51329c856cf3cb36f180a3e,200000000000000000000000000' --account='0xdf231d240ce40f844d56cea3a7663b4be8c373fdd6a4fe69cacaaa68c698c590,200000000000000000000000000' --account='0x71ce3f6c92d687ebbdc9b632744178707f39228ae1001a2de66f8b98de36ca07,200000000000000000000000000' --account='0xca4e687f97b8c64705cddb53c92454994c83abcb4218c7c62955bac292c3bc9e,200000000000000000000000000' --account='0x0755057fc0113fdc174e919622f237d30044a4c1c47f3663608b9ee9e8a1a58a,200000000000000000000000000' --account='0x1a4002a3e2d0c18c058265600838cff40ba24303f6e60cd1c74821e8251f84d5,200000000000000000000000000' --account='0x6d276292b8f5047b54db5b2179b5f7050636feaccf6c97a2978200d41d9d3374,200000000000000000000000000' --account='0xace7201611ba195f85fb2e25b53e0f9869e57e2267d1c5eef63144c75dee5142,200000000000000000000000000'",
"test": "./node_modules/truffle/build/cli.bundled.js test"
},
"keywords": [
"multi-sig",
"wallet",
"ethereum"
],
"dependencies": {
"bip39": "2.3.0",
"bluebird": "^3.3.5",
"bn": "^1.0.1",
"bn.js": "^4.11.3",
"ethereumjs-abi": "^0.6.0",
"ethereumjs-testrpc": "^2.0.7",
"ethereumjs-util": "^4.5.0",
"lodash": "^4.12.0",
"q": "^1.4.1",
"should": "^8.3.1",
"truffle-expect": "^0.0.3",
"truffle-config": "^1.0.0",
"truffle": "^3.3.2",
"web3": "^0.16.0"
}
}