forked from trezor-graveyard/bitcore-node
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.98 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.98 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
{
"name": "ravencore-node",
"description": "Full node with extended capabilities using ravencore and Ravencoin",
"author": "Under",
"version": "1.0.3",
"main": "./index.js",
"repository": "git://github.com/underdarkskies/ravencore-node.git",
"homepage": "https://github.com/underdarkskies/ravencore-node",
"bugs": {
"url": "https://github.com/underdarkskies/ravencore-node/issues"
},
"bin": {
"ravencore-node": "./bin/ravencore-node",
"ravend": "./bin/ravend"
},
"scripts": {
"preinstall": "./scripts/download",
"verify": "./scripts/download --skip-ravencoin-download --verify-ravencoin-download",
"test": "mocha -R spec --recursive",
"regtest": "./scripts/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"
},
"tags": [
"ravencoin",
"ravend"
],
"dependencies": {
"async": "2.6.2",
"ravend-rpc": "underdarkskies/ravend-rpc",
"ravencore-lib": "underdarkskies/ravencore-lib",
"body-parser": "1.18.3",
"colors": "1.3.3",
"commander": "2.20.0",
"errno": "0.1.7",
"express": "4.16.4",
"liftoff": "2.5.0",
"lru-cache": "4.1.5",
"mkdirp": "0.5.1",
"path-is-absolute": "1.0.1",
"semver": "5.7.0",
"socket.io": "2.2.0",
"socket.io-client": "2.2.0",
"zeromq": "4.6.0"
},
"optionalDependencies": {
"bufferutil": "~1.2.1",
"utf-8-validate": "~4.0.1"
},
"devDependencies": {
"benchmark": "1.0.0",
"ravencore-p2p": "underdarkskies/ravencore-p2p",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"istanbul": "^0.4.3",
"jshint": "^2.9.2",
"jshint-stylish": "^2.1.0",
"mocha": "^5.0.5",
"proxyquire": "^1.3.1",
"rimraf": "^2.4.2",
"sinon": "^4.4.8"
},
"license": "MIT"
}