-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
49 lines (49 loc) · 1.2 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
{
"name": "express-view-cache",
"version": "0.2.1",
"description": "Unobtrusive solution to express framework - cache rendered page on server side in redis database, without unnecessary database requests and rendering.",
"main": "index.js",
"engines": {
"node": ">=14.18.1",
"npm": ">=6.14.15"
},
"scripts": {
"start": "node example/expressAppWithCache.js",
"lint": "eslint test/*.js example/*.js *.js",
"test": "mocha --exit --reporter spec"
},
"repository": {
"type": "git",
"url": "[email protected]:vodolaz095/express-view-cache.git"
},
"bugs": {
"url": "https://github.com/vodolaz095/express-view-cache/issues"
},
"author": {
"name": "Anatolij Ostroumov",
"url": "https://github.com/vodolaz095",
"email": "[email protected]"
},
"dependencies": {
"async": "^3.2.1",
"redis": "^3.1.2"
},
"devDependencies": {
"errorhandler": "^1.5.1",
"eslint": "^8.1.0",
"express": "^4.17.1",
"mocha": "^9.1.3",
"morgan": "^1.10.0",
"request": "^2.88.2",
"should": "^13.2.3"
},
"keywords": [
"express",
"view",
"cache",
"redis",
"caching"
],
"license": "MIT",
"readmeFilename": "README.md"
}