mirror of
https://github.com/redhat-actions/podman-login.git
synced 2025-02-22 10:01:22 +01:00
41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"name": "podman-login",
|
|
"version": "1.0.0",
|
|
"engines": {
|
|
"node": "20"
|
|
},
|
|
"description": "GitHub Action to log in against a container image registry",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/redhat-actions/podman-login"
|
|
},
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"compile": "tsc -p .",
|
|
"bundle": "ncc build src/index.ts --source-map --minify",
|
|
"clean": "rm -rf out/ dist/",
|
|
"lint": "eslint . --max-warnings=0",
|
|
"generate-ios": "npx action-io-generator -w -o ./src/generated/inputs-outputs.ts"
|
|
},
|
|
"keywords": [],
|
|
"author": "Red Hat",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/io": "^1.1.3",
|
|
"@aws-sdk/client-ecr": "^3.535.0",
|
|
"@aws-sdk/util-base64": "^3.310.0"
|
|
},
|
|
"devDependencies": {
|
|
"@redhat-actions/action-io-generator": "^1.5.0",
|
|
"@redhat-actions/eslint-config": "^1.3.2",
|
|
"@redhat-actions/tsconfig": "^1.2.0",
|
|
"@types/node": "^20",
|
|
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
"@typescript-eslint/parser": "^7.2.0",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"eslint": "^8.57.0",
|
|
"typescript": "^5.4.2"
|
|
}
|
|
}
|