-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 927 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 927 Bytes
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
{
"name": "fluent-rotate",
"version": "1.0.3",
"description": "FluentRotate is a logging agent that simplifies the handling of Fluentd and Fluent Bit logs with log rotating mechanism. It provides a log reception process using the HTTP protocol and offers convenient configurations for log storage, rotation, and CLI commands.",
"main": "src/index.js",
"scripts": {
"start": "node src/app.js",
"build": "pkg src/app.js -o fluent-rotate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boba-print/fluent-rotate.git"
},
"keywords": [],
"author": "@KYUUUW",
"license": "MIT License",
"bugs": {
"url": "https://github.com/boba-print/fluent-rotate/issues"
},
"homepage": "https://github.com/boba-print/fluent-rotate#readme",
"dependencies": {
"express": "^4.18.2",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1",
"yargs": "^17.7.2"
}
}