2020-11-06 17:42:45 +00:00
|
|
|
{
|
2020-11-23 18:27:19 +00:00
|
|
|
"name": "buildah-build",
|
2021-02-01 17:54:50 +00:00
|
|
|
"version": "1.0.0",
|
|
|
|
"engines": {
|
|
|
|
"node": "12"
|
|
|
|
},
|
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/",
|
|
|
|
"lint": "eslint . --max-warnings=0"
|
2020-11-06 17:42:45 +00:00
|
|
|
},
|
|
|
|
"keywords": [],
|
2020-11-06 21:48:47 +00:00
|
|
|
"author": "Red Hat",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
|
|
|
"@actions/core": "^1.2.6",
|
|
|
|
"@actions/exec": "^1.0.4",
|
2020-11-13 11:38:29 +00:00
|
|
|
"@actions/io": "^1.0.2",
|
2021-07-09 15:12:48 +00:00
|
|
|
"ini": "^2.0.0"
|
2020-11-06 21:48:47 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-02-08 16:24:18 +00:00
|
|
|
"@redhat-actions/action-io-generator": "^1.5.0",
|
2021-07-09 15:12:48 +00:00
|
|
|
"@redhat-actions/eslint-config": "^1.3.2",
|
2021-02-01 17:54:50 +00:00
|
|
|
"@redhat-actions/tsconfig": "^1.1.1",
|
2021-04-09 14:32:13 +00:00
|
|
|
"@types/ini": "^1.3.30",
|
2020-11-19 18:44:17 +00:00
|
|
|
"@types/node": "^12",
|
2021-07-09 15:12:48 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.28.2",
|
|
|
|
"@typescript-eslint/parser": "^4.28.2",
|
2020-11-19 19:49:47 +00:00
|
|
|
"@vercel/ncc": "^0.25.1",
|
2021-07-09 15:12:48 +00:00
|
|
|
"eslint": "^7.30.0",
|
|
|
|
"typescript": "^4.3.5"
|
2020-11-06 21:48:47 +00:00
|
|
|
}
|
2020-11-06 17:42:45 +00:00
|
|
|
}
|