forked from bitpay/bitcore
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
121 lines (121 loc) · 3.85 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "bitcore-wallet-service",
"description": "A service for Mutisig HD Bitcoin Wallets",
"author": "BitPay Inc",
"version": "8.25.11",
"license": "MIT",
"main": "ts_build/index.js",
"types": "./ts_build/index.d.ts",
"keywords": [
"bitcoin",
"copay",
"multisig",
"wallet",
"bitcore",
"BWS"
],
"repository": {
"url": "[email protected]:bitpay/bitcore-wallet-service.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/bitpay/bitcore-wallet-service/issues"
},
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"abi-decoder": "2.0.1",
"async": "^0.9.2",
"bitcore-lib": "^8.25.10",
"bitcore-lib-cash": "^8.25.10",
"bitcore-lib-doge": "^8.25.10",
"body-parser": "^1.11.0",
"compression": "^1.6.2",
"crypto-wallet-core": "^8.25.10",
"email-validator": "^1.0.1",
"express": "^4.10.0",
"express-rate-limit": "^2.6.0",
"inherits": "^2.0.1",
"istanbul": "^0.4.5",
"json-stable-stringify": "^1.0.0",
"lodash": "^4.17.19",
"moment": "^2.10.3",
"mongodb": "^3.5.9",
"mustache": "^2.1.0",
"nodemailer": "^5.1.1",
"preconditions": "^2.2.3",
"read": "^1.0.5",
"request": "^2.53.0",
"request-promise-native": "^1.0.5",
"secp256k1": "^3.1.0",
"sjcl": "^1.0.2",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"source-map-support": "^0.5.13",
"sticky-session": "^0.1.0",
"uuid": "^3.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/async": "^2.4.1",
"@types/express": "^4.16.1",
"@types/lodash": "^4.14.123",
"@types/moment": "^2.13.0",
"@types/mongodb": "^3.5.25",
"@types/node": "^11.11.4",
"@types/nodemailer": "^4.6.6",
"@types/request": "^2.48.1",
"@types/socket.io": "^2.1.2",
"@types/socket.io-client": "^1.4.32",
"chai": "^1.9.1",
"coveralls": "^3.0.2",
"jsdoc": "^3.6.3",
"memdown": "^1.0.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"proxyquire": "^1.7.2",
"sinon": "^7.1.1",
"supertest": "*",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"typescript": "^3.3.4000",
"typescript-eslint-parser": "^22.0.0"
},
"scripts": {
"start": "npm run clean && npm run tsc && ./start.sh",
"stop": "./stop.sh",
"coverage": "npm run compile && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter spec test",
"test": "npm run compile && mocha --exit",
"test:ci": "npm run test",
"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",
"tsc": "npm run clean && tsc",
"build": "tsc",
"clean": "rm -rf ./ts_build",
"compile": "npm run clean && npm run build",
"pub": "npm run build && npm publish",
"precommit": "npm run fix && npm run lint",
"lint": "npm run lint:ts && npm run lint:style",
"lint:ts": "tslint -c tslint.json 'src/**/*.ts'",
"lint:style": "prettier --check 'src/**/*.ts'",
"fix": "npm run fix:style && npm run fix:lint",
"fix:lint": "tslint --fix -c tslint.json 'src/**/*.ts'",
"fix:style": "prettier --write 'src/**/*.ts'",
"update:stats": "npm run clean && npm run tsc && chmod +x ./ts_build/updatestats/updatestats.js && ./ts_build/updatestats/updatestats.js ",
"clean:fiatrates": "npm run clean && npm run tsc && chmod +x ./ts_build/cleanfiatrates/cleanfiatrates.js && ./ts_build/cleanfiatrates/cleanfiatrates.js "
},
"bitcoreNode": "./bitcorenode",
"contributors": [
{
"name": "Braydon Fuller",
"email": "[email protected]"
},
{
"name": "Ivan Socolsky",
"email": "[email protected]"
},
{
"name": "Matias Alejo Garcia",
"email": "[email protected]"
}
],
"gitHead": "012cc0216a9bc6b195035855bd17149bad41acd1"
}