@scloud/lambda-local
Version:
Run typical Lambda handlers locally.
57 lines (56 loc) • 1.41 kB
JSON
{
"name": "@scloud/lambda-local",
"version": "0.3.11",
"description": "Run typical Lambda handlers locally.",
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"lint": "eslint --fix --ext ts src test",
"test": "mocha -r ts-node/register -r tsconfig-paths/register 'test/**/*.spec.ts' # tsconfig-paths/register helps resolve imports in tests",
"compile": "tsc",
"package": "mkdir -p dist && cp -r js/src/* dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidcarboni/scloud.git"
},
"keywords": [
"AWS",
"Serverless",
"Lambda",
"run",
"locally",
"local",
"runner"
],
"author": "David Carboni",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidcarboni/scloud/issues"
},
"homepage": "https://github.com/davidcarboni/scloud#readme",
"devDependencies": {
"@types/chai": "*",
"@types/express": "*",
"@types/mocha": "*",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"chai": "*",
"eslint": "*",
"eslint-config-airbnb-base": "*",
"eslint-import-resolver-typescript": "*",
"eslint-plugin-import": "*",
"mocha": "*",
"nodemon": "*",
"ts-node": "*",
"tsconfig-paths": "*",
"typescript": "*"
},
"dependencies": {
"@types/aws-lambda": "*",
"express": "*"
}
}