-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.11 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
{
"name": "epimetheus",
"version": "0.0.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": "^2.13.1",
"express": "^4.15.3",
"git-pre-hooks": "^1.2.0",
"hapi": "^16.4.3",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"request": "^2.81.0",
"restify": "^5.0.0",
"sinon": "^2.3.6"
},
"dependencies": {
"prom-client": "^10.0.0"
}
}