-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "mongoose-redis-caching",
"version": "1.13.2",
"description": "A simple caching solution for Mongoose working with Redis.",
"main": "index.js",
"scripts": {
"test": "echo 'no tests'",
"format": "prettier --tab-width 2 --print-width 100 --write index.js",
"postversion": "git push && git push --tags"
},
"husky": {
"hooks": {
"pre-commit": "yarn format"
}
},
"repository": {
"type": "git",
"url": "https://github.com/pedreviljoen/mongoose-redis-caching.git"
},
"keywords": [
"mongoose-redis-caching",
"redis caching",
"mongoose caching",
"mongoose",
"caching",
"redis"
],
"author": "Pedre Viljoen",
"license": "MIT",
"bugs": {
"url": "https://github.com/pedreviljoen/mongoose-redis-caching/issues"
},
"homepage": "https://github.com/pedreviljoen/mongoose-redis-caching#readme",
"dependencies": {
"dotenv": "8.2.0",
"mongoose": "5.13.14",
"redis": "3.1.1"
},
"devDependencies": {
"husky": "3.1.0",
"prettier": "1.19.1"
}
}