serverless-offline-edge-lambda
Version:
A plugin for the Serverless Framework that simulates the behavior of AWS CloudFront Edge Lambdas while developing offline.
85 lines (84 loc) • 2.42 kB
JSON
{
"name": "serverless-offline-edge-lambda",
"version": "1.3.1",
"description": "A plugin for the Serverless Framework that simulates the behavior of AWS CloudFront Edge Lambdas while developing offline.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "Apache-2.0",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"prewatch": "rimraf dist",
"watch": "tsc -w",
"test": "echo \"No test specified\"",
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --fix --project tsconfig.json",
"commit": "git-cz",
"release": "semantic-release --no-ci",
"release:dry-run": "semantic-release --no-ci --dry-run",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect && npm run build && husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"contributors": [
"Matt Strom <matt@mattstrom.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/evolv-ai/serverless-offline-edge-lambda"
},
"files": [
"dist"
],
"keywords": [
"serverless",
"offline",
"serverless-offline",
"aws",
"edge lambdas"
],
"dependencies": {
"body-parser": "^1.20.0",
"chokidar": "^3.5.3",
"connect": "^3.7.0",
"cookie-parser": "^1.4.6",
"flat-cache": "^3.0.4",
"fs-extra": "^11.1.1",
"fsevents": "^2.3.2",
"glob-to-regexp": "^0.4.1",
"http-status-codes": "^2.2.0"
},
"peerDependencies": {
"serverless": ">=1.36.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/aws-lambda": "^8.10.104",
"@types/body-parser": "^1.19.2",
"@types/connect": "^3.4.35",
"@types/cookie-parser": "^1.4.3",
"@types/fs-extra": "^11.0.1",
"@types/glob-to-regexp": "^0.4.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"snyk": "^1.1011.0",
"tslint": "^6.1.2",
"typescript": "^4.8.3"
}
}