-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 916 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
{
"name": "nodejs-logging",
"version": "1.0.0",
"description": "Node.js logging libraries quick examples",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geshan/nodejs-logging.git"
},
"keywords": [
"node.js",
"logging",
"winston",
"bunyan",
"pino",
"loglevel",
"npmlog"
],
"author": "Geshan Manandhar",
"license": "ISC",
"bugs": {
"url": "https://github.com/geshan/nodejs-logging/issues"
},
"homepage": "https://github.com/geshan/nodejs-logging#readme",
"dependencies": {
"bunyan": "^1.8.15",
"express": "^4.17.1",
"express-bunyan-logger": "^1.3.3",
"express-pino-logger": "^5.0.0",
"express-winston": "^4.0.5",
"loglevel": "^1.7.1",
"npmlog": "^4.1.2",
"pino": "^6.11.0",
"winston": "^3.3.3"
}
}