forked from dashpay/dashcore-node
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.5 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.5 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
{
"name": "@dashevo/dashcore-node",
"description": "Full node with extended capabilities using Dashcore and Dash Core (dashd)",
"author": "BitPay <dev@bitpay.com>",
"version": "5.1.3",
"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": "braydon@bitpay.com"
},
{
"name": "Chris Kleeschulte",
"email": "chrisk@bitpay.com"
},
{
"name": "Patrick Nagurny",
"email": "patrick@bitpay.com"
}
],
"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",
"check-package": "npm run check-package:name && npm run check-package:version",
"check-package:name": "test $(jq -r .name package.json) = $(jq -r .name package-lock.json)",
"check-package:version": "test $(jq -r .version package.json) = $(jq -r .version package-lock.json)",
"dashd_test": "./node_modules/.bin/mocha test/services/dashd.unit.js"
},
"tags": [
"dash",
"dashd"
],
"dependencies": {
"@dashevo/dashcore-lib": "^0.17.2",
"@dashevo/dashd-rpc": "^1.2.1",
"async": "^2.6.1",
"body-parser": "^1.18.3",
"colors": "^1.3.3",
"commander": "^2.19.0",
"errno": "^0.1.7",
"express": "^4.16.4",
"liftoff": "^2.5.0",
"lru-cache": "^4.0.1",
"mkdirp": "0.5.1",
"path-is-absolute": "^1.0.0",
"semver": "^5.6.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"zeromq": "^5.1.0"
},
"optionalDependencies": {
"bufferutil": "~4.0.1",
"utf-8-validate": "~5.0.2"
},
"devDependencies": {
"@dashevo/dashcore-p2p": "^1.1.9",
"benchmark": "2.1.4",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"jshint": "^2.9.7",
"jshint-stylish": "^2.2.1",
"mocha": "^4.1.0",
"proxyquire": "^2.1.0",
"rimraf": "^2.6.2",
"sinon": "^2.4.1"
},
"license": "MIT"
}