package.json
808 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
28
29
30
31
32
33
34
35
36
37
38
{
"name": "@codibre/winston-redis",
"description": "A fixed-length Redis transport for winston",
"version": "3.1.1",
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"repository": {
"type": "git",
"url": "git@github.com:winstonjs/winston-redis.git"
},
"keywords": [
"logging",
"sysadmin",
"tools",
"winston",
"redis"
],
"dependencies": {
"async": "^2.6.3",
"lodash": "^4.17.21",
"redis": "^3.1.2",
"winston-transport": "^4.4.1"
},
"devDependencies": {
"abstract-winston-transport": "^0.5.1",
"mocha": "^5.2.0"
},
"peerDependencies": {
"winston": "^3.3.3"
},
"main": "./lib/winston-redis",
"scripts": {
"test": "mocha test/*-test.js --exit"
},
"engines": {
"node": ">=8.11.x"
},
"license": "MIT"
}