-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "passport-firebase-jwt",
"version": "1.2.1",
"description": "Passport authentication strategy for Firebase JWT token",
"main": "./lib",
"types": "./dist/index.d.ts",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec --require test/bootstrap test/*test.js",
"testcov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter spec --require test/bootstrap test/*test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Mawi137/passport-firebase-jwt.git"
},
"keywords": [
"Passport",
"Strategy",
"JSON",
"Web",
"Token",
"JWT"
],
"author": "Martijn Willekens",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mawi137/passport-firebase-jwt/issues"
},
"homepage": "https://github.com/Mawi137/passport-firebase-jwt",
"devDependencies": {
"chai": "^3.0.0",
"chai-passport-strategy": "^1.0.0",
"istanbul": "^0.4.5",
"mocha": "^10.2.0",
"sinon": "^1.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"passport-strategy": "^1.0.0"
}
}