-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·43 lines (43 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
40
41
42
43
{
"name": "pushgateway-pruner",
"version": "0.2.1",
"description": "Daemon which regularly queries a Prometheus Pushgateway and prunes groupings which have not been pushed for a certain amount of time.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Haufe-Lexware/pushgateway-pruner.git"
},
"keywords": [
"Prometheus",
"Pushgateway",
"Delete",
"Instance",
"Prune"
],
"author": "Martin Danielsson <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Haufe-Lexware/pushgateway-pruner/issues"
},
"homepage": "https://github.com/Haufe-Lexware/pushgateway-pruner#readme",
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
},
"scripts": {
"test": "jest"
},
"dependencies": {
"axios": "1.7.7",
"prom-client": "15.1.3",
"winston": "3.14.2"
},
"devDependencies": {
"jest": "29.7.0"
},
"jshintConfig": {
"esversion": 6,
"asi": true,
"node": true
}
}