-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.57 KB
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
{
"name": "aws-elasticbeanstalk-deploy",
"version": "0.1.0",
"description": "Deploy applications to AWS Elastic Beanstalk",
"repository": {
"type": "git",
"url": "git+https://github.com/aws-actions/aws-elasticbeanstalk-deploy.git"
},
"homepage": "https://github.com/aws-actions/aws-elasticbeanstalk-deploy",
"engines": {
"node": ">=24"
},
"scripts": {
"clean": "rm -rf dist && rm -rf node_modules",
"build": "ncc build src/main.ts -o dist --source-map --license licenses.txt",
"watch": "tsc -w",
"format": "prettier --write '**/*.ts'",
"package": "ncc build src/main.ts -o dist --source-map --license licenses.txt",
"prepublishOnly": "npm run build && npm run test",
"test": "jest --collectCoverage --collectCoverageFrom=src/**/*.{ts,js}"
},
"main": "dist/index.js",
"exports": "dist/index.js",
"files": [
"dist/",
"action.yml",
"!**/__tests__/**"
],
"keywords": [
"aws",
"elastic-beanstalk",
"deployment",
"github-actions"
],
"dependencies": {
"@actions/core": "^1.10.1",
"@aws-sdk/client-elastic-beanstalk": "^3.928.0",
"@aws-sdk/client-s3": "^3.478.0",
"@aws-sdk/client-sts": "^3.478.0",
"archiver": "^7.0.1",
"ignore": "^7.0.5"
},
"devDependencies": {
"@actions/exec": "^1.1.1",
"@types/archiver": "^6.0.2",
"@types/jest": "^29.5.12",
"@types/node": "^24.0.0",
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "~5.4.5"
},
"overrides": {
"fast-xml-parser": ">=5.3.8",
"undici": ">=6.23.0"
}
}