-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "fast-file-rotate",
"version": "1.0.1",
"description": "A performant file transport providing daily log rotation for winston.",
"main": "lib/FileRotateTransport.js",
"dependencies": {
"daily-rotating-file-stream": "^1.0.0",
"winston-transport": "^4.2.0"
},
"devDependencies": {
"ava": "^3.0.0",
"fastbench": "^1.0.1",
"nyc": "^15.0.0",
"standard": "^15.0.0",
"winston": "^3.0.0",
"winston-daily-rotate-file": "^4.0.0"
},
"engines": {
"node": ">=10.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SerayaEryn/fast-file-rotate.git"
},
"scripts": {
"unit": "ava test/*.test.js",
"test": "npm run lint && npm run unit",
"lint": "standard lib/* test/*.js benchmark/*",
"coveralls": "nyc npm test",
"coverage": "nyc npm test && nyc report --reporter=html",
"benchmark": "node benchmark/Benchmark.js"
},
"keywords": [
"winston",
"log-rotate",
"logrotate",
"transport",
"daily",
"daily-rotate-file"
],
"author": "Denis Fäcke",
"license": "MIT",
"files": [
"lib"
]
}