-
Notifications
You must be signed in to change notification settings - Fork 342
/
package.json
64 lines (64 loc) · 1.74 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "connect-redis",
"description": "Redis session store for Connect",
"version": "7.1.1",
"author": "TJ Holowaychuk <[email protected]>",
"contributors": [
"Marc Harter <[email protected]>"
],
"license": "MIT",
"main": "./dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"types": "./dist/esm/index.d.ts",
"scripts": {
"prepublishOnly": "rm -rf dist && tsc & tsc --project tsconfig.esm.json && echo '{\"type\":\"module\"}' > dist/esm/package.json",
"build": "npm run prepublishOnly",
"test": "nyc ts-node node_modules/blue-tape/bin/blue-tape \"**/*_test.ts\"",
"lint": "tsc --noemit && eslint --max-warnings 0 --ext ts testdata *.ts",
"fmt": "prettier --write .",
"fmt-check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "[email protected]:tj/connect-redis.git"
},
"devDependencies": {
"@types/blue-tape": "^0.1.36",
"@types/express-session": "^1.17.10",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"blue-tape": "^1.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"express-session": "^1.17.3",
"ioredis": "^5.3.2",
"nyc": "^15.1.0",
"prettier": "^3.2.4",
"prettier-plugin-organize-imports": "^3.2.4",
"redis": "^4.6.12",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"express-session": ">=1"
},
"engines": {
"node": ">=16"
},
"bugs": {
"url": "https://github.com/tj/connect-redis/issues"
},
"keywords": [
"connect",
"redis",
"session",
"express"
]
}