-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 879 Bytes
/
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
{
"name": "bunyan-mongodb-logger",
"version": "1.0.0",
"description": "Logger for writing logs to MongoDB, files or output it's to stdout",
"main": "index.js",
"engines" : {
"node" : ">=8"
},
"scripts": {
"test": "cross-env NODE_ENV=test mocha \"test.js\" --exit",
"jshint": "./node_modules/.bin/jshint --exclude ./node_modules ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/abd2561024/bunyan-mongodb-logger.git"
},
"keywords": [
"bunyan",
"mongodb",
"logger"
],
"dependencies": {
"bunyan": "^1.8.12",
"mongodb": "3.1.13",
"stream-to-mongo-db": "^1.6.0"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"jshint": "^2.9.4",
"mocha": "^5.2.0"
},
"author": "Romahin Andrey <[email protected]> (https://github.com/abd2561024)",
"license": "MIT"
}