-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "mmhf",
"version": "1.5.3",
"description": "MMHF (Mongoose Middleware Handlers Factory) Is a package of Express middlewares to quickly perform the daily CRUD operations, catching the errors internally and sending unified formats of responses to the clients.",
"main": "./src/index.js",
"scripts": {
"test": "nodemon -q ./tests/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samislam/mmhf.git"
},
"keywords": [
"express-middleware",
"express-middlewares",
"expressJS",
"expressJs-middlewares",
"expressJs-middleware",
"factory",
"handlersFactory",
"handlers-factory",
"mmhf",
"mongoose-middleware-handlers-factory",
"mongoose-middlewares-handlers-factory",
"mongoose",
"mongoose-handlers",
"mongoose-controllers"
],
"author": "Islam Yamor",
"bugs": {
"url": "https://github.com/samislam/mmhf/issues"
},
"homepage": "https://github.com/samislam/mmhf#readme",
"license": "ISC",
"dependencies": {
"@samislam/checktypes": "^1.0.1",
"@samislam/log": "^1.1.4",
"@samislam/sendres": "^1.0.1",
"@samislam/switcher": "^2.0.1",
"express": "^4.18.1",
"lodash": "^4.17.21",
"mongoose": "^6.5.0",
"setdoc": "^6.0.0",
"traverse": "^0.6.6",
"uniqid": "^5.4.0"
},
"devDependencies": {
"nodemon": "^2.0.19"
},
"prettier": {
"tabWidth": 2,
"printWidth": 140,
"semi": false,
"singleQuote": true
}
}