-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.04 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
{
"name": "prometheus_inspec_exporter",
"engines": {
"node": ">=7.6"
},
"version": "0.0.2",
"description": "Prometheus exporter for inspec data",
"main": "index.js",
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"format": "standard --fix",
"build": "docker build . -t geekdave/prometheus_inspec_exporter"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"async-lock": "^1.1.2",
"axios": "^0.17.1",
"express": "^4.16.2",
"hyperdom": "^0.11.0",
"jsdom": "^11.11.0",
"lodash": "^4.17.4",
"luxon": "^0.2.11",
"marked": "^0.4.0",
"prom-client": "^10.2.2",
"renderjson": "^1.3.1"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"mocha": "^5.0.0",
"nock": "^9.1.6",
"nyc": "^11.4.1",
"semistandard": "^12.0.0"
},
"semistandard": {
"globals": [
"describe",
"expect",
"it",
"beforeAll",
"afterAll",
"beforeEach",
"afterEach"
]
}
}