-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·53 lines (53 loc) · 1.33 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
{
"name": "log4bro",
"version": "3.18.0",
"description": "easy ELK logger with compliant output format, based on bunyan.",
"main": "index.js",
"scripts": {
"start": "node ./example/index.js",
"log": "node ./example/log.js",
"express": "node ./example/express_example.js",
"test": "istanbul cover _mocha -- --recursive --timeout 12500 -R spec test/unit && istanbul check-coverage --statements 40"
},
"repository": {
"type": "git",
"url": "https://github.com/micro-tools/log4bro.git"
},
"keywords": [
"logger",
"simple",
"microservice logging",
"logging",
"log4bro",
"access log",
"elk",
"elastic",
"logstash",
"kibana"
],
"author": "Christian Fröhlingsdorf <chris@5cf.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/micro-tools/log4bro"
},
"homepage": "https://github.com/micro-tools/log4bro",
"dependencies": {
"bunyan": "~1.8.14",
"chalk": "~4.1.0",
"graceful-fs": "~4.2.4",
"morgan": "~1.10.0",
"uuid": "~8.3.1"
},
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/express": "^4.17.8",
"express": "^4.17.1",
"intercept-stdout": "~0.1.2",
"istanbul": "~0.4.5",
"mocha": "~8.1.3",
"request": "^2.88.2"
},
"optionalDependencies": {
"@google-cloud/logging-bunyan": "^3.0.1"
}
}