forked from litecore-archive/litecore-node
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.59 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
{
"name": "digibyte-node",
"description": "Full node with extended capabilities using digibyte and DigiByte Core",
"author": "Digicontributer <esot@digibyte.io>",
"version": "3.1.28",
"main": "./index.js",
"repository": "git://github.com/digibyte-project/digibyte-node.git",
"homepage": "https://github.com/digibyte-project/digibyte-node",
"bugs": {
"url": "https://github.com/digibyte-project/digibyte-node/issues"
},
"contributors": [
{
"name": "Charlie Lee",
"email": "coblee@digibyte.org"
},
{
"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": "Loshan T",
"email": "loshan1212@gmail.com"
}
],
"bin": {
"digibyte-node": "./bin/digibyte-node",
"digibyted": "./bin/digibyted"
},
"scripts": {
"preinstall": "./scripts/download",
"verify": "./scripts/download --skip-digibyte-download --verify-digibyte-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": [
"digibyte",
"digibyted"
],
"dependencies": {
"async": "^1.3.0",
"body-parser": "^1.13.3",
"colors": "^1.1.2",
"commander": "^2.8.1",
"errno": "^0.1.4",
"express": "^4.13.3",
"liftoff": "^2.2.0",
"digibyted-rpc": "git://github.com/digicontributer/digibyted-rpc.git#8cc26e29870b2ae7762925d579dd653c724bb8eb",
"digibyte": "^0.14.3",
"lru-cache": "^4.0.1",
"mkdirp": "0.5.0",
"path-is-absolute": "^1.0.0",
"semver": "^5.0.1",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5",
"zeromq": "^4.2.0"
},
"optionalDependencies": {
"bufferutil": "~1.2.1",
"utf-8-validate": "~1.2.1"
},
"devDependencies": {
"benchmark": "1.0.0",
"bitcore-p2p": "git://github.com/digicontributer/bitcore-p2p.git#13f8b5523e1f946eae399d2d7c13530b54f8e3b2",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"istanbul": "^0.4.3",
"jshint": "^2.9.2",
"jshint-stylish": "^2.1.0",
"mocha": "^2.4.5",
"proxyquire": "^1.3.1",
"rimraf": "^2.4.2",
"sinon": "^1.15.4"
},
"license": "MIT"
}