-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 936 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
{
"name": "express-logger-prod",
"version": "2.0.0",
"description": "The Logger for Express in production. It builds on the built-in Express logger. It will automatically rotate your logs and archive the old logs daily.",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Bunlong",
"license": "MIT",
"devDependencies": {
"jest": "^23.5.0",
"morgan": "^1.9.0"
},
"dependencies": {
"datetime": "0.0.3",
"express": "^4.16.3",
"rotating-file-stream": "^1.3.7"
},
"keywords": [
"express",
"logger",
"prod",
"production"
],
"bugs": {
"url": "https://github.com/themodernjavascript/express-logger-prod/issues/new"
},
"homepage": "https://github.com/themodernjavascript/express-logger-prod",
"repository": {
"type": "git",
"url": "https://github.com/themodernjavascript/express-logger-prod.git"
}
}