-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.2 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
{
"name": "understated-auth",
"version": "1.0.0",
"description": "Mostly stateless JWT authentication with token revocations handled in Redis",
"main": "app.js",
"scripts": {
"start": "docker-compose up > /dev/null 2>&1 & sleep 2 && node ./bin/www"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drewswiredin/understated-auth.git"
},
"keywords": [
"JWT",
"token",
"auth",
"authentication",
"refresh",
"revoke",
"revocation",
"redis",
"mongo",
"express"
],
"author": "Andrew Holder",
"license": "MIT",
"bugs": {
"url": "https://github.com/drewswiredin/understated-auth/issues"
},
"homepage": "https://github.com/drewswiredin/understated-auth#readme",
"devDependencies": {
"body-parser": "~1.18.2",
"cookie-parser": "~1.4.3",
"debug": "~4.1.1",
"express": "^4.16.4",
"express-redis": "^2.0.0",
"guid": "0.0.12",
"jwt-simple": "^0.5.1",
"mongoose": "^5.0.0-rc1",
"morgan": "~1.9.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local-mongoose": "^5.0.1",
"pug": "2.0.3",
"redis": "^2.8.0",
"serve-favicon": "~2.5.0",
"unix-timestamp": "^0.2.0"
}
}