forked from winstonjs/winston-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.02 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
{
"name": "winston-mongodb",
"license": "MIT",
"version": "2.0.9",
"description": "A MongoDB transport for winston",
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"contributors": [
{"name": "Yurij Mikhalevich", "email": "0@39.yt", "url": "https://39.yt/"},
{"name": "Kendrick Taylor", "email": "sktayloriii@gmail.com"},
{"name": "Steve Dalby", "email": "steve@stevedalby.co.uk"}
],
"repository": {
"type": "git",
"url": "http://github.com/indexzero/winston-mongodb.git"
},
"keywords": ["logging", "sysadmin", "tools", "winston", "mongodb", "log", "logger"],
"dependencies": {
"mongodb": "^2.2.19"
},
"devDependencies": {
"winston": ">=1.1.1 <3.0.0",
"vows": "~0.8.1"
},
"engines": {"node" : ">=6.8.1"},
"main": "./lib/winston-mongodb",
"scripts": {
"test": "vows test/*-test.js --spec",
"test-rs": "WINSTON_MONGODB_URL='mongodb://localhost:27017,localhost:27018/winston?replicaSet=rs0' vows test/*-test.js --spec"
},
"typings": "./lib/winston-mongodb.d.ts"
}