-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 847 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
39
{
"name": "ecr-session",
"version": "0.2.1",
"description": "A Redis backed Express-session wrapper for sharing the session store under the same root domain between different servers",
"main": "index.js",
"keywords": [
"schema",
"sub domain",
"redis",
"session"
],
"engines": {
"node": ">=4.0.0"
},
"author": "Bam Wang",
"license": "ISC",
"repository": {
"type": "github",
"url": "https://github.com/bamwang/ecr-session"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^2.1.0",
"eslint-config-xo-space": "^0.10.0",
"mocha": "^2.4.5"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true,
"es6": true
}
},
"dependencies": {
"connect-redis": "^3.0.2",
"express-session": "^1.13.0"
}
}