forked from winstonjs/winston-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.46 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
58
59
60
{
"name": "winston-mongodb",
"license": "MIT",
"version": "5.1.1",
"description": "A MongoDB transport for winston",
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"contributors": [
{
"name": "Yurij Mikhalevich",
"email": "yurij@mikhalevi.ch",
"url": "https://mikhalevi.ch/"
},
{
"name": "Kendrick Taylor",
"email": "sktayloriii@gmail.com"
},
{
"name": "Steve Dalby",
"email": "steve@stevedalby.co.uk"
}
],
"repository": {
"type": "git",
"url": "http://github.com/winstonjs/winston-mongodb.git"
},
"keywords": [
"logging",
"sysadmin",
"tools",
"winston",
"mongodb",
"log",
"logger"
],
"dependencies": {
"mongodb": "^3.6.2",
"winston-transport": "^4.4.0"
},
"peerDependencies": {
"winston": "^3.0.0"
},
"devDependencies": {
"abstract-winston-transport": "~0.5.1",
"@dabh/eslint-config-populist": "^5.0.0",
"dotenv": "^16.1.4",
"mocha": "^10.2.0",
"mongoose": "^5.10.5",
"winston": "^3.3.3"
},
"engines": {
"node": ">=6.8.1"
},
"main": "./lib/winston-mongodb",
"scripts": {
"lint": "eslint lib/*.js test/*.js --resolve-plugins-relative-to ./node_modules/@dabh/eslint-config-populist",
"test": "mocha test/*-test.js",
"test-rs": "WINSTON_MONGODB_URL='mongodb://localhost:27017,localhost:27018/winston?replicaSet=rs0' mocha test/*-test.js"
},
"typings": "./lib/winston-mongodb.d.ts"
}