forked from bitpay/bitcore
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.34 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "bitcore-wallet",
"description": "A CLI Mutisig HD Bitcoin Wallet, demo for Bitcore Wallet Service",
"author": "BitPay Inc",
"version": "10.0.0",
"keywords": [
"bitcoin",
"copay",
"multisig",
"wallet"
],
"repository": {
"url": "[email protected]:bitpay/bitcore-wallet.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/bitpay/bitcore-wallet/issues"
},
"dependencies": {
"async": "^2.5.0",
"bitcore-lib": "^10.0.0",
"bitcore-wallet-client": "^10.0.0",
"commander": "^2.6.0",
"lodash": "^3.3.1",
"moment": "^2.9.0",
"npmlog": "^1.2.0",
"qr-image": "^3.1.0",
"read": "^1.0.5",
"sjcl": "^1.0.2"
},
"devDependencies": {
"chai": "^3.3.0",
"sinon": "^1.17.1"
},
"scripts": {
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter spec test",
"test": "./node_modules/.bin/mocha",
"coveralls": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"contributors": [
{
"name": "Ivan Socolsky",
"email": "[email protected]"
},
{
"name": "Matias Alejo Garcia",
"email": "[email protected]"
}
],
"bin": {
"wallet": "./bin/wallet",
"wallet-address": "./bin/wallet-address",
"wallet-addresses": "./bin/wallet-addresses",
"wallet-airsign": "./bin/wallet-airsign",
"wallet-balance": "./bin/wallet-balance",
"wallet-broadcast": "./bin/wallet-broadcast",
"wallet-confirm": "./bin/wallet-confirm",
"wallet-create": "./bin/wallet-create",
"wallet-export": "./bin/wallet-export",
"wallet-genkey": "./bin/wallet-genkey",
"wallet-history": "./bin/wallet-history",
"wallet-import": "./bin/wallet-import",
"wallet-join": "./bin/wallet-join",
"wallet-recreate": "./bin/wallet-recreate",
"wallet-reject": "./bin/wallet-reject",
"wallet-rm": "./bin/wallet-rm",
"wallet-send": "./bin/wallet-send",
"wallet-sign": "./bin/wallet-sign",
"wallet-status": "./bin/wallet-status",
"wallet-txproposals": "./bin/wallet-txproposals",
"wallet-mnemonic": "./bin/wallet-mnemonic",
"wallet-derive": "./bin/wallet-derive"
},
"licence": "MIT",
"gitHead": "012cc0216a9bc6b195035855bd17149bad41acd1"
}