forked from tj/connect-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 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": "connect-redis",
"description": "Redis session store for Connect",
"version": "6.1.3",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"contributors": [
"Marc Harter <wavded@gmail.com>"
],
"license": "MIT",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git@github.com:tj/connect-redis.git"
},
"devDependencies": {
"blue-tape": "^1.0.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^8.3.0",
"express-session": "^1.17.0",
"ioredis": "^4.17.1",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"redis-mock": "^0.56.3",
"redis-v3": "npm:redis@3",
"redis-v4": "npm:redis@4"
},
"engines": {
"node": ">=14"
},
"bugs": {
"url": "https://github.com/tj/connect-redis/issues"
},
"scripts": {
"test": "nyc tape \"test/*-test.js\"",
"lint": "eslint index.js test lib",
"fmt": "prettier --write .",
"fmt-check": "prettier --check ."
},
"keywords": [
"connect",
"redis",
"session",
"express"
]
}