forked from aws-actions/aws-lambda-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 934 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 934 Bytes
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
{
"name": "@amzn/github-action-lambda-deploy",
"version": "1.0.0",
"description": "GitHub Action for AWS Lambda Function Deployment",
"main": "index.js",
"scripts": {
"build": "ncc build index.js -o dist",
"test": "jest",
"lint": "eslint . --ignore-pattern 'dist/*'",
"lint:fix": "eslint . --fix --ignore-pattern 'dist/*'"
},
"keywords": [
"aws",
"lambda",
"deployment"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.1",
"@aws-sdk/client-lambda": "^3.826.0",
"@aws-sdk/client-s3": "^3.864.0",
"@aws-sdk/util-retry": "^3.370.0",
"@smithy/node-http-handler": "^4.3.0",
"@aws-sdk/client-sts": "3.876.0",
"adm-zip": "^0.5.16",
"glob": "^11.0.2"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"eslint": "^8.45.0",
"eslint-plugin-jest": "^27.2.2",
"jest": "^29.5.0"
}
}