-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.42 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@presswink/firebase-jwt",
"version": "0.0.6",
"description": "this package is going to verify firebase access-token without using firebase admin sdk.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"type": "commonjs",
"scripts": {
"test": "mocha --require ts-node/register src/**/*.spec.ts",
"build": "rm -rf ./dist && tsc",
"lint": "npx eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/presswink/firebase-jwt.git"
},
"keywords": [
"firebase",
"jwt",
"firebase-admin",
"sdk",
"firebase-auth",
"auth",
"firestore",
"nextjs",
"next.js"
],
"author": "Aditya panther",
"license": "MIT",
"bugs": {
"url": "https://github.com/presswink/firebase-jwt/issues"
},
"homepage": "https://github.com/presswink/firebase-jwt#readme",
"dependencies": {
"axios": "^1.7.4",
"jose": "^5.8.0",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/chai": "^4.3.17",
"@types/eslint__js": "^8.42.3",
"@types/jsonwebtoken": "^9.0.6",
"@types/mocha": "^10.0.7",
"@types/sinon": "^17.0.3",
"chai": "^4.2.0",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"mocha": "^10.7.3",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
}
}