forked from lloyd/node-statsd
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
47 lines (47 loc) · 947 Bytes
/
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
{
"name": "lynx",
"description": "Minimalistic StatsD client for Node.js programs",
"version": "0.2.1",
"author": "Lloyd Hilaiel",
"contributors": [
"Nuno Job <[email protected]> (http://nunojob.com)",
"Mark Bogdanoff (https://github.com/bog)"
],
"scripts": {
"test": "tap tests/*-test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/dscape/lynx.git"
},
"bugs": {
"web": "https://github.com/dscape/lynx/issues"
},
"directories": {
"lib": "./lib/"
},
"main": "./lib/lynx",
"keywords": [
"stats",
"metrics",
"metricsd",
"statsd",
"etsy",
"statsd client",
"statsd driver",
"graphite"
],
"devDependencies": {
"tap": "^0.4.11"
},
"dependencies": {
"mersenne": "~0.0.3",
"statsd-parser": "~0.0.4"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/dscape/lynx/raw/master/LICENSE"
}
]
}