forked from ahmadnassri/node-winston-tcp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 949 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
41
42
43
44
45
46
{
"version": "3.0.3",
"name": "winston-tcp-infinite",
"description": "TCP transport for Winston",
"author": "createmain <createmain@gmail.com>",
"homepage": "https://github.com/createmain/winston-tcp",
"repository": {
"type": "git",
"url": "https://github.com/createmain/winston-tcp.git"
},
"license": "ISC",
"main": "lib/index.js",
"keywords": [
"log",
"logging",
"logs",
"sysadmin",
"tcp",
"tools",
"transport",
"winston"
],
"engines": {
"node": ">=4"
},
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/createmain/winston-tcp/issues"
},
"scripts": {
"lint": "standard && echint",
"pretest": "npm run lint",
"test": "tap test",
"coverage": "tap test --reporter silent --coverage"
},
"devDependencies": {
"echint": "^4.0.1",
"standard": "^10.0.2",
"tap": "^12.0.0"
},
"dependencies": {
"winston": "^2.3.1"
}
}