forked from koajs/koa-redis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "koa-session-ioredis",
"description": "koa session with ioredis using koa-generic-session",
"repository": "ortoo/koa-ioredis",
"bugs": {
"url": "https://github.com/ortoo/koa-ioredis/issues"
},
"homepage": "https://github.com/ortoo/koa-ioredis",
"version": "2.0.0",
"main": "index.js",
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha -- --require co-mocha \"test/**/*.test.js\"",
"test-only": "node_modules/.bin/mocha --require co-mocha \"test/**/*.test.js\"",
"autod": "autod -w --prefix=~"
},
"keywords": [
"koa",
"middleware",
"session",
"redis",
"ioredis"
],
"author": "James Sharp <[email protected]>",
"dependencies": {
"co-wrap-all": "^1.0.0",
"debug": "~2.2.0"
},
"peerDependencies": {
"ioredis": "^2.2.0"
},
"devDependencies": {
"autod": "2",
"co-mocha": "^1.1.2",
"connect": "~3.4.0",
"connect-redis": "~3.0.2",
"istanbul": "~0.4.1",
"koa": "~1.1.2",
"koa-generic-session": "~1.10.1",
"mocha": "^2.3.4",
"should": "^8.1.1"
},
"engines": {
"node": ">= 4"
},
"license": "MIT"
}