-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 992 Bytes
/
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
{
"name": "lumberjack-protocol",
"description": "Node.js implementation of the lumberjack protocol.",
"keywords": [
"logstash",
"logstash forwarder",
"lumberjack",
"lumberjack protocol",
"logs"
],
"version": "1.0.7",
"author": "Jason Walton <[email protected]> (https://github.com/jwalton)",
"license": "MIT",
"scripts": {
"prepublish": "coffee -c -o lib src && mocha test",
"test": "mocha && istanbul report text-summary lcov",
"clean": "rm -rf coverage lib node_modules"
},
"main": "./lib/index.js",
"directories": {
"lib": "./lib"
},
"repository": {
"type": "git",
"url": "https://github.com/benbria/node-lumberjack-protocol"
},
"dependencies": {},
"devDependencies": {
"chai": "^3.4.1",
"coffee-coverage": "^0.7.0",
"coffee-script": "^1.8.0",
"coveralls": "^2.11.2",
"istanbul": "^0.4.1",
"mocha": "^2.3.4",
"sinon": "^1.17.2"
},
"engines": {
"node": ">=0.10.1"
}
}