forked from bpaquet/node-logstash
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.2 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.2 KB
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
{
"name": "node-logstash",
"description": "Logstash implementation in node JS",
"version": "0.0.3",
"author": "Bertrand Paquet <bertrand.paquet@gmail.com>",
"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.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"
},
"scripts": {
"test": "./test-runner.sh"
},
"dependencies": {
"log4node": "0.1.6",
"optimist": "0.6.1",
"mkdirp": "0.5.1",
"async": "0.9.0"
},
"optionalDependencies":{
"aws-lib": "0.0.6",
"amqplib": "0.3.2",
"zmq": "2.10.0",
"moment": "2.9.0",
"redis": "0.12.1",
"ws": "0.7.1",
"oniguruma": "4.0.0",
"msgpack": "0.2.6",
"geoip-lite": "1.1.6",
"proxying-agent": "0.1.7"
},
"directories": {
"test": "./test",
"bin": "./bin"
}
}