-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 987 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
36
37
38
39
40
41
42
{
"name": "mongoose-softdelete",
"description": "Mongoose plugin that enables soft deletion of Models/Documents.",
"version": "1.2.0",
"type": "module",
"homepage": "http://riyadhalnur.github.io/mongoose-softdelete",
"keywords": [
"mongoose",
"plugin",
"soft delete",
"delete",
"remove",
"restore"
],
"author": {
"name": "Riyadh Al Nur",
"email": "[email protected]",
"url": "https://verticalaxisbd.com"
},
"repository": {
"type": "git",
"url": "[email protected]:riyadhalnur/mongoose-softdelete.git"
},
"bugs": {
"url": "https://github.com/riyadhalnur/mongoose-softdelete/issues"
},
"license": "MIT",
"main": "src/mongoose-softdelete",
"types": "index.d.ts",
"engines": {
"node": ">= 12.x"
},
"devDependencies": {
"@types/mongoose": "5.7.36",
"mocha": "8.1.1",
"mongoose": "5.10.0",
"should": "13.2.3"
},
"scripts": {
"test": "mocha tests/tests.js --exit"
}
}