forked from tj/connect-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 927 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
{
"name": "connect-redis",
"description": "Redis session store for Connect",
"version": "3.2.0",
"author": "TJ Holowaychuk <[email protected]>",
"contributors": [
"Marc Harter <[email protected]>"
],
"license": "MIT",
"main": "./index.js",
"repository": {
"type": "git",
"url": "[email protected]:visionmedia/connect-redis.git"
},
"dependencies": {
"debug": "^2.2.0",
"redis": "^2.1.0"
},
"devDependencies": {
"blue-tape": "^0.1.8",
"bluebird": "^2.3.2",
"eslint": "^1.6.0",
"express-session": "^1.9.1",
"ioredis": "^1.7.5",
"istanbul": "^0.3.2",
"tape": "^4.2.1"
},
"engines": {
"node": "*"
},
"bugs": {
"url": "https://github.com/visionmedia/connect-redis/issues"
},
"scripts": {
"test": "DEBUG=* istanbul cover tape \"test/*-test.js\"",
"bench": "node bench/redisbench.js",
"lint": "eslint index.js test lib bench"
}
}