-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.61 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-s3-transport",
"version": "1.2.0",
"description": "Logs generated through Winston can be transferred to an S3 bucket using `winston-s3-transport`.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"pre-commit": "lint-staged",
"build": "tsc -p tsconfig.json",
"publish": "rm -rf ./dist ./.tsbuildinfo && npm run build && npm publish"
},
"contributors": [
"Yongwoo Jung<[email protected]"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.100.0",
"date-fns": "^2.28.0",
"node-gzip": "^1.1.2",
"winston-transport": "^4.5.0"
},
"devDependencies": {
"@types/node": "^17.0.40",
"@types/node-gzip": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^13.0.0",
"tsc": "^2.0.4",
"typescript": "^4.9.5"
},
"keywords": [
"winston",
"athena",
"s3",
"aws"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stegano/winston-s3-transport.git"
},
"bugs": {
"url": "https://github.com/stegano/winston-s3-transport/issues"
},
"homepage": "https://github.com/stegano/winston-s3-transport#readme"
}