-
Notifications
You must be signed in to change notification settings - Fork 173
/
package.json
37 lines (37 loc) · 1.05 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
{
"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": "^4.1.0",
"bluebird": "^3.4.6",
"dotenv": "^2.0.0"
},
"devDependencies": {
"aws-sdk": "^2.1354.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"
}