forked from TENTOfficial/bitcore-wallet-service
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.36 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
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "bitcore-wallet-service-anon",
"description": "A service for Mutisig HD Bitcoin Wallets",
"author": "The BitcoinZ Community",
"version": "1.1.0",
"licence": "MIT",
"keywords": [
"bitcoin",
"copay",
"multisig",
"wallet",
"bitcore",
"BWS"
],
"repository": {
"url": "git@github.com:anonymousbitcoin/bitcore-wallet-service-anon.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/anonymousbitcoin/bitcore-wallet-service-anon/issues"
},
"dependencies": {
"async": "^0.9.2",
"bitcore-lib-anon": "^1.0.3",
"body-parser": "^1.11.0",
"compression": "^1.6.2",
"coveralls": "^2.11.2",
"email-validator": "^1.0.1",
"express": "^4.10.0",
"express-rate-limit": "^2.6.0",
"inherits": "^2.0.1",
"json-stable-stringify": "^1.0.0",
"locker": "^0.1.0",
"locker-server": "^0.1.3",
"lodash": "^3.10.1",
"mocha-lcov-reporter": "0.0.1",
"moment": "^2.10.3",
"mongodb": "^2.0.27",
"morgan": "*",
"mustache": "^2.1.0",
"nodemailer": "^1.3.4",
"nodemailer-sendgrid-transport": "^0.2.0",
"npmlog": "^0.1.1",
"preconditions": "^1.0.7",
"read": "^1.0.5",
"request": "^2.53.0",
"secp256k1": "^3.1.0",
"sjcl": "^1.0.2",
"socket.io": "^1.3.5",
"socket.io-client": "^1.3.5",
"sticky-session": "^0.1.0",
"uuid": "*"
},
"devDependencies": {
"chai": "^1.9.1",
"istanbul": "*",
"jsdoc": "^3.3.0-beta1",
"memdown": "^1.0.0",
"mocha": "^1.18.2",
"node-inspector": "^1.1.2",
"proxyquire": "^1.7.2",
"sinon": "1.10.3",
"supertest": "*",
"tingodb": "^0.3.4"
},
"scripts": {
"start": "./start.sh",
"stop": "./stop.sh",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter spec test",
"test": "mocha",
"debug": "node-inspector & mocha --debug-brk",
"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"
},
"bitcoreNode": "./bitcorenode",
"contributors": [
{
"name": "Braydon Fuller",
"email": "braydon@bitpay.com"
},
{
"name": "Ivan Socolsky",
"email": "ivan@bitpay.com"
},
{
"name": "Matias Alejo Garcia",
"email": "ematiu@gmail.com"
}
]
}