forked from bitpay/bitcore-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "bitcore-wallet",
"description": "A CLI Mutisig HD Bitcoin Wallet, demo for Bitcore Wallet Service",
"author": "BitPay Inc",
"version": "0.0.1",
"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": {
"bitcore-wallet-client": "git+https://github.com/bitpay/bitcore-wallet-client.git",
"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"
},
"devDependencies": {},
"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"
}
}