forked from dalijolijo/bitcore-btx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.6 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
{
"name": "bitcore-node",
"description": "A blockchain indexing node with extended capabilities using bitcore",
"engines": {
"node": ">=8.0.0"
},
"version": "8.3.0",
"author": "Justin Langston <[email protected]>",
"contributors": [
"Justin Langston <[email protected]>",
"Micah Riggan <[email protected]>"
],
"main": "build/src/server.js",
"bin": "bin/start",
"prettier": {
"singleQuote": true,
"printWidth": 120
},
"scripts": {
"start": "npm run tsc && node build/src/server.js",
"debug": "npm run tsc && node --inspect build/src/server.js --DEBUG true",
"clean": "rm -rf build",
"compile": "npm run tsc",
"docs:build-html": "typedoc --out ./docs/html --tsconfig tsconfig.json ./src",
"docs:build-json": "typedoc --json ./docs/json --tsconfig tsconfig.json ./src",
"tsc": "npm run clean && ./node_modules/.bin/tsc",
"test": "npm run tsc && node ./build/test/runners/unit.js && node ./build/test/runners/integration.js",
"test:ci": "npm run test",
"test:ci:integration": "npm run test:integration",
"repair:db": "npm run tsc && node ./build/test/verification/db-repair.js",
"verify:rpc": "npm run tsc && node ./build/test/verification/rpc-verify.js",
"verify:db": "npm run tsc && node ./build/test/verification/db-verify.js",
"resync": "npm run tsc && node ./build/test/verification/resync.js",
"test:unit": "npm run tsc && node ./build/test/runners/unit.js",
"test:integration": "npm run tsc && node ./build/test/runners/integration.js",
"benchmark": "npm run tsc && node build/test/benchmark/benchmark.js",
"api": "npm run tsc && node build/src/workers/api.js",
"api:cluster": "npm run tsc && node build/src/workers/api.js --CLUSTER true",
"pruning": "npm run tsc && node build/src/workers/pruning.js --EXIT true",
"p2p": "npm run tsc && node build/src/workers/p2p.js"
},
"keywords": [
"bitcore-node",
"typescript",
"bitcoin",
"bitcoin-cash",
"bitcoin-btx",
"ethereum",
"node"
],
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/express": "^4.11.1",
"@types/lodash": "^4.14.116",
"@types/mocha": "^5.2.0",
"@types/mongodb": "^3.1.22",
"@types/mongoose": "^5.0.11",
"@types/node": "10.0.2",
"@types/request": "^2.47.0",
"@types/sinon": "^4.3.3",
"@types/socket.io": "^1.4.39",
"@types/socket.io-client": "^1.4.32",
"@types/through2": "^2.0.33",
"@types/winston": "^2.3.9",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"glob": "^7.1.2",
"mocha": "^5.0.5",
"sinon": "^4.4.8",
"supertest": "^3.0.0",
"typescript": "^3.2.2",
"typescript-eslint-parser": "^15.0.0"
},
"dependencies": {
"JSONStream": "~1.3.1",
"async": "^2.5.0",
"bitcore-client": "^8.3.0",
"bitcore-lib": "^8.3.0",
"bitcore-lib-cash": "^8.3.0",
"bitcore-lib-btx": "^8.3.0",
"bitcore-p2p": "^8.3.0",
"bitcore-p2p-cash": "^8.3.0",
"bitcore-p2p-btx": "^8.3.0",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"heapdump": "^0.3.12",
"http": "0.0.0",
"lodash": "^4.17.11",
"lru-cache": "^4.1.3",
"mkdirp": "^0.5.1",
"mongodb": "^3.1.1",
"mongoose": "^5.0.11",
"progress": "^2.0.0",
"request": "^2.88.0",
"rxjs": "^6.1.0",
"secp256k1": "^3.5.0",
"snappy": "^6.0.1",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"through2": "^2.0.3",
"underscore": "^1.8.3",
"web3": "1.0.0-beta.36",
"winston": "^2.3.9"
}
}