-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.7 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.7 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
{
"name": "@owstack/btc-node",
"description": "Bitcoin Core full node with extended capabilities.",
"version": "0.1.1",
"main": "./index.js",
"repository": "git://github.com/owstack/btc-node.git",
"homepage": "https://github.com/owstack/btc-node",
"bugs": {
"url": "https://github.com/owstack/btc-node/issues"
},
"bin": {
"btcnode": "./bin/btcnode"
},
"scripts": {
"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": [
"bitcoin",
"bitcoind"
],
"dependencies": {
"@owstack/bitcoind-rpc": "^0.0.1",
"@owstack/btc-lib": "^0.0.4",
"async": "^2.5.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",
"lru-cache": "^4.0.1",
"mkdirp": "0.5.1",
"path-is-absolute": "^1.0.0",
"semver": "^5.0.1",
"socket.io": "^2.0.3",
"socket.io-client": "^2.0.3",
"zeromq": "^4.2.0"
},
"optionalDependencies": {
"bufferutil": "~3.0.2",
"utf-8-validate": "~3.0.3"
},
"devDependencies": {
"@owstack/btc-p2p": "^0.0.5",
"benchmark": "2.1.4",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.3",
"jshint": "^2.9.2",
"jshint-stylish": "^2.1.0",
"mocha": "^4.0.0",
"proxyquire": "^1.3.1",
"rimraf": "^2.4.2",
"sinon": "^4.0.0"
},
"license": "MIT"
}