2020-11-07 13:04:04 +01:00
|
|
|
{
|
2020-11-13 15:12:47 +01:00
|
|
|
"name": "push-to-registry",
|
2020-11-07 13:04:04 +01:00
|
|
|
"version": "0.0.1",
|
2020-11-13 15:12:47 +01:00
|
|
|
"description": "Action to push images to registry",
|
2020-11-07 13:04:04 +01:00
|
|
|
"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"
|
|
|
|
},
|
2020-11-13 15:12:47 +01:00
|
|
|
"author": "Red Hat",
|
2020-11-07 13:04:04 +01:00
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
|
|
|
"@actions/core": "^1.2.6",
|
|
|
|
"@actions/exec": "^1.0.4",
|
|
|
|
"@actions/io": "^1.0.2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/node": "^12.12.7",
|
2020-11-17 14:19:05 -05:00
|
|
|
"@vercel/ncc": "^0.25.1",
|
2020-11-07 13:04:04 +01:00
|
|
|
"typescript": "^4.0.5"
|
|
|
|
}
|
|
|
|
}
|