-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.61 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
60
61
62
63
64
65
66
67
68
{
"name": "passport-keycloak-bearer",
"version": "2.4.1",
"description": "HTTP Bearer authentication strategy for Passport and Keycloak",
"keywords": [
"passport-keycloak-bearer",
"keycloak",
"passport",
"auth",
"oauth",
"bearer",
"authn",
"authentication",
"authz",
"authorization",
"http",
"bearer",
"token",
"oauth"
],
"homepage": "https://github.com/hgranlund/passport-keycloak-bearer",
"bugs": {
"url": "https://github.com/hgranlund/passport-keycloak-bearer/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Simen Haugerud Granlund",
"email": "[email protected]",
"url": "https://hgranlund.com"
},
"files": [
"src"
],
"main": "src/index.js",
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/hgranlund/passport-keycloak-bearer"
},
"scripts": {
"lint": "eslint ./src ./test --fix",
"test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js",
"start": "node src"
},
"dependencies": {
"axios": "^1.6.3",
"passport-jwt": "^4.0.1",
"simple-node-logger": "^21.8.12"
},
"devDependencies": {
"@types/passport": "^1.0.12",
"@types/passport-jwt": "^3.0.8",
"chai": "^4.3.7",
"chai-passport-strategy": "^1.0.1",
"eslint": "^7.32.0",
"eslint-plugin-mocha": "^9.0.0",
"mocha": "^10.1.0",
"nock": "^13.1.3",
"prettier": "^2.4.1",
"prettier-eslint": "^13.0.0",
"rewiremock": "^3.14.3",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=10.0.0"
}
}