1 | {
|
2 | "name": "hot-shots",
|
3 | "description": "Node.js client for StatsD, DogStatsD, and Telegraf",
|
4 | "version": "8.3.0",
|
5 | "author": "Steve Ivy",
|
6 | "types": "./types.d.ts",
|
7 | "contributors": [
|
8 | "Russ Bradberry <rbradberry@gmail.com>",
|
9 | "Brian Deitte <bdeitte@gmail.com>"
|
10 | ],
|
11 | "keywords": [
|
12 | "statsd",
|
13 | "dogstatsd",
|
14 | "datadog",
|
15 | "metrics",
|
16 | "telegraf"
|
17 | ],
|
18 | "repository": {
|
19 | "type": "git",
|
20 | "url": "git://github.com/brightcove/hot-shots.git"
|
21 | },
|
22 | "bugs": {
|
23 | "url": "https://github.com/brightcove/hot-shots/issues"
|
24 | },
|
25 | "directories": {
|
26 | "lib": "./lib/"
|
27 | },
|
28 | "engines": {
|
29 | "node": ">=6.0.0"
|
30 | },
|
31 | "scripts": {
|
32 | "coverage": "nyc --reporter=lcov --reporter=text npm test",
|
33 | "test": "mocha -R spec --timeout 5000 test/*.js",
|
34 | "lint": "eslint lib/**/*.js test/**/*.js",
|
35 | "pretest": "npm run lint"
|
36 | },
|
37 | "optionalDependencies": {
|
38 | "unix-dgram": "2.0.x"
|
39 | },
|
40 | "devDependencies": {
|
41 | "eslint": "5.9.x",
|
42 | "mocha": "6.2.x",
|
43 | "nyc": "15.x"
|
44 | },
|
45 | "license": "MIT",
|
46 | "dependencies": {}
|
47 | }
|