-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 898 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
{
"name": "node-mdc-example",
"version": "0.0.0",
"description": "Example implementation of a java-like Mapped Diagnostic Context (MDC) for logging contextual information in a Web application",
"main": "app.js",
"private": true,
"scripts": {
"start": "node ./bin/www"
},
"dependencies": {
"bunyan": "^1.0.1",
"continuation-local-storage": "^3.1.1",
"cuid": "^1.2.4",
"express": "~4.8.6",
"express-session": "^1.7.6"
},
"repository": {
"type": "git",
"url": "git://github.com/ndemengel/node-mdc-example.git"
},
"keywords": [
"mdc",
"context",
"logging",
"web",
"express",
"bunyan",
"continuation-local-storage"
],
"author": "Nicolas Demengel",
"license": "ISC",
"bugs": {
"url": "https://github.com/ndemengel/node-mdc-example/issues"
},
"homepage": "https://github.com/ndemengel/node-mdc-example"
}