This repository has been archived by the owner on Apr 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
73 lines (73 loc) · 2.22 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
{
"name": "bitcore-wallet",
"description": "A CLI Mutisig HD Bitcoin Wallet, demo for Bitcore Wallet Service",
"author": "BitPay Inc",
"version": "1.2.0",
"keywords": [
"bitcoin",
"copay",
"multisig",
"wallet"
],
"repository": {
"url": "git@github.com:bitpay/bitcore-wallet.git",
"type": "git"
},
"bugs": {},
"dependencies": {
"async": "^2.6.1",
"bitcore-wallet-client": "^6.8.1",
"commander": "^2.6.0",
"lodash": "^4.17.11",
"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": {
"start": "node app.js",
"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": "ivan@gmail.com"
},
{
"name": "Matias Alejo Garcia",
"email": "ematiu@gmail.com"
}
],
"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"
}