forked from FREEZX/jwt-redis-session
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.06 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
51
52
{
"name": "jwt-redis-session",
"description": "JSON Web Token session middleware backed by Redis",
"version": "2.0.0",
"authors": "azuqua",
"contributors": [
{
"name": "Vlado Velichkovski",
"email": "v.velichkovski@outlook.com"
}
],
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}
],
"repository": {
"type": "git",
"url": "git://github.com/stormwin/jwt-redis-session"
},
"scripts": {
"test": "nodejs ./node_modules/mocha/bin/mocha ./test/tests.js"
},
"dependencies": {
"jsonwebtoken": "^8.3.0",
"node-uuid": "^1"
},
"devDependencies": {
"@types/node": "^10.5.2",
"async": "^2.6.1",
"chai": "^4.1.2",
"eslint": "^5.2.0",
"express": "^4",
"grunt": "^1",
"grunt-contrib-jshint": "^1",
"grunt-mocha-test": "^0",
"lodash": "^4",
"mocha": "^5.2.0",
"redis": "^2",
"restjs": "azuqua/restjs"
},
"keywords": [
"azuqua",
"stormwin",
"jwt",
"token",
"redis",
"session",
"middleware"
]
}