-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.44 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
55
56
57
58
59
60
61
62
63
{
"name": "prometheus-middleware",
"version": "1.4.0",
"description": "Middleware to add an HTTP server to expose prometheus metrics.",
"main": "index.js",
"bin": "./index.js",
"types": "./index.d.ts",
"exports": {
"require": "./index.js",
"import": "./index.js"
},
"files": [
"src/**",
"index.d.ts"
],
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"apm",
"prometheus",
"middleware",
"latency",
"handles",
"eventloop",
"gc",
"cpu",
"memory"
],
"homepage": "https://github.com/VoodooTeam/prometheus-middleware",
"repository": {
"type": "git",
"url": "git+https://github.com/VoodooTeam/prometheus-middleware.git"
},
"scripts": {
"types": "tsc -p tsconfig.json",
"test": "./node_modules/.bin/jest",
"lint": "./node_modules/.bin/eslint -c ./.eslintrc ./",
"all": "npm run lint && npm run test"
},
"author": {
"name": "Vincent Vallet",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"debug": "4.3.5",
"prom-client": "15.1.3",
"url-value-parser": "^2.2.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.4.0",
"express": "^4.19.2",
"fastify": "^4.28.1",
"jest": "^29.7.0",
"typescript": "^5.5.3"
}
}