forked from BitGo/eth-multisig-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 954 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
32
33
34
35
36
37
{
"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": {
"truffle-testrpc": "node ./testrpc/run.js",
"mocha-test": "./node_modules/mocha/bin/mocha mocha-test",
"truffle-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.4",
"ethereumjs-testrpc": "^6.0.3",
"ethereumjs-util": "^5.1.2",
"lodash": "^4.12.0",
"mocha": "^4.0.1",
"q": "^1.5.1",
"should": "^8.3.1",
"truffle": "^4.0.1",
"truffle-config": "^1.0.3",
"truffle-expect": "^0.0.3"
}
}