forked from jghaines/lambda-auth0-authorizer
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.08 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-auth0-authenticator",
"version": "0.0.2",
"description": "An AWS Lambda function to provide an Auth0 Custom Authenticator for AWS API Gateway",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/lambda-local --timeout 300 --lambdapath index.js --eventpath event.json",
"zip": "rm -f lambda-auth0-authorizer.zip ; zip lambda-auth0-authorizer.zip -r *.js *.json .env node_modules/"
},
"author": "Jason Haines",
"license": "Apache-2.0",
"dependencies": {
"auth0": "^2.10.0",
"bluebird": "^3.4.6",
"dotenv": "^2.0.0",
"rest-facade": "1.10.1"
},
"devDependencies": {
"aws-sdk": "^2.563.0",
"lambda-local": "^1.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jghaines/lambda-auth0-authorizer.git"
},
"keywords": [
"aws",
"api-gateway",
"auth0",
"custom-authorizer",
"authentication",
"lambda"
],
"bugs": {
"url": "https://github.com/jghaines/lambda-auth0-authorizer/issues"
},
"homepage": "https://github.com/jghaines/lambda-auth0-authorizer#readme"
}