-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "soft-delete-plugin-mongoose",
"version": "1.0.15",
"description": "a mongoose plugin that allows you to soft delete documents and restore them (for JS & TS)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"clean": "del .\\dist\\*",
"build": "npm run clean && tsc",
"test": "jest"
},
"keywords": [
"mongoose",
"soft delete mongoose",
"soft delete mongodb",
"mongoose typescript",
"mongoose",
"typescript",
"mongoose soft delete typescript",
"mongoose soft delete nestjs"
],
"author": "Nour KAROUI",
"repository": {
"type": "git",
"url": "git+https://github.com/nour-karoui/mongoose-soft-delete"
},
"bugs": {
"url": "https://github.com/nour-karoui/mongoose-soft-delete/issues"
},
"homepage": "https://github.com/nour-karoui/mongoose-soft-delete",
"license": "MIT",
"peerDependencies": {
"mongoose": "^7.6.1"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"jest": "^29.4.0",
"ts-jest": "^29.0.5",
"typescript": "^4.2.3"
}
}