-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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
{
"name": "lambda-oidc-authenticator",
"version": "0.0.2",
"description": "An AWS Lambda function to provide an oidc Custom Authenticator for AWS API Gateway ( tested with key-cloak). Inspired from lambda-auth0-authorizer",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/lambda-local -l index.js -e event.json",
"zip": "rm -f lambda-oidc-authenticator.zip ; zip lambda-oidc-authenticator.zip -r *.js *.json .env node_modules/"
},
"author": "Gaurav Lanjekar",
"license": "Apache-2.0",
"dependencies": {
"bluebird": "^3.4.6",
"dotenv": "^2.0.0",
"get-keycloak-public-key-node6": "^1.0.3",
"jsonwebtoken": "^8.1.0"
},
"devDependencies": {
"lambda-local": "1.4.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gauravlanjekar/lambda-oidc-authorizer.git"
},
"keywords": [
"aws",
"api-gateway",
"oidc",
"key-cloak",
"custom-authorizer",
"authentication",
"lambda"
],
"bugs": {
"url": "https://github.com/gauravlanjekar/lambda-oidc-authorizer/issues"
},
"homepage": "https://github.com/gauravlanjekar/lambda-oidc-authorizer#readme"
}