-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
96 lines (96 loc) · 1.75 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
{
"name": "winston-graylog2",
"description": "A graylog2 transport for winston",
"version": "2.1.2",
"author": "Started by: Flite, Inc. http://www.flite.com, mantained by: Namshi http://namshi.com",
"contributors": [
{
"name": "Luciano Colosio"
},
{
"name": "Phil Kates"
},
{
"name": "Clay Smith"
},
{
"name": "krivchun"
},
{
"name": "Ville Lautanala"
},
{
"name": "Alessandro Nadalin"
},
{
"name": "Róbert Oroszi"
},
{
"name": "Clay Smith"
},
{
"name": "Arttu Tervo"
},
{
"name": "Ivan Batic"
},
{
"name": "Blake Harley"
},
{
"name": "Pavel Ivanov",
"email": "[email protected]",
"url": "https://schfkt.github.io/"
},
{
"name": "potatopankakes"
}
],
"dependencies": {
"graylog2": "^0.2.1",
"winston": "^3.2.0",
"winston-transport": "^4.3.0"
},
"devDependencies": {
"eslint": "^5.12.1",
"eslint-config-google": "^0.11.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.1",
"logform": "^2.1.0",
"mocha": "*",
"prettier": "^1.16.1"
},
"engines": {
"node": ">= 10.0.0"
},
"keywords": [
"logging",
"sysadmin",
"tools",
"winston",
"graylog2"
],
"license": "MIT",
"main": "./lib/winston-graylog2",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "http://github.com/flite/winston-graylog2.git"
},
"scripts": {
"test": "mocha -b --exit",
"lint": "eslint lib/ test/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"npm run test"
]
}
}