-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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
{
"name": "winston-firehose",
"version": "4.0.0-next.0",
"description": "Winston logging transport for logging into Amazon AWS Firehose.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "npx rimraf dist/",
"lint": "npx eslint .",
"test": "npx jest",
"build": "tsc",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pkallos/winston-firehose.git"
},
"keywords": [
"winston",
"firehose"
],
"author": "Phil Kallos",
"license": "ISC",
"bugs": {
"url": "https://github.com/pkallos/winston-firehose/issues"
},
"homepage": "https://github.com/pkallos/winston-firehose#readme",
"dependencies": {
"@aws-sdk/client-firehose": "^3.316.0",
"triple-beam": "^1.3.0",
"winston-transport": "^4.5.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"jest": "^29.5.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsx": "^3.12.6",
"typescript": "^5.0.4",
"winston": "^3.8.2"
},
"peerDependencies": {
"winston": "^3.8.2"
},
"files": [
"/dist"
]
}