-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 919 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
40
{
"name": "winston-modern-syslog",
"version": "2.0.0",
"description": "A syslog transport for winston using the modern-syslog package",
"main": "lib/winston-modern-syslog.js",
"scripts": {
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "https://github.com/skybet/winston-modern-syslog"
},
"keywords": [
"winston",
"log",
"logger",
"transport",
"syslog",
"modern-syslog"
],
"author": "Alex Silcock",
"license": "MIT",
"bugs": {
"url": "https://github.com/skybet/winston-modern-syslog/issues"
},
"homepage": "https://github.com/skybet/winston-modern-syslog",
"dependencies": {
"modern-syslog": "^1.1.2"
},
"devDependencies": {
"mocha": "^3.0.2",
"rewire": "^2.5.1",
"should": "^11.1.0",
"sinon": "^1.17.3",
"winston": ">= 0.4.0 < 3.0.0"
},
"peerDependencies": {
"winston": ">= 0.4.0 < 3.0.0"
}
}