forked from Nordstrom/metrics-client-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "metrics-client",
"version": "0.1.1",
"description": "Metrics Client to send metrics to Telegraf via different protocols with configuratable bufferring feature",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Nordstrom/metrics-client-node.git"
},
"scripts": {
"test": "snazzy && istanbul cover _mocha",
"lint": "snazzy",
"tdd": "mocha -w",
"ci": "snazzy && istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"files": [
"index.js",
"handlers/*",
"test/**",
"LICENSE",
"README.md"
],
"author": "Yun Wang(yunwang240)",
"license": "Apache-2.0",
"homepage": "https://github.com/Nordstrom/metrics-client-node#readme",
"dependencies": {
"bluebird": "^3.4.7",
"buffered-messenger-node": "^0.1.0",
"influx": "^5.0.4",
"lodash": "^4.17.2",
"require-directory": "^2.1.1",
"telegrafjs": "^0.1.3"
},
"devDependencies": {
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mock-udp": "^0.1.1",
"mockery": "^2.0.0",
"snazzy": "^5.0.0",
"standard": "^8.6.0"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach"
]
}
}