forked from bpaquet/node-logstash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 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
{
"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",
"jshint": "2.x",
"istanbul": "0.1.x"
},
"scripts": {
"test": "./test-runner.sh"
},
"dependencies": {
"log4node": "0.1.2",
"optimist": "0.3.4"
},
"optionalDependencies":{
"zmq": "2.5.1",
"moment": "1.7.0",
"redis": "0.8.x",
"msgpack": "0.1.8",
"geoip-lite": "1.1.x",
"tunnel": "0.0.2"
},
"directories": {
"test": "./test",
"bin": "./bin"
}
}