-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 916 Bytes
/
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": "koa-router-cache",
"description": "Router cache middleware for koa.",
"version": "2.0.0",
"main": "lib/index.js",
"scripts": {
"test": "DEBUG=koa-generic-cache:* ./node_modules/.bin/mocha --harmony --no-timeouts test/*.js"
},
"keywords": [
"koa",
"router",
"route",
"routing",
"cache",
"memory",
"middleware"
],
"dependencies": {
"debug": "^2.6.0",
"ioredis": "^2.4.3",
"is-generator": "^1.0.3",
"memory-cache": "^0.1.6",
"ms": "^0.7.2",
"path-to-regexp": "^1.7.0"
},
"devDependencies": {
"async": "*",
"koa": "*",
"mocha": "*",
"supertest": "*"
},
"author": {
"name": "nswbmw",
"email": "nswbmw1992@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/nswbmw/koa-router-cache.git"
},
"bugs": {
"url": "https://github.com/nswbmw/koa-router-cache/issues"
}
}