This repository was archived by the owner on Jul 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 KB
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": "bigstats",
"version": "0.5.0",
"description": "Push BIG-IP stats to remote logging services. Supports http, https, statsd, and Apache Kafka destinations.",
"main": "bigstats.js",
"scripts": {
"test": "./node_modules/.bin/mocha ./TEST/UNIT/ --recursive --reporter spec",
"coverage": "./node_modules/istanbul/lib/cli.js cover --config ./istanbul.yml --X ./node_modules/.bin/_mocha ./TEST/UNIT/ -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/f5devcentral/BigStats.git"
},
"keywords": [
"big-ip",
"statsd",
"kafka",
"f5"
],
"author": "npearce",
"license": "MIT",
"bugs": {
"url": "https://github.com/f5devcentral/BigStats/issues"
},
"homepage": "https://github.com/f5devcentral/BigStats#readme",
"dependencies": {
"ajv": "~6.5.3",
"handlebars": "~4.0.12",
"kafka-node": "2.6.1",
"node-statsd": "~0.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.1.0",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"mocha": "^5.0.5",
"proxyquire": "^2.1.0",
"request": "^2.83.0",
"request-promise": "^4.2.1",
"sinon": "^6.3.4"
}
}