-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
48 lines (48 loc) · 1.03 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": "hot-shots",
"description": "Node.js client for StatsD, DogStatsD, and Telegraf",
"version": "10.2.1",
"author": "Steve Ivy",
"types": "./types.d.ts",
"contributors": [
"Russ Bradberry <[email protected]>",
"Brian Deitte <[email protected]>"
],
"keywords": [
"statsd",
"dogstatsd",
"datadog",
"metrics",
"telegraf",
"backend"
],
"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": ">=10.0.0"
},
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text npm test",
"test": "mocha -R spec --timeout 5000 test/*.js",
"lint": "eslint lib/**/*.js test/**/*.js",
"pretest": "npm run lint"
},
"optionalDependencies": {
"unix-dgram": "2.x"
},
"devDependencies": {
"eslint": "5.x",
"mocha": "9.x",
"nyc": "15.x"
},
"license": "MIT",
"dependencies": {}
}