-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
51 lines (51 loc) · 934 Bytes
/
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
49
50
51
{
"name": "hapi-statsd",
"description": "A hapi plugin for sending request round trip metrics to statsd",
"contributors": [
"Mac Angell <mac.ang311@gmail.com>"
],
"version": "9.0.0",
"dependencies": {
"@hapi/hoek": "^9.2.0",
"statsd-client": "^0.4.6"
},
"devDependencies": {
"@hapi/hapi": "^20.1.5",
"coveralls": "^3.0.0",
"jshint": "^2.9.4",
"mocha": "^9.0.2",
"nyc": "^15.1.0",
"travis-cov": "^0.2.5"
},
"peerDependencies": {
"@hapi/hapi": "^20.1.5"
},
"keywords": [
"hapi",
"plugin",
"statsd",
"graphite",
"metrics",
"instrumentation",
"stats",
"request",
"round trip"
],
"engines": {
"node": ">=12.0.0"
},
"main": "./lib/hapi-statsd.js",
"repository": {
"type": "git",
"url": "git@github.com:mac-/hapi-statsd.git"
},
"scripts": {
"test": "nyc --reporter=text mocha test/integration"
},
"config": {
"travis-cov": {
"threshold": -1
}
},
"license": "MIT"
}