-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 989 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
40
41
{
"name": "passport-jwt-firebase",
"version": "2.0.0",
"description": "An Interface to Support JWT Auth with Passport in Express",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc"
},
"keywords": [
"Passport",
"Strategy",
"JWT",
"passport-jwt",
"Firebase",
"auth"
],
"repository": {
"type": "git",
"url": "https://github.com/pratikpc/passport-jwt-firebase"
},
"homepage": "https://github.com/pratikpc/passport-jwt-firebase#readme",
"bugs": {
"url": "https://github.com/pratikpc/passport-jwt-firebase/issues"
},
"author": "Pratik Chowdhury ([email protected])",
"license": "MIT",
"dependencies": {
"@types/passport-jwt": "^3.0.3",
"node-fetch": "^2.6.0",
"passport-jwt": "^4.0.0"
},
"devDependencies": {
"@types/node-fetch": "^2.5.7",
"typescript": "^3.9.7"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}