-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 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
49
50
51
52
53
54
{
"name": "pbm-exporter",
"version": "0.1.2",
"description": "Prometheus exporter for PBM (Percona Backup Mongodb)",
"main": "server/index.js",
"scripts": {
"lint": "eslint --ext .js --ignore-path .gitignore .",
"dev": "DEBUG=pbm-exporter PBM_MONGODB_URI=mongodb://localhost:27017 nodemon server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koumoul-dev/pbm-exporter.git"
},
"keywords": [
"PBM",
"Percona",
"Backup",
"Mongodb",
"Prometheus",
"exporter",
"monitoring",
"mongodb"
],
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/koumoul-dev/pbm-exporter/issues"
},
"homepage": "https://github.com/koumoul-dev/pbm-exporter#readme",
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"standard"
]
},
"dependencies": {
"config": "^3.3.7",
"debug": "^4.3.4",
"event-to-promise": "^0.8.0",
"express": "^4.18.1",
"mongodb": "^4.10.0",
"prom-client": "^14.1.0"
},
"devDependencies": {
"clean-modules": "^2.0.6",
"eslint": "^8.23.0",
"eslint-config-standard": "^17.0.0",
"nodemon": "^2.0.20"
}
}