forked from micro-tools/log4bro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·41 lines (41 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
41
{
"name": "log4bro",
"version": "3.0.0",
"description": "no-brain logger with compliant output format, based on bunyan.",
"main": "index.js",
"scripts": {
"start": "node ./src/example/index.js",
"test": "node ./src/example/test.js",
"express": "node ./src/example/express_example.js"
},
"repository": {
"type": "git",
"url": "https://github.com/krystianity/log4bro.git"
},
"keywords": [
"logger",
"simple",
"microservice logging",
"logging",
"log4bro",
"access log"
],
"author": "Christian Fröhlingsdorf <chris@5cf.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/krystianity/log4bro"
},
"homepage": "https://github.com/krystianity/log4bro",
"dependencies": {
"chalk": "~1.1.1",
"bunyan": "~1.8.5",
"graceful-fs": "~4.1.11",
"morgan": "~1.8.1",
"uuid": "~3.0.1",
"continuation-local-storage": "~3.2.0"
},
"devDependencies": {
"express": "*",
"request": "*"
}
}