forked from jaakkos/winston-logstash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.92 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
{
"name": "winston-logstash",
"version": "1.2.1",
"description": "A Logstash transport for winston",
"main": "./lib/winston-logstash",
"types": "./types/src/winston-logstash.d.ts",
"homepage": "https://github.com/jaakkos/winston-logstash",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"watch": "babel src --out-dir lib --extensions '.ts' --watch",
"build": "babel src --out-dir lib --extensions '.ts'",
"build-ts": "tsc",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"files": [
"lib/"
],
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/jaakkos/winston-logstash.git"
},
"peerDependencies": {
"winston": "^0.7.3 || ^1.0.0 || ^2.0.0 || ^3.0.0"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.20.2",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@jest/globals": "29.3.1",
"@types/jest": "29.2.2",
"auto-changelog": "*",
"chai": "4.3.6",
"eslint": "8.26.0",
"eslint-config-google": "0.14.0",
"jest": "29.3.1",
"mocha": "10.1.0",
"timekeeper": "2.2.0",
"ts-jest": "29.0.3",
"ts-loader": "9.4.1",
"typescript": "4.8.4",
"winston": "^0.7.3 || ^1.0.0 || ^2.0.0 "
},
"keywords": [
"logging",
"sysadmin",
"tools"
],
"bugs": {
"url": "https://github.com/jaakkos/winston-logstash/issues"
},
"author": "Jaakko Suutarla <jaakko@suutarla.com>",
"license": "MIT",
"contributors": [
"Jaakko Suutarla <jaakko@suutarla.com>",
"Chris Saylor <cjsaylor@gmail.com>",
"djmax",
"gwhitelaw",
"Ivan Fraixedes",
"kgoerlitz",
"Akta3d",
"KamalAman"
],
"maintainers": [
"Jaakko Suutarla <jaakko@suutarla.com>"
],
"directories": {
"doc": "docs",
"test": "test"
},
"dependencies": {
"winston-transport": "4.5.0"
}
}