forked from sivy/node-statsd
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 732 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 732 Bytes
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
{
"name": "node-dogstatsd",
"description": "node client for extended StatsD server of Datadog",
"version": "0.0.7",
"author": "Young Han Lee",
"repository": {
"type": "git",
"url": "git://github.com/joybro/node-dogstatsd.git"
},
"bugs": {
"url": "https://github.com/joybro/node-dogstatsd/issues"
},
"scripts": {
"test": "./node_modules/.bin/mocha --recursive --require should"
},
"directories": {
"lib": "./lib/"
},
"main": "./lib/statsd",
"engines": {
"node": ">=0.1.97"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/joybro/node-dogstatsd/raw/master/LICENSE"
}
],
"devDependencies": {
"mocha": "^2.2.5",
"should": "^6.0.3"
}
}