-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 KB
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
{
"name": "http-req-exporter",
"version": "0.1.1",
"description": "A standalone prometheus exporter that executes HTTP requests and exports metrics on their performance.",
"main": "server/index.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"lint-fix": "eslint --ignore-path .gitignore --fix .",
"dev": "NODE_ENV=development DEBUG=exporter nodemon server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/data-fair/http-req-exporter.git"
},
"keywords": [
"prometheus",
"http"
],
"author": "Alban Mouton <alban.mouton@koumoul.com>",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/data-fair/http-req-exporter/issues"
},
"homepage": "https://github.com/data-fair/http-req-exporter#readme",
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"standard"
],
"rules": {}
},
"dependencies": {
"axios": "^0.27.2",
"cacheable-lookup": "^6.0.4",
"config": "^3.3.7",
"event-to-promise": "^0.8.0",
"express": "^4.18.1",
"nodemon": "^2.0.19",
"prom-client": "^14.0.1"
},
"devDependencies": {
"clean-modules": "^2.0.5",
"eslint": "^8.19.0",
"eslint-config-standard": "^17.0.0"
}
}