-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@manwaring/lambda-wrapper",
"description": "A lambda handler wrapper to abstract common functionality and provide useful defaults",
"version": "4.4.4",
"scripts": {
"publish-please-dry-run": "publish-please --dry-run",
"publish-please": "publish-please",
"prepublishOnly": "publish-please guard && npm run build",
"build": "rimraf dist && tsc -p ./tsconfig.build.json",
"test": "jest --coverage",
"watch-tests": "jest --watch",
"codecov": "codecov -f coverage/*.json",
"deploy-example-app": "cd examples/ts && rm -rf node_modules package-lock.json && npm i && npm run deploy"
},
"dependencies": {
"cfn-response": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/aws-lambda": "^8.10.76",
"@types/cfn-response": "^1.0.4",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"aws-lambda": "^1.0.6",
"aws-sdk": "^2.914.0",
"babel-jest": "^27.0.1",
"codecov": "^3.8.2",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.0",
"jest": "^27.0.1",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"publish-please": "^5.5.2",
"rimraf": "^3.0.2",
"serverless-plugin-test-helper": "^2.6.2",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"lint-staged": {
"./src/**/*.ts": [
"eslint --fix"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manwaring/lambda-wrapper.git"
},
"bugs": {
"url": "https://github.com/manwaring/lambda-wrapper/issues"
},
"homepage": "https://github.com/manwaring/lambda-wrapper",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"author": "From Phillip with ♥",
"license": "MIT",
"keywords": [
"aws",
"lambda",
"wrapper",
"serverless"
]
}