forked from trussle/tricorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.18 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": "@trussle/tricorder",
"version": "1.1.0",
"description": "Express middleware to provide basic metrics to Prometheus",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --env=node .",
"test:coverage": "jest --env=node --coverage .",
"lint": "eslint lib/**/*.js",
"lint:fix": "prettier --write lib/**/*.js"
},
"husky": {
"hooks": {
"post-version": "git push --tags --no-verify"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/trussle/tricorder.git"
},
"keywords": [
"Prometheus",
"Express",
"Node",
"Middleware"
],
"author": "Trussle",
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/trussle/tricorder/issues"
},
"homepage": "https://github.com/trussle/tricorder#readme",
"dependencies": {
"@types/express": "^4.11.1",
"prom-client": "^11.0.0",
"prometheus-gc-stats": "^0.6.0"
},
"devDependencies": {
"coveralls": "3.0.3",
"eslint": "5.16.0",
"eslint-config-prettier": "4.1.0",
"express": "4.16.4",
"husky": "1.3.1",
"jest": "24.5.0",
"prettier": "1.16.4",
"supertest": "4.0.2"
}
}