-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.45 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
60
61
{
"name": "logbus",
"version": "0.1.0",
"description": "Log shipper written in Node",
"directories": {
"test": "test"
},
"scripts": {
"semantic-release": "semantic-release pre && semantic-release post"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/skorpworks/logbus"
},
"bugs": {
"url": "https://github.com/skorpworks/logbus/issues"
},
"keywords": [
"log management",
"log parser",
"logging",
"log shipper",
"elasticsearch",
"indexing"
],
"homepage": "https://github.com/skorpworks/logbus",
"license": "Apache-2.0",
"dependencies": {
"bunyan": "^1.8.5",
"docopt": "^0.6.2",
"eventemitter3": "^1.2.0",
"glob": "^6.0.4",
"js-yaml": "^3.3.1",
"lodash": "^4.17.13",
"moment": "^2.10.3",
"object-sizeof": "^1.1.1",
"safe-buffer": "^5.1.1",
"simple-get": "^2.4.0",
"split2": "^2.1.0",
"stream-throttle": "^0.1.3",
"sync-request": "^4.0.3",
"tail-forever": "^0.3.13"
},
"optionalDependencies": {
"elasticsearch": "^13.0.1",
"maxmind-db-reader": "^0.2.1",
"node-rdkafka": "^2.1.1"
},
"devDependencies": {
"eslint": "^4.7.2",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jsdoc": "^3.4.2",
"nyc": "^11.2.1",
"semantic-release": "^7.0.2"
}
}