This repository was archived by the owner on Mar 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.32 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.32 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
51
52
{
"name": "@apio/express-prometheus",
"version": "2.0.2",
"description": "Express middleware to provide basic metrics to Prometheus.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "npx jest --env=node .",
"lint": "npx eslint lib/**/*.js",
"lint:fix": "npx eslint lib/**/*.js --fix"
},
"husky": {
"hooks": {
"post-version": "git push --tags --no-verify"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ApioLab/express-prometheus"
},
"keywords": [
"Prometheus",
"Express",
"Node",
"Middleware"
],
"author": "Apio",
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/ApioLab/express-prometheus/issues"
},
"homepage": "https://github.com/ApioLab/express-prometheus",
"dependencies": {
"@types/express": "^4.17.13",
"prom-client": "^14.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.18.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"express": "^4.17.1",
"husky": "^4.3.8",
"jest": "^27.2.5",
"supertest": "^6.1.6"
}
}