-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.36 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.36 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
{
"name": "@owstack/hapi-blockchain",
"version": "1.0.17",
"description": "Provides connectivity to bitcoin RPC, REST, and/or ZMQ data",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "eslint .",
"coverage": "istanbul cover _mocha -- --no-timeouts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/owstack/hapi-blockchain.git"
},
"keywords": [
"hapi",
"blockchain",
"bitcoin",
"litecoin",
"cash"
],
"author": "Ian Patton <ian@owstack.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/owstack/hapi-blockchain/issues"
},
"homepage": "https://github.com/owstack/hapi-blockchain#readme",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"documentation": "^6.3.3",
"eslint": "^4.19.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.2.0",
"proxyquire": "^2.1.0",
"should": "^13.2.3",
"sinon": "^7.2.5"
},
"dependencies": {
"@owstack/bch-lib": "^0.4.2",
"@owstack/btc-lib": "^0.1.21",
"@owstack/key-lib": "^0.0.37",
"@owstack/ltc-lib": "^0.1.20",
"@owstack/ows-common": "^0.0.16",
"errno": "^0.1.7",
"lru-cache": "^5.1.1",
"promise-retry": "^1.1.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"zeromq": "^5.1.0"
},
"peerDependencies": {
"hapi": ">= 17.0.0"
}
}