forked from tom-smith-okta/node-lambda-oauth2-jwt-authorizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "lambda-oauth2-jwt-authorizer",
"version": "0.1.0",
"description": "RFC 6750 OAuth2 bearer JSON Web Token (JWT) custom authorizer for AWS API Gateway",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/lambda-local --timeout 300 -l index.js -h handler -e test/event.json",
"zip": "mkdir dist && rm -f dist/lambda-oauth2-jwt-authorizer.zip ; zip dist/lambda-oauth2-jwt-authorizer.zip -r *.js *.json .env node_modules/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcguinness/node-lambda-oauth2-jwt-authorizer.git"
},
"keywords": [
"oauth2",
"jwt",
"lambda",
"aws",
"okta",
"api-gateway",
"oidc"
],
"author": {
"name": "Karl McGuinness",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mcguinness/node-lambda-oauth2-jwt-authorizer.git/issues"
},
"homepage": "https://github.com/mcguinness/node-lambda-oauth2-jwt-authorizer.git#readme",
"dependencies": {
"@okta/jwt-verifier": "0.0.14",
"dotenv": "^7.0.0"
}
}