forked from bitpay/bitcore-node
-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
80 lines (80 loc) · 2.22 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
{
"name": "@dashevo/dashcore-node",
"description": "Full node with extended capabilities using Dashcore and Dash Core (dashd)",
"author": "BitPay <[email protected]>",
"version": "7.0.5",
"main": "./index.js",
"repository": "git://github.com/dashevo/dashcore-node.git",
"homepage": "https://github.com/dashevo/dashcore-node",
"bugs": {
"url": "https://github.com/dashevo/dashcore-node/issues"
},
"contributors": [
{
"name": "Christopher Jeffrey"
},
{
"name": "Braydon Fuller",
"email": "[email protected]"
},
{
"name": "Chris Kleeschulte",
"email": "[email protected]"
},
{
"name": "Patrick Nagurny",
"email": "[email protected]"
}
],
"bin": {
"dashcore-node": "./bin/dashcore-node"
},
"scripts": {
"test": "mocha -R spec --recursive",
"regtest": "./regtest/regtest",
"jshint": "jshint --reporter=node_modules/jshint-stylish ./lib",
"coverage": "istanbul cover _mocha -- --recursive",
"coveralls": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --recursive -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"mocha": "./node_modules/.bin/mocha",
"dashd_test": "./node_modules/.bin/mocha test/services/dashd.unit.js"
},
"tags": [
"dash",
"dashd"
],
"dependencies": {
"@dashevo/dashcore-lib": "^0.22.0",
"@dashevo/dashd-rpc": "^18.2.0",
"async": "^2.6.1",
"body-parser": "^1.18.3",
"colors": "^1.3.3",
"commander": "^2.20.0",
"errno": "^0.1.7",
"express": "^4.17.1",
"liftoff": "^2.5.0",
"lru-cache": "^4.1.5",
"path-is-absolute": "^1.0.1",
"semver": "^5.7.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"@pshenmic/zeromq": "6.0.0-beta.22"
},
"optionalDependencies": {
"bufferutil": "~4.0.1",
"utf-8-validate": "~5.0.2"
},
"devDependencies": {
"@dashevo/dashcore-p2p": "^1.2.2",
"benchmark": "2.1.4",
"chai": "^4.3.0",
"coveralls": "^3.0.4",
"istanbul": "^0.4.5",
"jshint": "^2.10.2",
"jshint-stylish": "^2.2.1",
"mocha": "^10.0.0",
"proxyquire": "^2.1.0",
"rimraf": "^2.6.3",
"sinon": "^2.4.1"
},
"license": "MIT"
}