forked from mac-/hapi-statsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.13 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "hapi-statsd",
"description": "A hapi plugin for sending request round trip metrics to statsd",
"contributors": [
"Mac Angell <[email protected]>"
],
"version": "7.0.0",
"dependencies": {
"statsd-client": "^0.2.4",
"hoek": "^5.0.2"
},
"devDependencies": {
"mocha": "^4.0.1",
"jshint": "^2.9.4",
"travis-cov": "0.x.x",
"blanket": "^1.2.3",
"hapi": "^17.0.0",
"coveralls": "^2.11.15",
"mocha-lcov-reporter": "^0.0.2"
},
"peerDependencies": {
"hapi": "^17.0.0"
},
"keywords": [
"hapi",
"plugin",
"statsd",
"graphite",
"metrics",
"instrumentation",
"stats",
"request",
"round trip"
],
"engines": {
"node": ">=8.0.0"
},
"main": "./lib/hapi-statsd.js",
"repository": {
"type": "git",
"url": "[email protected]:mac-/hapi-statsd.git"
},
"scripts": {
"test": "make test && make test-cov && make test-lcov | ./node_modules/coveralls/bin/coveralls.js"
},
"config": {
"blanket": {
"pattern": "//^((?!/node_modules/)(?!/test/).)*$/ig",
"onlyCwd": true,
"data-cover-flags": {
"branchTracking": true
}
},
"travis-cov": {
"threshold": -1
}
},
"license": "MIT"
}