forked from vodolaz095/express-view-cache
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "express-view-cache",
"version": "0.1.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": ">=0.10.32",
"npm": ">=1.4.3"
},
"os": [ "linux", "darwin" ],
"scripts": {
"start": "node example/expressAppWithCache.js",
"test": "./node_modules/.bin/mocha --reporter spec",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha"
},
"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":"0.9.0",
"redis": "2.6.0-2",
"request": "2.48.0"
},
"optionalDependencies":{
"hiredis":"*"
},
"devDependencies": {
"express": "4.10.2",
"errorhandler": "1.2.2",
"morgan": "1.5.0",
"mocha": "2.0.1",
"should": "4.2.1"
},
"keywords": [
"express",
"view",
"cache",
"redis",
"caching"
],
"license": "MIT",
"readmeFilename": "README.md"
}