forked from winstonjs/winston-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.27 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": "winston-mongodb",
"license": "MIT",
"version": "5.0.7",
"description": "A MongoDB transport for winston",
"author": "Charlie Robbins <[email protected]>",
"contributors": [
{
"name": "Yurij Mikhalevich",
"email": "[email protected]",
"url": "https://mikhalevi.ch/"
},
{
"name": "Kendrick Taylor",
"email": "[email protected]"
},
{
"name": "Steve Dalby",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "http://github.com/indexzero/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",
"mocha": "^7.2.0",
"mongoose": "^5.10.5",
"winston": "^3.3.3"
},
"engines": {
"node": ">=6.8.1"
},
"main": "./lib/winston-mongodb",
"scripts": {
"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"
}