forked from bpaquet/node-logstash
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 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
{
"name": "node-logstash",
"description": "Logstash implementation in node JS",
"version": "0.0.3",
"author": "Bertrand Paquet <[email protected]>",
"keywords": ["logstash", "log", "zmq", "zeromq"],
"main": "./lib/log4node.js",
"homepage": "https://github.com/bpaquet/node-logstash",
"repository": {
"type": "git",
"url": "git://github.com/bpaquet/node-logstash.git"
},
"licenses": [
{
"type": "Apache2",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"devDependencies": {
"vows": "0.7.0",
"vows-batch-retry": "0.0.4",
"whereis": "0.0.2"
},
"scripts": {
"test": "./test-runner.sh",
"install": "node_modules\\.bin\\winser -i",
"uninstall": "node_modules\\.bin\\winser -r"
},
"dependencies": {
"log4node": "0.1.2",
"optimist": "0.3.4"
},
"optionalDependencies":{
"zmq": "2.3.x",
"moment": "1.7.0",
"redis": "0.8.x",
"msgpack": "0.1.8",
"tail": "0.2.x"
"linestream": "0.3.x",
"rabbit.js": "0.2.x",
"winser": "0.0.x",
"tedious": "0.0.x"
},
"directories": {
"test": "./test",
"bin": "./bin"
}
}