forked from arash16/nuxt-ssr-cache
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 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
45
{
"name": "nuxt-ssr-cache",
"version": "1.5.2",
"description": "Cache middleware for nuxt's SSR rendering.",
"main": "lib/middleware.js",
"scripts": {
"build": "babel src --out-dir lib",
"test": "yarn mocha -r chai/register-expect tests",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/arash16/nuxt-ssr-cache.git"
},
"keywords": [
"nuxt",
"ssr",
"cache",
"redis",
"vue",
"spa"
],
"author": "Arash Shakery <[email protected]> (arash16.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/arash16/nuxt-ssr-cache/issues"
},
"homepage": "https://github.com/arash16/nuxt-ssr-cache#readme",
"dependencies": {
"bluebird": "^3.5.5",
"cache-manager": "^2.9.1",
"redis": "^2.8.0"
},
"optionalDependencies": {
"cache-manager-memcached-store": "^2.1.0",
"cache-manager-redis": "^0.6.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"chai": "^4.2.0",
"mocha": "^6.1.4"
}
}