-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "bitcoind-exporter",
"version": "2.5.4",
"description": "Bitcoind metrics prometheus exporter",
"main": "index.js",
"scripts": {
"test": "dgoss run lepetitbloc/bitcoind-exporter",
"start": "node -r dotenv/config index.js",
"build": "docker build -t lepetitbloc/bitcoind-exporter .",
"push": "docker push lepetitbloc/bitcoind-exporter",
"publish": "npm run build && npm run test && npm run push",
"demo": "docker-compose up"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lepetitbloc/bitcoind-exporter.git"
},
"keywords": [
"bitcoin",
"bitcoind",
"monitoring",
"prometheus",
"wallet",
"metrics",
"exporter"
],
"author": "Johan Dufour <[email protected]>",
"license": "MIT",
"dependencies": {
"bitcoind-client": "^2.2.9",
"compression": "^1.7.2",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"helmet": "^3.12.0",
"isomorphic-fetch": "^2.2.1",
"prom-client": "^10.2.3",
"serve-static": "^1.13.2"
}
}