forked from roylines/node-epimetheus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.14 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
{
"name": "epimetheus",
"version": "0.2.1",
"description": "node middleware to automatically instrument node applications for consumption by prometheus",
"main": "index.js",
"scripts": {
"test": "istanbul cover _mocha -dir $CIRCLE_ARTIFACTS",
"coveralls": "cat $CIRCLE_ARTIFACTS/lcov.info | coveralls"
},
"git-pre-hooks": {
"pre-push": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roylines/node-epimetheus.git"
},
"keywords": [
"prometheus",
"metrics",
"express",
"restify"
],
"author": "Roy Lines",
"license": "MIT",
"bugs": {
"url": "https://github.com/roylines/node-epimetheus/issues"
},
"homepage": "https://github.com/roylines/node-epimetheus#readme",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^3.0.2",
"express": "^4.15.3",
"git-pre-hooks": "^1.2.0",
"hapi": "^17.6.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.2.0",
"request": "^2.81.0",
"restify": "^5.0.0",
"sinon": "^2.3.6"
},
"dependencies": {
"lodash": "^4.17.11",
"prom-client": "^11.1.3"
}
}