-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.01 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": "@labbsr0x/express-monitor",
"version": "2.11.0",
"description": "A Prometheus middleware to add basic but very useful metrics for your Express JS app.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "tsc",
"prepublish": "tsc",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/labbsr0x/express-monitor.git"
},
"keywords": [
"expressjs",
"prometheus",
"metrics"
],
"author": "Labbsr0x",
"license": "MIT",
"bugs": {
"url": "https://github.com/labbsr0x/express-monitor/issues"
},
"homepage": "https://github.com/labbsr0x/express-monitor#readme",
"dependencies": {
"prom-client": "^11.5.3"
},
"devDependencies": {
"@types/express": "^4.17.7",
"axios": "^0.20.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"express": "^4.17.1",
"mocha": "^8.0.1",
"swagger-express-middleware": "^4.0.2",
"typescript": "^3.9.7"
}
}