forked from skorpworks/logbus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.5 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
62
63
64
65
66
67
68
69
{
"name": "logbus",
"version": "0.9.1",
"description": "A log processor that supports user-defined pipelines.",
"directories": {
"test": "test"
},
"scripts": {
"semantic-release": "semantic-release pre && semantic-release post"
},
"main": "index.js",
"bin": {
"logbus": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/erik-stephens/logbus"
},
"bugs": {
"url": "https://github.com/erik-stephens/logbus/issues"
},
"jest": {
"roots": [
"./lib"
],
"testMatch": [
"**/*-spec.js"
]
},
"keywords": [
"log management",
"log parser",
"logging",
"etl",
"log shipper",
"elasticsearch",
"indexing"
],
"homepage": "https://github.com/erik-stephens/logbus",
"license": "Apache-2.0",
"dependencies": {
"bluebird": "3.7.x",
"bunyan": "1.8.x",
"docopt": "0.6.x",
"glob": "7.1.x",
"js-yaml": "4.1.x",
"js-yaml-js-types": "1.0.x",
"lodash": "4.17.x",
"moment": "2.29.x",
"object-sizeof": "1.6.x",
"split2": "3.2.x",
"stream-throttle": "0.1.x",
"superagent": "6.1.x",
"tail-forever": "0.3.x"
},
"devDependencies": {
"eslint": "7.x",
"eslint-config-standard": "10.x",
"eslint-plugin-import": "2.7.x",
"eslint-plugin-jest": "24.x",
"eslint-plugin-node": "5.x",
"eslint-plugin-promise": "3.x",
"eslint-plugin-standard": "3.x",
"jest": "27.x",
"jsdoc": "3.6.x",
"nock": "13.1.x",
"semantic-release": "17.x"
}
}