-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"name": "mongoose-morgan",
"description": "Used to log morgan stream data into MongoDb database.",
"version": "1.0.17",
"author": "Nemanja Petrovic <nempet.com>",
"keywords": [
"morgan",
"log",
"logger",
"mongo",
"mongodb",
"error",
"express",
"http"
],
"license": "MIT",
"dependencies": {
"carrier": "0.3.0",
"mongoose": "^5.11.13",
"morgan": "^1.10.0",
"stream": "0.0.2"
},
"devDependencies": {
"express": "^4.17.1",
"supertest": "^6.1.1",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"semistandard": "14.2.3"
},
"main": "index.js",
"engines": {
"node": ">=4.0.0"
},
"bugs": {
"url": "https://github.com/nemanjapetrovic/mongoose-morgan/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/nemanjapetrovic/mongoose-morgan.git"
},
"homepage": "https://github.com/nemanjapetrovic/mongoose-morgan/",
"scripts": {
"lint": "semistandard",
"lint-fix": "semistandard --fix",
"test": "mocha --timeout 10000 test/*.test.js test/**/*.test.js"
},
"types": "types/index.d.ts"
}