-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1013 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
{
"name": "ems-esp-exporter",
"version": "1.0.0",
"description": "Prometheus metrics exporter for EMS-ESP",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poelstra/ems-esp-exporter.git"
},
"author": "Martin Poelstra <martin@beryllium.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/poelstra/ems-esp-exporter/issues"
},
"homepage": "https://github.com/poelstra/ems-esp-exporter#readme",
"devDependencies": {
"@types/express": "^4.17.16",
"@types/node": "^18.11.18",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
},
"dependencies": {
"axios": "^1.2.5",
"csv-parse": "^5.3.3",
"express": "^4.18.2",
"prom-client": "^14.1.1",
"source-map-support": "^0.5.21"
}
}