-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "http-metrics-middleware",
"version": "2.2.0",
"description": "Express middleware for adding common prometheus metrics",
"author": "QlikTech International AB",
"license": "MIT",
"main": "index.js",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "NODE_ENV=test mocha --exit -- ./test/**/*.js",
"test-coverage": "nyc --reporter=lcov npm test",
"lint": "eslint .",
"lint-fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/qlik-oss/http-metrics-middleware.git"
},
"keywords": [
"express",
"koa",
"prometheus",
"metrics"
],
"bugs": {
"url": "https://github.com/qlik-oss/http-metrics-middleware/issues"
},
"homepage": "https://github.com/qlik-oss/http-metrics-middleware#readme",
"dependencies": {
"accepts": "1.3.8",
"express": "^4.21.2",
"lodash": "4.17.21",
"on-finished": "2.4.1",
"performance-now": "2.1.0",
"prom-client": "15.1.3",
"url-value-parser": "2.2.0"
},
"devDependencies": {
"chai": "^4.5.0",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-mocha": "10.5.0",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"sinon": "^19.0.2"
}
}