-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.1 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
{
"name": "sample_lambda_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/",
"bundle": "rm -f custom-authorizer.zip ; zip custom-authorizer.zip -r *.js *.json node_modules/"
},
"repository": {
"type": "git",
"url": "git+"
},
"keywords": [
"oauth2",
"jwt",
"lambda",
"aws",
"okta",
"api-gateway",
"oidc"
],
"author": {
"name": "Karl McGuinness",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {},
"dependencies": {
"@okta/jwt-verifier": "0.0.14",
"dotenv": "^2.0.0",
"jwks-rsa": "^1.3.0",
"oauth2-bearer-jwt-handler": "https://github.com/mcguinness/node-oauth2-bearer-jwt-handler.git"
},
"devDependencies": {
"lambda-local": "^1.5.1"
}
}