forked from bigearth/rest.bitbox.earth
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
106 lines (106 loc) · 3.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "rest.bitcoin.com",
"version": "3.12.4",
"description": "REST API for Bitcoin.com's Cloud",
"author": "Gabriel Cardona <[email protected]>",
"contributors": [
"Chris Troutner <[email protected]>"
],
"license": "MIT",
"scripts": {
"start": "npm run build && node ./dist/app.js",
"build": "node ./node_modules/gulp/bin/gulp.js build && ./node_modules/typescript/bin/tsc",
"dev": "nodemon ./dist/app.js",
"test": "npm run test-v2",
"test-v2": "export NETWORK=testnet && npm run build && nyc --reporter=text mocha --require babel-core/register --timeout 25000 test/v2/ --exit",
"test-v3": "npm run build && nyc --reporter=text mocha --require babel-core/register --timeout 25000 test/v3/unit/ --exit",
"test-v2-no-build": "export NETWORK=testnet && nyc --reporter=text mocha --require babel-core/register --timeout 25000 test/v2/",
"test-v3-no-build": "nyc --reporter=text mocha --require babel-core/register --timeout 25000 test/v3/unit/",
"test-all": "TEST=integration nyc --reporter=text mocha --require babel-core/register --timeout 15000 test/v2/",
"test:integration": "mocha test/v2/integration --exit",
"test:integration:v3": "mocha --timeout=15000 test/v3/integration",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage:report": "npm run build && nyc --reporter=html mocha --require babel-core/register --exit test/v3/unit/"
},
"engines": {
"node": ">=10.15.3"
},
"resolutions": {
"graceful-fs": "4.2.4"
},
"dependencies": {
"axios": "^0.19.0",
"bitbox-sdk": "8.4.2",
"bitcoincash-zmq-decoder": "0.1.5",
"body-parser": "^1.18.3",
"cashaccounts": "^0.4.2",
"cookie-parser": "~1.4.3",
"cors": "^2.8.3",
"debug": "~2.6.3",
"dotenv": "^4.0.0",
"elasticsearch": "^13.0.1",
"express": "^4.15.5",
"express-basic-auth": "^1.1.3",
"express-rate-limit": "^2.11.0",
"gulp-json-modify": "^1.0.2",
"gulp-merge-json": "^1.3.1",
"helmet": "^3.12.1",
"jade": "~1.11.0",
"mkdirp": "^0.5.1",
"mocha": "6.1.4",
"mongoose": "^4.10.5",
"morgan": "^1.9.1",
"mqtt": "^2.8.0",
"passport": "^0.4.0",
"passport-anonymous": "^1.0.1",
"passport-http": "^0.3.0",
"pg": "^6.2.3",
"pg-hstore": "^2.3.2",
"slp-sdk": "^4.15.0",
"socket.io": "^2.1.1",
"strftime": "^0.10.0",
"swagger-stats": "^0.95.6",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.8.0",
"zeromq": "^4.6.0"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/node": "^10.12.1",
"bignumber.js": "^8.1.1",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"eslint-plugin-prettier": "^3.1.0",
"fs-extra": "^7.0.0",
"gulp": "^3.9.1",
"nock": "^10.0.0",
"node-mocks-http": "^1.7.0",
"nodemon": "^1.18.1",
"nyc": "^11.6.0",
"pandacash-core": "^0.1.0",
"prettier": "^1.14.2",
"proxyquire": "^2.1.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"semantic-release": "^15.11.0",
"sinon": "^6.3.4",
"typescript": "^3.1.4",
"wtfnode": "^0.8.0"
},
"release": {
"publish": [
{
"path": "@semantic-release/npm",
"npmPublish": false
}
]
},
"prettier": {
"singleQuote": false,
"printWidth": 80,
"arrowParens": "avoid",
"trailingComma": "none",
"bracketSpacing": true,
"semi": false
}
}