forked from tj/connect-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1011 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
{
"name": "connect-redis",
"description": "Redis session store for Connect",
"version": "3.3.3",
"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": "^3.1.0",
"redis": "^2.6.0"
},
"devDependencies": {
"blue-tape": "^1.0.0",
"bluebird": "^3.5.0",
"eslint": "^3.19.0",
"express-session": "^1.9.1",
"ioredis": "^2.5.0",
"istanbul": "^0.4.5",
"sinon": "^2.3.4",
"tape": "^4.2.1"
},
"engines": {
"node": "*"
},
"bugs": {
"url": "https://github.com/visionmedia/connect-redis/issues"
},
"scripts": {
"test": "istanbul cover tape \"test/*-test.js\"",
"test-debug": "DEBUG=* istanbul cover tape \"test/*-test.js\"",
"bench": "node bench/redisbench.js",
"lint": "eslint index.js test lib bench"
}
}