mirror of
https://github.com/redhat-actions/push-to-registry.git
synced 2025-02-22 18:21:20 +01:00
23 lines
576 B
JSON
23 lines
576 B
JSON
{
|
|
"name": "push-to-registry",
|
|
"version": "0.0.1",
|
|
"description": "Action to push images to registry",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"compile": "tsc -p .",
|
|
"bundle": "ncc build src/index.ts --source-map --minify",
|
|
"clean": "rm -rf out/ dist/",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"author": "Red Hat",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@actions/exec": "^1.0.4",
|
|
"@actions/io": "^1.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^12.12.7",
|
|
"typescript": "^4.0.5"
|
|
}
|
|
}
|