lambda-api
Version:
Lightweight web framework for your serverless applications
63 lines (62 loc) • 1.73 kB
JSON
{
"name": "lambda-api",
"version": "1.2.0",
"description": "Lightweight web framework for your serverless applications",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "tsd && jest unit",
"test:types": "tsd",
"test:unit": "jest unit",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"test-cov": "jest unit --coverage",
"test-ci": "npm run lint:check && npm run prettier:check && jest unit --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublishOnly": "npm test && npm run lint:check",
"changelog": "git log $(git describe --tags --abbrev=0)..HEAD --oneline"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeremydaly/lambda-api.git"
},
"keywords": [
"serverless",
"nodejs",
"api",
"AWS Lambda",
"API Gateway",
"web framework",
"json",
"schema",
"open"
],
"author": "Jeremy Daly <jeremy@jeremydaly.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeremydaly/lambda-api/issues"
},
"homepage": "https://github.com/jeremydaly/lambda-api#readme",
"peerDependencies": {
"@aws-sdk/client-s3": "^3.0.0",
"@aws-sdk/s3-request-presigner": "^3.0.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.51",
"@types/node": "^10.17.21",
"bluebird": "^3.7.2",
"coveralls": "^3.1.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^26.6.3",
"prettier": "^2.3.2",
"sinon": "^4.5.0",
"tsd": "^0.31.2"
},
"files": [
"index.js",
"index.d.ts",
"lib/"
]
}