-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
47 lines (47 loc) · 1.05 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
{
"name": "connect-session-sequelize",
"version": "7.1.7",
"description": "Session store for connect-session using sequelize",
"homepage": "https://github.com/mweibel/connect-session-sequelize",
"bugs": "https://github.com/mweibel/connect-session-sequelize/issues",
"main": "index.js",
"scripts": {
"test": "mocha ./test",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "https://github.com/mweibel/connect-session-sequelize.git"
},
"dependencies": {
"debug": "^4.1.1"
},
"devDependencies": {
"express-session": "^1.17.1",
"mocha": "^9.2.2",
"sequelize": ">=6.1.0",
"sqlite3": "^4.2.0",
"standard": "^14.3.4"
},
"peerDependencies": {
"sequelize": ">= 6.1.0"
},
"engines": {
"node": ">= 10"
},
"keywords": [
"connect-session",
"connect",
"sequelize",
"postgres",
"mysql",
"sqlite"
],
"author": "Michael Weibel <[email protected]> (https://github.com/mweibel)",
"license": "MIT",
"files": [
"lib",
"index.js",
"index.d.ts"
]
}