-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathpackage.json
55 lines (55 loc) · 1.36 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
{
"name": "node-logstash",
"description": "Logstash implementation in node JS",
"version": "0.0.5",
"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"
},
"license": "Apache-2.0",
"devDependencies": {
"vows": "0.8.0",
"vows-batch-retry": "0.0.4",
"js-beautify": "1.4.x",
"whereis": "0.4.x",
"jshint": "2.x",
"istanbul": "0.1.x",
"rimraf": "2.3.x",
"jison": "0.4.x"
},
"scripts": {
"test": "./test-runner.sh"
},
"dependencies": {
"log4node": "0.1.6",
"optimist": "0.6.1",
"mkdirp": "0.5.1",
"async": "0.9.0",
"lru-cache": "2.7.x"
},
"optionalDependencies":{
"aws-sdk": "2.7.x",
"amqplib": "0.4.0",
"zmq": "2.13.0",
"moment": "2.9.0",
"redis": "2.2.5",
"ws": "0.8.0",
"oniguruma": "5.1.x",
"msgpack": "1.0.x",
"geoip-lite": "1.1.6",
"maxmind": "0.6.x",
"maxmind-geolite-mirror": "1.0.x",
"http-proxy-agent": "1.x",
"https-proxy-agent": "1.x",
"lumberjack-protocol": "git://github.com/bpaquet/node-lumberjack-protocol.git",
"hep-js": "0.0.4"
},
"directories": {
"test": "./test",
"bin": "./bin"
}
}