forked from brightcove/hot-shots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 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
44
45
46
{
"name": "hot-shots",
"description": "Node.js client for StatsD, DogStatsD, and Telegraf",
"version": "6.8.6",
"author": "Steve Ivy",
"types": "./types.d.ts",
"contributors": [
"Russ Bradberry <[email protected]>",
"Brian Deitte <[email protected]>"
],
"keywords": [
"statsd",
"dogstatsd",
"datadog",
"metrics",
"telegraf"
],
"repository": {
"type": "git",
"url": "git://github.com/brightcove/hot-shots.git"
},
"bugs": {
"url": "https://github.com/brightcove/hot-shots/issues"
},
"directories": {
"lib": "./lib/"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text npm test",
"test": "mocha --exit -R spec --timeout 5000 test/*.js",
"lint": "eslint lib/**/*.js test/**/*.js",
"pretest": "npm run lint"
},
"optionalDependencies": {
"unix-dgram": "2.0.x"
},
"devDependencies": {
"eslint": "5.9.x",
"mocha": "4.x",
"nyc": "14.x"
},
"license": "MIT"
}