forked from pinojs/pino-gelf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1 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
{
"name": "pino-gelf",
"version": "2.0.0",
"description": "Convert Pino logs to GELF format and gzip ready for upload to Graylog",
"main": "index.js",
"bin": {
"pino-gelf": "index.js"
},
"preferGlobal": true,
"scripts": {
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"pretest": "eslint . --ext .js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pinojs/pino-gelf.git"
},
"author": "Donald Robertson <drobertson@findmypast.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pinojs/pino-gelf/issues"
},
"homepage": "https://github.com/pinojs/pino-gelf#readme",
"dependencies": {
"commander": "^9.4.1",
"fast-json-parse": "^1.0.3",
"fast-json-stringify": "^1.15.2",
"lodash": "^4.17.21",
"pump": "^3.0.0",
"readable-stream": "^4.3.0",
"split2": "^4.1.0",
"through2": "^4.0.2"
},
"devDependencies": {
"eslint": "^8.31.0",
"jest": "^29.3.1"
}
}