forked from winstonjs/winston-daily-rotate-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.4 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
{
"name": "@abtnode/winston-daily-rotate-file",
"publishConfig": {
"access": "public"
},
"version": "5.0.1",
"description": "A transport for winston which logs to a rotating file each day.",
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=8"
},
"scripts": {
"test": "mocha --ignore **/*.worker.js && eslint .",
"release": "release-script"
},
"repository": {
"type": "git",
"url": "[email protected]:winstonjs/winston-daily-rotate-file.git"
},
"keywords": [
"winston",
"daily-rotate-file",
"log-rotate",
"logrotate"
],
"author": "Charlie Robbins <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/winstonjs/winston-daily-rotate-file/issues"
},
"files": [
"daily-rotate-file.js",
"index.js",
"index.d.ts"
],
"homepage": "https://github.com/winstonjs/winston-daily-rotate-file#readme",
"peerDependencies": {
"winston": "^3"
},
"devDependencies": {
"@alcalzone/release-script": "^3.7.0",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"chai": "^4.4.1",
"eslint": "^8.56.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.2.0",
"rimraf": "^5.0.5",
"threads": "^1.7.0"
},
"dependencies": {
"@abtnode/file-stream-rotator": "^0.6.3",
"object-hash": "^3.0.0",
"triple-beam": "^1.4.1",
"winston-transport": "^4.7.0"
}
}