forked from bithavoc/express-winston
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 1.91 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
{
"author": {
"name": "bithavoc",
"email": "[email protected]",
"url": "http://bithavoc.io"
},
"name": "express-winston",
"description": "express.js middleware for flatiron/winston",
"keywords": [
"winston",
"flatiron",
"logging",
"express",
"log",
"error",
"handler",
"middleware",
"colors"
],
"version": "2.1.1",
"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": {
"test": "node_modules/.bin/mocha --reporter spec",
"test-travis": "node_modules/.bin/mocha --require blanket --reporter travis-cov",
"test-coverage": "node_modules/.bin/mocha --require blanket --reporter html-cov > coverage.html || true"
},
"config": {
"travis-cov": {
"threshold": 100
},
"blanket": {
"pattern": [
"index.js"
],
"data-cover-never": [
"node_modules",
"test"
]
}
},
"dependencies": {
"chalk": "~0.4.0",
"lodash": "~4.11.1"
},
"devDependencies": {
"blanket": "^1.2.2",
"mocha": "^2.4.5",
"node-mocks-http": "^1.5.1",
"promise": "^7.1.1",
"should": "^8.2.2",
"travis-cov": "^0.2.5",
"winston": ">=1.x"
},
"peerDependencies": {
"winston": ">=1.x"
},
"engines": {
"node": ">=0.10.0"
},
"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"
}
]
}