forked from wavded/graygelf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "graygelf",
"version": "1.2.0",
"description": "A complete GELF client, server, and proxy for Graylog2",
"main": "index.js",
"scripts": {
"test": "istanbul cover tape \"test/**/*-test.js\"",
"lint": "eslint --no-ignore test serve.js index.js",
"ci-test": "istanbul cover tape \"test/**/*-test.js\" > test.tap && istanbul report clover"
},
"keywords": [
"logging",
"graylog2",
"gelf",
"client",
"server",
"proxy"
],
"author": "Marc Harter <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/wavded/graygelf#readme",
"bugs": {
"url": "https://github.com/wavded/graygelf/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/wavded/graygelf.git"
},
"dependencies": {
"split": "^1.0.1"
},
"devDependencies": {
"eslint": "^4.9.0",
"eslint-config-adc": "^2.0.0",
"istanbul": "^0.4.5",
"tape": "^4.8.0"
},
"optionalDependencies": {
"microtime": "^2.0.1"
},
"engines": {
"node": ">= 0.10.0"
}
}