UNPKG

lambda-warmer

Version:
59 lines (58 loc) 1.54 kB
{ "name": "lambda-warmer", "version": "2.3.0", "description": "Keep your Lambda functions warm", "main": "index.js", "types": "./types/index.d.ts", "scripts": { "test": "mocha --check-leaks --recursive", "test-cov": "nyc --reporter=lcov mocha --check-leaks --recursive", "test-ci": "npm run lint:check && nyc npm test && nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js", "lint:check": "eslint .", "lint:fix": "eslint . --fix", "dtslint": "dtslint types", "prepublishOnly": "npm run lint:check && npm run test && npm run dtslint" }, "repository": { "type": "git", "url": "git+https://github.com/jeremydaly/lambda-warmer.git" }, "keywords": [ "lambda", "cold start", "aws", "serverless", "cloudwatch ping" ], "author": "Jeremy Daly <jeremy@jeremydaly.com>", "maintainers": [ { "name": "Naor Peled <me@naor.dev>" } ], "license": "MIT", "bugs": { "url": "https://github.com/jeremydaly/lambda-warmer/issues" }, "homepage": "https://github.com/jeremydaly/lambda-warmer#readme", "devDependencies": { "@aws-sdk/client-lambda": "^3.282.0", "chai": "^4.3.7", "coveralls": "^3.1.1", "dtslint": "^4.2.1", "eslint": "^5.16.0", "mocha": "^9.2.2", "mocha-lcov-reporter": "^1.3.0", "nyc": "^14.1.1", "rewire": "^6.0.0", "sinon": "^6.3.5", "typescript": "^4.9.4" }, "files": [ "lib/", "index.js", "types/index.d.ts", "LICENSE", "README.md" ] }