1
0
Files
build-push-action/package.json
T

49 lines
1.4 KiB
JSON
Raw Normal View History

2020-08-16 00:36:41 +02:00
{
"name": "docker-build-push",
2020-08-17 02:32:27 +02:00
"description": "Build and push Docker images",
2026-02-28 16:47:36 +01:00
"type": "module",
2024-05-06 12:01:20 +02:00
"main": "src/main.ts",
2020-08-16 00:36:41 +02:00
"scripts": {
"build": "esbuild src/main.ts --bundle --platform=node --target=node24 --format=cjs --outfile=dist/index.cjs --sourcemap --minify && yarn run license",
2026-02-28 16:47:36 +01:00
"lint": "eslint --max-warnings=0 .",
"format": "eslint --fix .",
"test": "vitest run",
"license": "generate-license-file --input package.json --output dist/licenses.txt --overwrite --ci --no-spinner --eol lf"
2020-08-16 00:36:41 +02:00
},
"repository": {
"type": "git",
2020-08-24 14:04:40 +02:00
"url": "git+https://github.com/docker/build-push-action.git"
2020-08-16 00:36:41 +02:00
},
"keywords": [
"actions",
"docker",
"build",
"push"
],
2023-09-08 09:45:17 +02:00
"author": "Docker Inc.",
2020-08-16 00:36:41 +02:00
"license": "Apache-2.0",
2026-05-28 15:13:15 +02:00
"packageManager": "yarn@4.15.0",
2020-08-16 00:36:41 +02:00
"dependencies": {
"@actions/core": "^3.0.1",
"@docker/actions-toolkit": "0.91.0",
"handlebars": "^4.7.9"
2020-08-16 00:36:41 +02:00
},
"devDependencies": {
2026-02-28 16:48:43 +01:00
"@eslint/js": "^9.39.3",
2026-03-03 18:24:20 +01:00
"@types/node": "^24.11.0",
2026-02-28 16:48:43 +01:00
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
2026-02-28 16:32:47 +01:00
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.9",
"esbuild": "^0.28.0",
2026-02-28 16:48:43 +01:00
"eslint": "^9.39.3",
2026-01-07 16:12:01 +01:00
"eslint-config-prettier": "^10.1.8",
2026-02-28 16:48:43 +01:00
"eslint-plugin-prettier": "^5.5.5",
"generate-license-file": "^4.1.1",
2026-02-28 16:47:36 +01:00
"globals": "^17.3.0",
2026-02-28 16:48:43 +01:00
"prettier": "^3.8.1",
2026-02-28 16:32:47 +01:00
"typescript": "^5.9.3",
"vitest": "^4.0.18"
2020-08-16 00:36:41 +02:00
}
}