This repository has been archived by the owner on Jan 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.44 KB
/
package.json
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
{
"name": "bitcoin-exporter",
"version": "0.1.5",
"description": "Collects statistics from bitcoin node via JSON-RPC and exports it in prometheus metrics format.",
"engines": {
"node": ">=12.8.0"
},
"main": "./src/index.js",
"scripts": {
"docker:btc:up": "docker-compose -f docker-test.yaml -f docker/docker-compose.btc.yaml up --build -d",
"docker:btc:logs": "docker-compose -f docker-test.yaml -f docker/docker-compose.btc.yaml logs -f exporter",
"docker:btc:down": "docker-compose -f docker-test.yaml -f docker/docker-compose.btc.yaml down",
"docker:bch:up": "docker-compose -f docker-test.yaml -f docker/docker-compose.bch.yaml up --build -d",
"docker:bch:logs": "docker-compose -f docker-test.yaml -f docker/docker-compose.bch.yaml logs -f exporter",
"docker:bch:down": "docker-compose -f docker-test.yaml -f docker/docker-compose.bch.yaml down",
"docker:bsv:up": "docker-compose -f docker-test.yaml -f docker/docker-compose.bsv.yaml up --build -d",
"docker:bsv:logs": "docker-compose -f docker-test.yaml -f docker/docker-compose.bsv.yaml logs -f exporter",
"docker:bsv:down": "docker-compose -f docker-test.yaml -f docker/docker-compose.bsv.yaml down",
"debug:btc": "node -r dotenv/config . dotenv_config_path=btc.env",
"debug:bch": "node -r dotenv/config . dotenv_config_path=bch.env",
"build": "docker build . -t bitcoin-exporter",
"prepush": "git push",
"push": "git push --tags",
"preversion": "git add -A .",
"postversion": "yarn run push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4ops/bitcoin-exporter.git"
},
"keywords": [
"blockchain",
"bitcoin",
"prometheus"
],
"author": {
"name": "Anton Kulikov <anton.kulikov@protonmail.com>"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/4ops/bitcoin-exporter/issues"
},
"homepage": "https://github.com/4ops/bitcoin-exporter#readme",
"devDependencies": {
"dotenv": "^8.1.0",
"eslint": "^6.2.1",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-security": "^1.4.0",
"prettier": "^1.18.2"
},
"dependencies": {
"axios": "^0.19.0",
"log-stderr": "^0.1.0",
"prom-client": "^11.5.3"
}
}