forked from dgaubert/express-metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "express-metrics",
"description": "Express middleware for collecting and reporting metrics about response times",
"version": "1.1.0",
"author": "Daniel García Aubert <[email protected]>",
"main": "index.js",
"dependencies": {
"log4js": "^0.6.26",
"metrics": "latest",
"node-statsd": "^0.1.1",
"on-headers": "^1.0.0"
},
"devDependencies": {
"express": "^4.12.2",
"jshint": "latest",
"q": "^1.2.0",
"request": "^2.53.0",
"should": "^5.1.0",
"supertest": "^0.15.0",
"sinon": "^1.15.3",
"mocha": "^2.2.1"
},
"repository": {
"type": "git",
"url": "git://github.com/dgaubert/express-metrics.git"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha test/**/*.spec.js --require should",
"test:watch": "npm run test -- -w",
"lint": "jshint *.js"
},
"keywords": [
"nodejs",
"express",
"middleware",
"metrics",
"cluster",
"response",
"times"
],
"bugs": {
"url": "https://github.com/dgaubert/express-metrics/issues"
},
"license": "MIT"
}