mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 00:35:53 -05:00
dac08d41ad
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "docker-build-push",
|
|
"description": "Build and push Docker images",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "ncc build src/main.ts --source-map --minify --license licenses.txt",
|
|
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
|
|
"format": "eslint --fix src/**/*.ts __tests__/**/*.ts",
|
|
"test": "jest --coverage",
|
|
"all": "yarn run build && yarn run format && yarn test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/docker/build-push-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"docker",
|
|
"build",
|
|
"push"
|
|
],
|
|
"author": "Docker",
|
|
"contributors": [
|
|
{
|
|
"name": "CrazyMax",
|
|
"url": "https://crazymax.dev"
|
|
}
|
|
],
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@docker/actions-toolkit": "^0.5.0",
|
|
"handlebars": "^4.7.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/csv-parse": "^1.2.2",
|
|
"@types/node": "^16.18.21",
|
|
"@typescript-eslint/eslint-plugin": "^5.56.0",
|
|
"@typescript-eslint/parser": "^5.56.0",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"eslint": "^8.36.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-jest": "^27.2.1",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"jest": "^29.5.0",
|
|
"prettier": "^2.8.7",
|
|
"ts-jest": "^29.0.5",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.9.5"
|
|
}
|
|
}
|