forked from uber-archive/express-statsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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
{
"name": "express-statsd",
"description": "Statsd route monitoring middleware for connect/express",
"version": "0.3.0",
"homepage": "https://github.com/uber/express-statsd",
"author": {
"name": "Matt Morgan",
"email": "[email protected]",
"url": "http://mlmorg.com"
},
"keywords": [
"connect",
"express",
"statsd",
"lynx",
"monitoring"
],
"repository": {
"type": "git",
"url": "git://github.com/uber/express-statsd.git"
},
"bugs": {
"url": "https://github.com/uber/express-statsd/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/uber/express-statsd/blob/master/LICENSE"
}
],
"main": "lib/express-statsd",
"dependencies": {
"lynx": "^0.2.0",
"obj-extend": "~0.1.0"
},
"devDependencies": {
"chai": "~1.8.1",
"express": "~3.4.7",
"grunt": "~0.4.2",
"grunt-cli": "~0.1.11",
"grunt-contrib-jshint": "~0.7.2",
"mocha": "~1.15.1",
"request": "~2.29.0"
},
"scripts": {
"test": "grunt && mocha -R spec"
}
}