-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 895 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": "jwt-selfissuer",
"version": "0.8.2",
"description": "JWT Auto-Renewal Middleware for Express",
"main": "lib/index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/josegrobles/jwt-selfissuer.git"
},
"keywords": [
"jwt",
"selfissuing",
"selfissuer",
"renewal",
"tokens",
"token",
"express",
"middleware"
],
"author": "Jose Antonio <josegrobles1997@gmail.com> (https://josegrobles.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/josegrobles/jwt-selfissuer/issues"
},
"homepage": "https://github.com/josegrobles/jwt-selfissuer#readme",
"dependencies": {
"jsonwebtoken": "^7.2.1",
"underscore": "^1.8.3",
"redis": "^2.6.5"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0",
"node-mocks-http": "^1.5.6"
}
}