@sailplane/lambda-utils
Version:
Use middleware to remove redundancy in AWS Lambda handlers.
57 lines (56 loc) • 1.61 kB
JSON
{
"name": "@sailplane/lambda-utils",
"version": "7.0.0",
"description": "Use middleware to remove redundancy in AWS Lambda handlers.",
"keywords": [
"aws",
"lambda",
"middleware",
"API gateway",
"typescript",
"middy"
],
"scripts": {
"analyze": "npm run build && npm run lint && npm test",
"clean": "rm -rf coverage dist",
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint lib",
"test": "LOG_LEVEL=NONE node --experimental-vm-modules --disable-warning=ExperimentalWarning ../node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "https://github.com/rackspace/sailplane.git"
},
"license": "Apache-2.0",
"author": "Rackspace Technology",
"homepage": "https://github.com/rackspace/sailplane",
"contributors": [
"Adam Fanello <adam.fanello@rackspace.com>"
],
"devDependencies": {
"@middy/core": "^6.0.0",
"@middy/http-cors": "^6.0.0",
"@middy/http-event-normalizer": "^6.0.0",
"@middy/http-header-normalizer": "^6.0.0",
"@middy/http-json-body-parser": "^6.0.0",
"@sailplane/logger": "file:../logger",
"@types/aws-lambda": "^8.10.146",
"@types/http-errors": "^2.0.4",
"http-errors": "^2.0.0"
},
"peerDependencies": {
"@middy/core": "6.x.x",
"@middy/http-cors": "6.x.x",
"@middy/http-event-normalizer": "6.x.x",
"@middy/http-header-normalizer": "6.x.x",
"@middy/http-json-body-parser": "6.x.x",
"@sailplane/logger": ">=6.0.0"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
]
}