This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
forked from sazze/winston-logstash-udp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.6 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
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "winston-logstash-udp",
"version": "0.3.0",
"description": "A Logstash UDP transport for winston",
"main": "./lib/winston-logstash-udp",
"homepage": "https://github.com/uShip/winston-logstash-udp",
"scripts": {
"build": "tsc",
"test": "run-s build test:run",
"test:run": "mocha test/*_test.js",
"type-check": "tsc --noEmit",
"sample": "node example/test-log.js",
"format": "prettier --write {lib,test}/**/*.{ts,js}"
},
"engines": {
"node": ">=8.x",
"npm": ">=5.x"
},
"repository": {
"type": "git",
"url": "https://github.com/uShip/winston-logstash-udp.git"
},
"peerDependencies": {
"winston": "3.x"
},
"dependencies": {
"json-cycle": "^1.3.0"
},
"devDependencies": {
"@types/node": "^10.12.18",
"@types/winston": "^2.4.4",
"chai": ">=1.5.0",
"mocha": ">=1.8.2",
"npm-run-all": "^4.1.5",
"prettier": "1.15.3",
"rollup": "^0.68.1",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"typescript": "^3.2.2",
"winston": "^3.1.0",
"winston-transport": "^4.2.0"
},
"keywords": [
"logging",
"sysadmin",
"tools",
"winston",
"logstash",
"udp"
],
"bugs": {
"url": "https://github.com/uShip/winston-logstash-udp/issues"
},
"author": {
"name": "Richard Simpson",
"email": "[email protected]"
},
"license": "MIT",
"contributors": [
{
"name": "Richard Simpson",
"email": "[email protected]"
},
{
"name": "Craig Thayer",
"email": "[email protected]"
},
{
"name": "mbrevoort"
},
{
"name": "devAsterisk",
"email": "[email protected]"
},
{
"name": "Anis Safine",
"email": "[email protected]"
},
{
"name": "Pierre Inglebert",
"email": "[email protected]"
},
{
"name": "Kevin Danielo",
"email": "[email protected]"
},
{
"name": "RidgeA",
"url": "https://github.com/RidgeA"
},
{
"name": "Metál Ádám",
"email": "[email protected]"
}
],
"maintainers": [
{
"name": "Richard Simpson",
"email": "[email protected]"
}
],
"prettier": {
"tabWidth": 4,
"trailingComma": "es5"
}
}