forked from dashpay/dashcore-node
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 2.99 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
{
"name": "@essentiaone/essx-node",
"description": "Full node with extended capabilities using ESSNode and ESS Core (essd)",
"author": "Essentia Team",
"version": "5.1.1",
"main": "./index.js",
"repository": "git://github.com/essentiaone/essx-node",
"homepage": "https://github.com/essentiaone/essx-node",
"bugs": {
"url": "https://github.com/essentiaone/essx-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"
},
{
"name": "Oksana Zakharchuk",
"email": "zaharchuk2ksenia@gmail.com"
}
],
"bin": {
"essx-node": "./bin/essx-node"
},
"scripts": {
"dev": "nodemon ./bin/essx-node start",
"start": "./bin/essx-node start",
"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",
"prod-start": "NODE_ENV=production pm2 start ./bin/start.js --name api-blockexplorer",
"prod-stop": "NODE_ENV=production pm2 stop api-blockexplorer"
},
"tags": [
"ess",
"essd"
],
"dependencies": {
"@dashevo/dashcore-lib": "file:lib/dashcore-lib",
"@dashevo/dashd-rpc": "file:lib/dashd-rpc",
"@dashevo/insight-api": "file:lib/insight-api",
"@dashevo/insight-ui": "file:lib/insight-ui",
"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",
"nodemon": "1.18.10",
"path-is-absolute": "^1.0.0",
"pm2": "^3.5.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": "file:lib/dashcore-p2p",
"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"
}