-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 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
55
{
"name": "express-red-middleware",
"version": "0.1.2",
"description": "prometheus metrics middleware for express",
"keywords": [
"express",
"prometheus",
"metrics",
"red",
"middleware"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": ["lib/**/*"],
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npm run prettier && npm run eslint",
"eslint": "eslint --fix 'src/*.ts'",
"prettier": "prettier --write 'src/*.ts'"
},
"author": {
"name": "Roger Welin",
"email": "roger.welin@icloud.com",
"url": "https://rogerwelin.github.io"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rogerwelin/express-prom-middleware"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"url-value-parser": "^2.2.0"
},
"peerDependencies": {
"express": "4.x",
"prom-client": ">= 14.x"
},
"engines": {
"node": ">=14"
}
}