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",
|
2024-05-06 12:01:20 +02:00
|
|
|
"main": "src/main.ts",
|
2020-08-16 00:36:41 +02:00
|
|
|
"scripts": {
|
2024-05-06 12:01:20 +02:00
|
|
|
"build": "ncc build --source-map --minify --license licenses.txt",
|
2023-09-07 12:16:25 +02:00
|
|
|
"lint": "yarn run prettier && yarn run eslint",
|
|
|
|
"format": "yarn run prettier:fix && yarn run eslint:fix",
|
|
|
|
"eslint": "eslint --max-warnings=0 .",
|
|
|
|
"eslint:fix": "eslint --fix .",
|
|
|
|
"prettier": "prettier --check \"./**/*.ts\"",
|
|
|
|
"prettier:fix": "prettier --write \"./**/*.ts\"",
|
2024-05-06 12:01:20 +02:00
|
|
|
"test": "jest"
|
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",
|
2024-05-06 12:01:20 +02:00
|
|
|
"packageManager": "yarn@3.6.3",
|
2020-08-16 00:36:41 +02:00
|
|
|
"dependencies": {
|
2023-09-12 08:30:14 +02:00
|
|
|
"@actions/core": "^1.10.1",
|
2024-05-14 13:51:36 +02:00
|
|
|
"@docker/actions-toolkit": "0.23.0",
|
2023-02-20 11:11:15 +01:00
|
|
|
"handlebars": "^4.7.7"
|
2020-08-16 00:36:41 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-10-20 15:18:02 +02:00
|
|
|
"@types/csv-parse": "^1.2.2",
|
2023-09-07 12:13:27 +02:00
|
|
|
"@types/node": "^20.5.9",
|
2023-09-07 12:16:25 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.6.0",
|
|
|
|
"@typescript-eslint/parser": "^6.6.0",
|
|
|
|
"@vercel/ncc": "^0.38.0",
|
|
|
|
"eslint": "^8.48.0",
|
|
|
|
"eslint-config-prettier": "^9.0.0",
|
|
|
|
"eslint-plugin-jest": "^27.2.3",
|
|
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
|
|
"jest": "^29.6.4",
|
|
|
|
"prettier": "^3.0.3",
|
|
|
|
"ts-jest": "^29.1.1",
|
2023-04-17 02:09:40 +02:00
|
|
|
"ts-node": "^10.9.1",
|
2023-09-07 12:16:25 +02:00
|
|
|
"typescript": "^5.2.2"
|
2020-08-16 00:36:41 +02:00
|
|
|
}
|
|
|
|
}
|