-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 940 Bytes
/
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
{
"name": "prometheus_cipherscan_exporter",
"engines": {
"node": ">=7.6"
},
"version": "0.0.2",
"description": "Prometheus exporter for cipherscan",
"main": "index.js",
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"format": "standard --fix",
"build": "docker build . -t geekdave/prometheus_cipherscan_exporter"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.17.1",
"express": "^4.16.2",
"lodash": "^4.17.4",
"luxon": "^0.2.11",
"prom-client": "^10.2.2"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"semistandard": "^12.0.0",
"sinon": "^5.0.10"
},
"semistandard": {
"globals": [
"describe",
"expect",
"it",
"beforeAll",
"afterAll",
"beforeEach",
"afterEach"
]
}
}