UNPKG

2.24 kBJSONView Raw
1{
2 "name": "@manwaring/lambda-wrapper",
3 "description": "A lambda handler wrapper to abstract common functionality and provide useful defaults",
4 "version": "4.4.4",
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.14.3",
20 "@babel/plugin-proposal-class-properties": "^7.13.0",
21 "@babel/preset-env": "^7.14.2",
22 "@babel/preset-typescript": "^7.13.0",
23 "@types/aws-lambda": "^8.10.76",
24 "@types/cfn-response": "^1.0.4",
25 "@types/jest": "^26.0.23",
26 "@types/node": "^15.6.1",
27 "@typescript-eslint/eslint-plugin": "^4.25.0",
28 "@typescript-eslint/parser": "^4.25.0",
29 "aws-lambda": "^1.0.6",
30 "aws-sdk": "^2.914.0",
31 "babel-jest": "^27.0.1",
32 "codecov": "^3.8.2",
33 "eslint": "^7.27.0",
34 "eslint-config-prettier": "^8.3.0",
35 "eslint-plugin-prettier": "^3.4.0",
36 "husky": "^4.3.0",
37 "jest": "^27.0.1",
38 "lint-staged": "^11.0.0",
39 "prettier": "^2.3.0",
40 "publish-please": "^5.5.2",
41 "rimraf": "^3.0.2",
42 "serverless-plugin-test-helper": "^2.6.2",
43 "typescript": "^4.2.4"
44 },
45 "husky": {
46 "hooks": {
47 "pre-commit": "lint-staged && npm test"
48 }
49 },
50 "lint-staged": {
51 "./src/**/*.ts": [
52 "eslint --fix"
53 ]
54 },
55 "publishConfig": {
56 "access": "public"
57 },
58 "repository": {
59 "type": "git",
60 "url": "git+https://github.com/manwaring/lambda-wrapper.git"
61 },
62 "bugs": {
63 "url": "https://github.com/manwaring/lambda-wrapper/issues"
64 },
65 "homepage": "https://github.com/manwaring/lambda-wrapper",
66 "main": "dist/index.js",
67 "types": "dist/index.d.ts",
68 "files": [
69 "/dist"
70 ],
71 "author": "From Phillip with ♥",
72 "license": "MIT",
73 "keywords": [
74 "aws",
75 "lambda",
76 "wrapper",
77 "serverless"
78 ]
79}