-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.07 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.07 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
{
"name": "@owstack/btc-explorer-api",
"description": "A Bitcoin blockchain REST and web socket API service for Btc.",
"version": "0.0.6",
"repository": "git://github.com/owstack/btc-explorer-api.git",
"bugs": {
"url": "https://github.com/owstack/btc-explorer-api/issues"
},
"homepage": "https://github.com/owstack/btc-explorer-api",
"license": "MIT",
"keywords": [
"explorer",
"explorer api",
"blockchain",
"bitcoin api",
"blockchain api",
"json",
"btc"
],
"engines": {
"node": ">=8.2.0"
},
"scripts": {
"test": "NODE_ENV=test mocha -R spec --recursive"
},
"main": "btc-node",
"btcNode": "btc-node",
"dependencies": {
"@owstack/btc-lib": "^0.0.4",
"@owstack/btc-message": "^0.0.4",
"async": "*",
"body-parser": "^1.13.3",
"compression": "^1.6.1",
"lodash": "^4.17.4",
"lru-cache": "^4.0.1",
"morgan": "^1.7.0",
"request": "^2.64.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"proxyquire": "^1.7.2",
"should": "^8.3.1",
"sinon": "^1.10.3"
}
}