lambda-framework-aws
Version:
AWS Lambda implementation of Lambda Framework
57 lines • 1.56 kB
JSON
{
"name": "lambda-framework-aws",
"version": "1.2.3",
"description": "AWS Lambda implementation of Lambda Framework",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/rogelio-o/lambda-framework-aws.git"
},
"scripts": {
"clean": "rm -rf dist coverage",
"precompile": "npm run clean",
"pretest": "npm run compile",
"test": "nyc --reporter=html --reporter=text mocha --recursive dist/test/",
"posttest": "npm run lint && nyc check-coverage --statements 90 --branches 90 --functions 90 --lines 90",
"compile": "tsc",
"lint": "tslint --config tslint.json --project tsconfig.json",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm-auto-version"
},
"keywords": [
"serverless",
"AWS",
"lambda",
"framework"
],
"author": "Rogelio Orts",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^2.2.48",
"@types/sinon": "^2.3.7",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"mocha": "^5.2.0",
"mock-fs": "^4.5.0",
"npm-auto-version": "^1.0.0",
"nyc": "^11.9.0",
"sinon": "^4.5.0",
"tslint": "^5.10.0",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "^2.9.2"
},
"dependencies": {
"@types/aws-lambda": "0.0.24",
"@types/node": "^8.10.20",
"aws-sdk": "^2.263.1",
"lambda-framework": "^1.2.2",
"node-cache": "^4.2.0"
},
"nyc": {
"exclude": [
"**/*.spec.js"
]
}
}