-
Notifications
You must be signed in to change notification settings - Fork 186
/
package.json
93 lines (93 loc) · 1.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"author": {
"name": "bithavoc",
"email": "[email protected]",
"url": "http://bithavoc.io"
},
"name": "express-winston",
"description": "express.js middleware for winstonjs/winston",
"keywords": [
"winston",
"logging",
"express",
"log",
"error",
"handler",
"middleware",
"colors"
],
"version": "4.2.0",
"repository": {
"type": "git",
"url": "https://github.com/bithavoc/express-winston.git"
},
"bugs": {
"url": "http://github.com/bithavoc/express-winston/issues",
"email": "[email protected]"
},
"main": "index.js",
"scripts": {
"pretest": "eslint .",
"test": "node_modules/.bin/mocha --reporter spec"
},
"dependencies": {
"chalk": "^2.4.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/express": "^4.17.1",
"@types/logform": "^1.2.0",
"eslint": "^5.16.0",
"mocha": "^5.2.0",
"node-mocks-http": "^1.5.1",
"nyc": "^14.1.1",
"should": "^13.2.3",
"winston": ">=3.x <4",
"winston-transport": "^4.2.0"
},
"peerDependencies": {
"winston": ">=3.x <4"
},
"engines": {
"node": ">= 6"
},
"files": [
"index.js",
"index.d.ts",
"AUTHORS",
"LICENSE",
"CHANGELOG.md",
"Readme.md",
".npmrc"
],
"license": "MIT",
"contributors": [
{
"name": "Lars Jacob",
"url": "http://jaclar.net"
},
{
"name": "Jonathan Lomas",
"url": "http://floatinglomas.ca"
},
{
"name": "Xavier Damman",
"url": "http://xdamman.com"
},
{
"name": "Quentin Rossetti",
"email": "[email protected]"
},
{
"name": "Robbie Trencheny",
"email": "[email protected]",
"url": "http://robbie.io"
},
{
"name": "Matt Morrissette",
"email": "[email protected]",
"url": "https://github.com/yinzara"
}
],
"types": "index.d.ts"
}