forked from statsd/statsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.09 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": "statsd",
"version": "0.8.0",
"description": "Network daemon for the collection and aggregation of realtime application metrics",
"author": {
"name": "Etsy",
"url": "https://codeascraft.com"
},
"license" : "MIT",
"homepage": "https://github.com/etsy/statsd",
"bugs": "https://github.com/etsy/statsd/issues",
"keywords": [
"statsd",
"etsy",
"metric",
"aggregation",
"realtime"
],
"repository": {
"type": "git",
"url": "https://github.com/etsy/statsd.git"
},
"engines": {
"node" : ">=0.10"
},
"dependencies": {
"generic-pool": "2.2.0"
},
"devDependencies": {
"nodeunit": "0.9.x",
"underscore": "1.4.x",
"temp": "0.4.x"
},
"optionalDependencies": {
"modern-syslog":"1.1.2",
"hashring":"3.2.0",
"winser": "=0.1.6"
},
"bin": {
"statsd": "./bin/statsd"
},
"scripts": {
"test": "./run_tests.sh",
"start": "node stats.js config.js",
"install-windows-service": "node_modules\\.bin\\winser -i",
"uninstall-windows-service": "node_modules\\.bin\\winser -r"
}
}