forked from bitpay/bitcore-wallet-client
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 1.94 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
{
"name": "bitcore-wallet-client-dash",
"description": "Client for bitcore-wallet-service-dash",
"author": "BitPay Inc",
"version": "2.11.2",
"license": "MIT",
"keywords": [
"dash",
"copay-dash",
"multisig",
"wallet",
"client",
"bitcore-dash",
"BWS",
"BWC"
],
"engine": "node >= 0.12.0",
"main": "index.js",
"repository": {
"url": "[email protected]:dashpay/bitcore-wallet-client-dash.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/dashpay/bitcore-wallet-client-dash/issues"
},
"dependencies": {
"async": "^0.9.0",
"bip38": "^1.3.0",
"bitcore-lib-dash": "^0.13.19",
"bitcore-mnemonic-dash": "^1.0.3",
"bitcore-payment-protocol-dash": "^1.1.1",
"browser-request": "^0.3.3",
"json-stable-stringify": "^1.0.0",
"lodash": "^3.3.1",
"preconditions": "^1.0.8",
"request": "^2.53.0",
"sjcl": "^1.0.2"
},
"devDependencies": {
"bitcore-wallet-service-dash": "1.9.1",
"browserify": "^9.0.3",
"chai": "^1.9.1",
"coveralls": "^2.11.2",
"grunt": "~0.4.0",
"grunt-jsdox": "^0.1.7",
"istanbul": "*",
"mocha": "^1.18.2",
"sinon": "^1.10.3",
"supertest": "*",
"tingodb": "^0.3.4",
"uglify": "^0.1.1",
"uuid": "^2.0.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",
"docs": "./node_modules/.bin/jsdox lib/* lib/common lib/errors -o docs && cat README.header.md docs/*.md LICENSE > README.md"
},
"contributors": [{
"name": "Ivan Socolsky",
"email": "[email protected]"
}, {
"name": "Matias Alejo Garcia",
"email": "[email protected]"
}]
}