-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "monitor-dog",
"version": "2.0.0",
"description": "A helpful wrapper for dogstatsd.",
"main": "index.js",
"scripts": {
"test": "npm run jshint && npm run jsinspect && npm run unit",
"jshint": "jshint index.js lib/",
"jsinspect": "jsinspect lib/",
"unit": "lab -v -c test/* -a code"
},
"jshintConfig": {
"node": true,
"curly": true
},
"repository": {
"type": "git",
"url": "https://github.com/Runnable/monitor-dog.git"
},
"keywords": [
"dogstatsd",
"data",
"dog"
],
"author": "Ryan Sandor Richards <[email protected]> (http://www.runnable.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Runnable/monitor-dog/issues"
},
"homepage": "https://github.com/Runnable/monitor-dog",
"devDependencies": {
"code": "^1.4.0",
"jshint": "^2.6.3",
"jsinspect": "^0.6.1",
"lab": "^5.5.1",
"sinon": "^1.14.1"
},
"dependencies": {
"101": "^1.0.0",
"loadenv": "^1.0.3",
"node-dogstatsd": "0.0.6"
}
}