-
Notifications
You must be signed in to change notification settings - Fork 125
/
package.json
70 lines (70 loc) · 1.67 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
61
62
63
64
65
66
67
68
69
70
{
"name": "winston-mongodb",
"license": "MIT",
"version": "6.0.0",
"description": "A MongoDB transport for winston",
"author": "Charlie Robbins <[email protected]>",
"maintainers": [
"David Hyde <[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": "https://github.com/winstonjs/winston-mongodb.git"
},
"keywords": [
"logging",
"sysadmin",
"tools",
"winston",
"mongodb",
"log",
"logger"
],
"dependencies": {
"mongodb": "^6.5.0",
"winston-transport": "^4.4.0"
},
"peerDependencies": {
"winston": "^3.0.0"
},
"devDependencies": {
"@dabh/eslint-config-populist": "^5.0.0",
"abstract-winston-transport": "~0.5.1",
"dotenv": "^16.1.4",
"ip": "^2.0.1",
"mocha": "^10.2.0",
"mongodb-memory-server": "^9.1.4",
"mongoose": "^8.0.0",
"winston": "^3.3.3"
},
"engines": {
"node": ">=14.20.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 --exit",
"test-rs": "WINSTON_MONGODB_URL='mongodb://localhost:27017,localhost:27018/winston?replicaSet=rs0' mocha test/*-test.js"
},
"typings": "./lib/winston-mongodb.d.ts",
"config": {
"mongodbMemoryServer": {
"disablePostinstall": "1"
}
}
}