forked from procommerce-io/proccore-wallet-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.19 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
{
"name": "proccore-wallet-service",
"description": "A service for Mutisig HD Bitcoin Wallets",
"author": "BitPay Inc",
"version": "2.1.0",
"licence": "MIT",
"keywords": [
"bitcoin",
"copay",
"multisig",
"wallet",
"bitcore",
"BWS"
],
"repository": {},
"bugs": {},
"dependencies": {
"async": "^0.9.2",
"body-parser": "^1.18.2",
"bignumber.js": "^7.2.1",
"compression": "^1.7.1",
"coveralls": "^2.13.3",
"email-validator": "^1.1.1",
"express": "^4.16.2",
"express-rate-limit": "^2.9.0",
"inherits": "^2.0.3",
"json-stable-stringify": "^1.0.1",
"locker": "^0.1.0",
"locker-server": "^0.1.3",
"lodash": "^3.10.1",
"mocha-lcov-reporter": "0.0.1",
"moment": "^2.19.2",
"mongodb": "^2.2.33",
"morgan": "^1.9.0",
"mustache": "^2.3.0",
"nodemailer": "^1.11.0",
"nodemailer-sendgrid-transport": "^0.2.0",
"npmlog": "^0.1.1",
"preconditions": "^1.0.8",
"proccore-lib": "git://github.com/procommerce-io/proccore-lib.git#procurrency",
"read": "^1.0.7",
"request": "^2.83.0",
"secp256k1": "^3.3.1",
"sjcl": "^1.0.7",
"socket.io": "^1.7.4",
"socket.io-client": "^1.7.4",
"sticky-session": "^0.1.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"chai": "^1.9.1",
"istanbul": "*",
"jsdoc": "^3.3.0-beta1",
"memdown": "^1.0.0",
"mocha": "^1.18.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": "./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"
},
"bitcoreNode": "./bitcorenode",
"contributors": [
{
"name": "Braydon Fuller",
"email": "[email protected]"
},
{
"name": "Ivan Socolsky",
"email": "[email protected]"
},
{
"name": "Matias Alejo Garcia",
"email": "[email protected]"
}
]
}