-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 998 Bytes
/
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
{
"name": "sails-hook-prometheus",
"version": "0.8.1",
"description": "Provides Prometheus /metrics endpoint with stats.",
"main": "src/index.js",
"scripts": {
"lint": "standard src/*.js test/*.js",
"test": "npm run lint && npm run custom-tests && echo 'Done.'",
"custom-tests": "./node_modules/.bin/nyc --reporter=lcov mocha test/**/*.spec.js"
},
"author": "Daniel Rataj <daniel.rataj@mall.cz>",
"license": "MIT",
"dependencies": {
"prom-client": "^12.0.0",
"sails": "^1.3.1",
"url": "^0.11.0",
"url-value-parser": "^2.0.1"
},
"devDependencies": {
"mocha": "^8.1.3",
"standard": "^14.3.4",
"underscore": "^1.11.0",
"nyc": "^15.1.0"
},
"sails": {
"isHook": true,
"hookName": "prometheus"
},
"repository": {
"type": "git",
"url": "https://github.com/danielrataj/sails-hook-prometheus"
},
"engines": {
"node": ">= 0.10.0",
"npm": ">= 1.4.0"
},
"keywords": [
"sails",
"prometheus"
]
}