mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-06-07 19:47:10 +00:00
Remove file-based env vars Add support for session credentials Add account ID as an output Remove testing actions workflow
36 lines
919 B
JSON
36 lines
919 B
JSON
{
|
|
"name": "configure-aws-credentials-for-github-actions",
|
|
"version": "0.0.0",
|
|
"description": "Configure AWS Credentials",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"lint": "eslint **.js",
|
|
"package": "ncc build index.js -o dist",
|
|
"test": "eslint **.js && jest --coverage"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/aws/configure-aws-credentials-for-github-actions.git"
|
|
},
|
|
"keywords": [
|
|
"AWS",
|
|
"GitHub",
|
|
"Actions",
|
|
"JavaScript"
|
|
],
|
|
"author": "AWS",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/aws/configure-aws-credentials-for-github-actions/issues"
|
|
},
|
|
"homepage": "https://github.com/aws/configure-aws-credentials-for-github-actions#readme",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.0",
|
|
"aws-sdk": "^2.562.0"
|
|
},
|
|
"devDependencies": {
|
|
"@zeit/ncc": "^0.20.5",
|
|
"eslint": "^6.6.0",
|
|
"jest": "^24.9.0"
|
|
}
|
|
}
|