mirror of
https://github.com/redhat-actions/podman-login.git
synced 2025-02-23 10:31:21 +01:00
38 lines
1 KiB
JSON
38 lines
1 KiB
JSON
{
|
|
"name": "podman-login",
|
|
"version": "1.0.0",
|
|
"engines": {
|
|
"node": "12"
|
|
},
|
|
"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"
|
|
},
|
|
"keywords": [],
|
|
"author": "Red Hat",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@actions/exec": "^1.0.4",
|
|
"@actions/io": "^1.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@redhat-actions/action-io-generator": "^1.5.0",
|
|
"@redhat-actions/eslint-config": "^1.2.11",
|
|
"@redhat-actions/tsconfig": "^1.1.1",
|
|
"@types/node": "^12",
|
|
"@typescript-eslint/eslint-plugin": "^4.14.1",
|
|
"@typescript-eslint/parser": "^4.14.1",
|
|
"@vercel/ncc": "^0.25.1",
|
|
"eslint": "^7.18.0",
|
|
"typescript": "^4.0.5"
|
|
}
|
|
}
|