-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "redis-jwt",
"version": "1.4.0",
"description": "Management of sessions by Redis and JWT for horizontal scalability, with the possibility of having one session at a time or multiple for the same user",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kevoj/redis-jwt.git"
},
"scripts": {
"start": "npm run compile & nodemon index.js --exec babel-node",
"compile": "babel --watch src -d dist",
"test": "mocha --compilers js:babel-register"
},
"keywords": [
"redis-jwt",
"redis",
"jwt",
"session",
"session-redis",
"session-jwt",
"redis-session",
"jwt-session",
"jwt-redis",
"redis-jwt-scaling"
],
"author": "Leonardo Rico Guevara - https://github.com/kevoj",
"license": "MIT",
"engines": {
"node": "^6.2.2",
"npm": "^3.9.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"express": "^4.15.4",
"mocha": "^5.0.1",
"nodemon": "^1.12.0"
},
"dependencies": {
"chalk": "^2.1.0",
"jsonwebtoken": "^8.0.0",
"ms": "^2.0.0",
"redis-fast-driver": "^2.0.0",
"shelljs": "^0.8.1"
}
}