UNPKG

1.86 kBJSONView Raw
1{
2 "name": "@manwaring/lambda-wrapper",
3 "description": "A lambda handler wrapper to abstract common functionality and provide useful defaults",
4 "version": "3.1.3",
5 "scripts": {
6 "publish-please-dry-run": "publish-please --dry-run",
7 "publish-please": "publish-please",
8 "prepublishOnly": "publish-please guard && npm run build",
9 "build": "rimraf dist && tsc -p ./tsconfig.build.json",
10 "test": "jest --coverage",
11 "watch-tests": "jest --watch",
12 "codecov": "codecov -f coverage/*.json",
13 "deploy-example-app": "cd examples/ts && rm -rf node_modules package-lock.json && npm i && npm run deploy"
14 },
15 "dependencies": {
16 "cfn-response": "^1.0.1"
17 },
18 "devDependencies": {
19 "@babel/core": "^7.8.7",
20 "@babel/plugin-proposal-class-properties": "^7.8.3",
21 "@babel/preset-env": "^7.8.7",
22 "@babel/preset-typescript": "^7.8.3",
23 "@types/aws-lambda": "^8.10.46",
24 "@types/cfn-response": "^1.0.2",
25 "@types/jest": "^25.1.4",
26 "@types/node": "^13.9.1",
27 "aws-lambda": "^1.0.5",
28 "aws-sdk": "^2.639.0",
29 "babel-jest": "^25.1.0",
30 "codecov": "^3.6.5",
31 "husky": "^4.1.0",
32 "jest": "^25.1.0",
33 "publish-please": "^5.5.1",
34 "rimraf": "^3.0.2",
35 "serverless-plugin-test-helper": "^2.1.3",
36 "typescript": "^3.8.3"
37 },
38 "husky": {
39 "hooks": {
40 "pre-commit": "npm test"
41 }
42 },
43 "publishConfig": {
44 "access": "public"
45 },
46 "repository": {
47 "type": "git",
48 "url": "git+https://github.com/manwaring/lambda-wrapper.git"
49 },
50 "bugs": {
51 "url": "https://github.com/manwaring/lambda-wrapper/issues"
52 },
53 "homepage": "https://github.com/manwaring/lambda-wrapper",
54 "main": "dist/index.js",
55 "types": "dist/index.d.ts",
56 "author": "From Phillip with ♥",
57 "license": "MIT",
58 "keywords": [
59 "aws",
60 "lambda",
61 "wrapper",
62 "serverless"
63 ]
64}