-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.62 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@abslibs/mongoose-plugin",
"version": "1.0.7",
"description": "mongoose plugin for timestamps and soft delete.",
"main": "index.js",
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.18.0",
"mocha": "^6.1.4",
"prettier": "^1.18.2"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"mongoose": "^5.10.9"
},
"scripts": {
"dev": "node index.js",
"test": "mocha ./test",
"format": "prettier --write \"src/**/*.js\"",
"lint": "eslint **/*.js",
"prepare": "",
"prepublishOnly": "npm test",
"preversion": "npm run lint",
"version": "git add -A",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arpit-absyadav/mongoose-plugin.git"
},
"author": "Arpit Yadav <arpit.absyadav@gmail.com> (https://github.com/arpit-absyadav)",
"license": "MIT",
"bugs": {
"url": "https://github.com/arpit-absyadav/mongoose-plugin/issues"
},
"homepage": "https://github.com/arpit-absyadav/mongoose-plugin#readme",
"directories": {
"test": "test"
},
"keywords": [
"mongoose soft delete",
"mongoose delete",
"mongoose",
"soft",
"delete",
"remove",
"destroy",
"plugin",
"mongodb",
"mongoose",
"plugin",
"timestamps",
"createdAt",
"updatedAt",
"deletedAt",
"soft delete",
"mongoose paranoid",
"soft deletion of documents in MongoDB",
"soft deletion of documents in Mongoose"
]
}