-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.43 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 4.43 KB
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
122
{
"name": "@bitpay-labs/bitcore-node",
"description": "A blockchain indexing node with extended capabilities using bitcore",
"engines": {
"node": ">=22.0.0"
},
"version": "11.6.1",
"author": "Justin Langston <nitsujlangston@gmail.com>",
"contributors": [
"Justin Langston <nitsujlangston@gmail.com>",
"Micah Riggan <micahriggan@gmail.com>",
"Kenny Joseph <kajoseph2@msn.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/bitpay/bitcore/tree/master/packages/bitcore-node"
},
"main": "build/src/server.js",
"bin": "bin/start",
"scripts": {
"start": "npm run tsc && node build/src/server.js",
"start1": "node build/src/server.js",
"debug": "npm run tsc && node --trace-warnings --inspect build/src/server.js --DEBUG true",
"clean": "rm -rf build",
"compile": "npm run clean && npm run build",
"build": "tsc",
"build:prod": "tsc -p tsconfig.prod.json",
"build:docker": "docker build -t bitpay/bitcore-node:latest -f ./Dockerfile ../..",
"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 && tsc",
"test": "npm run test:unit && npm run test:integration",
"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",
"verify:headers": "npm run tsc && node ./build/test/verification/db-verify-headers.js",
"resync": "npm run tsc && node ./build/test/verification/resync.js",
"test:unit": "npm run clean && tsc && mocha 'build/test/unit/**/*.test.js'",
"test:integration": "npm run clean && tsc && BCN_LOG_LEVEL=none mocha 'build/test/integration/**/*.test.js'",
"benchmark": "node build/test/benchmark/benchmark.js",
"coverage": "nyc mocha build/test/**/*.test.js",
"api": "npm run tsc && node build/src/workers/api.js",
"api:debug": "npm run tsc && node --inspect build/src/workers/api.js --DEBUG true",
"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",
"lint": "eslint .",
"fix:errors": "eslint --fix --quiet .",
"fix:all": "eslint --fix .",
"fix": "npm run fix:errors",
"precommit": "npm run lint",
"test:scripts": "npx mocha scripts/test"
},
"nyc": {
"reporter": [
"html",
"json",
"text"
],
"all": true
},
"keywords": [
"bitcore-node",
"typescript",
"bitcoin",
"bitcoin-cash",
"ethereum",
"node"
],
"license": "MIT",
"devDependencies": {
"@types/bn.js": "4.11.5",
"@types/chai": "4.1.3",
"@types/express": "4.17.21",
"@types/mocha": "5.2.0",
"@types/mongodb": "3.1.22",
"@types/node": "22.13.1",
"@types/request": "2.47.0",
"@types/sinon": "4.3.3",
"@types/through2": "2.0.33",
"@types/winston": "2.4.4",
"axios": "0.21.1",
"chai": "^5.2.0",
"istanbul": "^0.4.5",
"mocha": "5.0.5",
"nyc": "^15.1.0",
"sinon": "4.4.8",
"socket.io-client": "4.8.1",
"supertest": "3.0.0",
"typescript": "5.7.3"
},
"dependencies": {
"@bitpay-labs/bitcore-client": "^11.6.0",
"@bitpay-labs/bitcore-lib": "^11.6.0",
"@bitpay-labs/bitcore-lib-cash": "^11.6.0",
"@bitpay-labs/bitcore-lib-doge": "^11.6.0",
"@bitpay-labs/bitcore-lib-ltc": "^11.6.0",
"@bitpay-labs/bitcore-p2p": "^11.6.0",
"@bitpay-labs/bitcore-p2p-cash": "^11.6.0",
"@bitpay-labs/bitcore-p2p-doge": "^11.6.0",
"@bitpay-labs/bitcore-wallet-client": "^11.6.1",
"@bitpay-labs/crypto-rpc": "^11.6.0",
"@bitpay-labs/crypto-wallet-core": "^11.6.0",
"@metaplex-foundation/mpl-token-metadata": "^3.4.0",
"@metaplex-foundation/umi": "^1.2.0",
"@metaplex-foundation/umi-bundle-defaults": "^1.2.0",
"@solana/spl-token-registry": "0.2.4574",
"abi-decoder": "2.4.0",
"cors": "2.8.4",
"express": "4.19.2",
"lru-cache": "11.2.5",
"mongodb": "3.6.12",
"request": "2.88.0",
"secp256k1": "4.0.3",
"socket.io": "4.8.1",
"source-map-support": "^0.5.13",
"winston": "3.3.0"
},
"gitHead": "e091d99915d099863ad3e78dbe867aa7780191e4"
}