-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 956 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
{
"name": "firebase-verifier",
"main": "index.js",
"description": "Expressjs Middleware for firebase authentication and app check when you don't want to install firebase admin sdk",
"version": "0.0.1",
"scripts": {
"clean": "rm -rf *.js *.d.ts package firebase-verifier*.tgz",
"build": "esbuild index.ts --outfile=index.js --bundle --minify --platform=node && tsc index.ts --declaration --emitDeclarationOnly"
},
"devDependencies": {
"@types/express": "^4.17.21",
"esbuild": "^0.17.19",
"jose": "^4.14.6",
"node-fetch": "^3.3.2"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chientrm/firebase-verifier.git"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"firebase",
"firebase-auth",
"firebase-app-check",
"jwt",
"verification"
]
}