2020-11-06 17:42:45 +00:00
|
|
|
{
|
2020-11-23 18:27:19 +00:00
|
|
|
"name": "buildah-build",
|
2024-02-01 16:22:34 +00:00
|
|
|
"version": "3.0",
|
2021-02-01 17:54:50 +00:00
|
|
|
"engines": {
|
2024-02-01 16:22:34 +00:00
|
|
|
"node": "20"
|
2021-02-01 17:54:50 +00:00
|
|
|
},
|
2020-11-13 14:20:53 +00:00
|
|
|
"description": "Action for building OCI-compatible images using buildah",
|
2020-11-23 18:27:19 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/redhat-actions/buildah-build"
|
|
|
|
},
|
2020-11-19 18:44:17 +00:00
|
|
|
"main": "dist/index.js",
|
2020-11-06 17:42:45 +00:00
|
|
|
"scripts": {
|
2020-11-06 21:48:47 +00:00
|
|
|
"compile": "tsc -p .",
|
|
|
|
"bundle": "ncc build src/index.ts --source-map --minify",
|
2021-02-01 17:54:50 +00:00
|
|
|
"clean": "rm -rf out/ dist/",
|
2021-11-17 09:39:25 +00:00
|
|
|
"lint": "eslint . --max-warnings=0",
|
|
|
|
"generate-ios": "npx action-io-generator -w -o ./src/generated/inputs-outputs.ts"
|
2020-11-06 17:42:45 +00:00
|
|
|
},
|
|
|
|
"keywords": [],
|
2020-11-06 21:48:47 +00:00
|
|
|
"author": "Red Hat",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2024-02-01 16:22:34 +00:00
|
|
|
"@actions/core": "1.10.1",
|
2022-12-23 15:30:57 +00:00
|
|
|
"@actions/exec": "1.1.1",
|
2024-02-01 16:22:34 +00:00
|
|
|
"@actions/io": "1.1.3",
|
|
|
|
"ini": "4.1.1"
|
2020-11-06 21:48:47 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-12-23 15:30:57 +00:00
|
|
|
"@redhat-actions/action-io-generator": "1.5.0",
|
|
|
|
"@redhat-actions/eslint-config": "1.3.2",
|
|
|
|
"@redhat-actions/tsconfig": "1.2.0",
|
|
|
|
"@types/ini": "1.3.31",
|
2024-02-01 16:22:34 +00:00
|
|
|
"@types/node": "^20.0",
|
|
|
|
"@typescript-eslint/eslint-plugin": "6.7.3",
|
|
|
|
"@typescript-eslint/parser": "6.7.3",
|
|
|
|
"@vercel/ncc": "0.38.0",
|
|
|
|
"eslint": "8.50.0",
|
|
|
|
"typescript": "5.2.2"
|
2020-11-06 21:48:47 +00:00
|
|
|
}
|
2020-11-06 17:42:45 +00:00
|
|
|
}
|