-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.1 KB
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
{
"name": "connect-sequelize",
"version": "2.0.2",
"description": "Session store for connect/express sessions via sequelize based on the wonderful work from https://github.com/mweibel",
"homepage": "https://github.com/origin1tech/connect-sequelize",
"bugs": "https://github.com/origin1tech/connect-sequelize/issues",
"main": "index.js",
"scripts": {
"test": "mocha ./test/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/origin1tech/connect-sequelize"
},
"dependencies": {
"debug": "^0.7.4",
"express": "^4.13.3",
"sequelize": "^3.14.2"
},
"devDependencies": {
"connect": "^3.3.2",
"mocha": "^2.0.1"
},
"peerDependencies": {
"sequelize": "^3.3.1"
},
"engines": {
"node": "*"
},
"keywords": [
"express",
"connect-session",
"connect",
"sequelize",
"postgres",
"mysql",
"sqlite"
],
"author": {
"name": "Michael Weibel",
"email": "michael.weibel@gmail.com"
},
"contributors": [
{
"name": "Carey Hazelton",
"email": "origin1tech@gmail.com"
}
],
"license": "MIT"
}