forked from tj/connect-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 986 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
{
"name": "connect-redis",
"description": "Redis session store for Connect",
"version": "5.1.0",
"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:visionmedia/connect-redis.git"
},
"devDependencies": {
"blue-tape": "^1.0.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^7.2.0",
"express-session": "^1.17.0",
"ioredis": "^4.17.1",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"redis": "^3.0.2",
"redis-mock": "^0.56.3"
},
"engines": {
"node": ">=10.0.0"
},
"bugs": {
"url": "https://github.com/visionmedia/connect-redis/issues"
},
"scripts": {
"test": "nyc tape \"test/*-test.js\"",
"lint": "eslint index.js test lib",
"fmt": "prettier --write \"**/*.{js,md,json,*rc}\"",
"fmt-check": "prettier --check \"**/*.{js,md,json,*rc}\""
}
}