serverless-global-authorizer
Version:
Serverless framework plugin which allows to configure API Gateway authorizer globally and applies it for all http/httpApi lambda function events
49 lines (48 loc) • 1.41 kB
JSON
{
"name": "serverless-global-authorizer",
"version": "1.0.2",
"license": "MIT",
"description": "Serverless framework plugin which allows to configure API Gateway authorizer globally and applies it for all http/httpApi lambda function events",
"repository": "https://github.com/Unh3ck3d/serverless-global-authorizer",
"main": "dist/index.js",
"keywords": [
"serverless",
"aws",
"api",
"gateway",
"authorizer"
],
"engines": {
"node": ">=12"
},
"files": ["dist", "src"],
"readme": "README.md",
"peerDependencies": {
"serverless": "^2.32 || 3.x"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.6.0",
"@types/serverless": "^3.12.15",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"jest-mock-extended": "^3.0.4",
"jest-summary-reporter": "^0.0.2",
"prettier": "^3.0.3",
"ts-jest": "^29.1.0"
},
"scripts": {
"build": "tsc",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"test": "jest --coverage --coverageReporters text"
}
}