forked from gitcommitshow/auth-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.01 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
{
"name": "auth-jwt",
"version": "2.0.2",
"description": "A demo to learn JWT by reverse engineering",
"keywords": ["jwt", "token", "jsonwebtoken", "authentication", "rfc-7519", "signature", "rsa", "learn-by-doing", "express", "node authentication"],
"main": "index.js",
"author": {
"name": "Pradeep Sharma",
"url": "https://github.com/gitcommitshow"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gitcommitshow/auth-jwt"
},
"bugs": "https://github.com/gitcommitshow/auth-jwt/issues",
"homepage": "https://auth-jwt--gitcommitshow.repl.co",
"private": false,
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2"
},
"engines": {
"node": ">= 0.10.0"
}
}