2020-08-18 15:40:31 +00:00
|
|
|
{
|
|
|
|
"name": "docker-setup-buildx",
|
|
|
|
"description": "Set up Docker Buildx",
|
|
|
|
"main": "lib/main.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc && ncc build",
|
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
"test": "jest --coverage",
|
|
|
|
"pre-checkin": "yarn run format && yarn run build"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/docker/setup-buildx-action.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"docker",
|
|
|
|
"buildx"
|
|
|
|
],
|
|
|
|
"author": "Docker",
|
|
|
|
"contributors": [
|
|
|
|
{
|
|
|
|
"name": "CrazyMax",
|
|
|
|
"url": "https://crazymax.dev"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"dependencies": {
|
2021-09-29 04:04:10 +00:00
|
|
|
"@actions/core": "^1.6.0",
|
2022-03-18 04:04:01 +00:00
|
|
|
"@actions/exec": "^1.1.1",
|
2021-04-03 19:12:54 +00:00
|
|
|
"@actions/http-client": "^1.0.11",
|
2022-03-18 04:03:51 +00:00
|
|
|
"@actions/tool-cache": "^1.7.2",
|
2021-03-23 05:49:51 +00:00
|
|
|
"semver": "^7.3.5",
|
2021-09-03 20:21:20 +00:00
|
|
|
"tmp": "^0.2.1",
|
2021-01-01 23:54:52 +00:00
|
|
|
"uuid": "^8.3.2"
|
2020-08-18 15:40:31 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-06-23 15:02:59 +00:00
|
|
|
"@types/jest": "^26.0.23",
|
|
|
|
"@types/node": "^14.17.4",
|
|
|
|
"@vercel/ncc": "^0.28.6",
|
|
|
|
"dotenv": "^8.6.0",
|
|
|
|
"jest": "^26.6.3",
|
|
|
|
"jest-circus": "^26.6.3",
|
|
|
|
"jest-runtime": "^26.6.3",
|
|
|
|
"prettier": "^2.3.1",
|
|
|
|
"ts-jest": "^26.5.6",
|
|
|
|
"typescript": "^4.3.4",
|
2020-08-18 15:40:31 +00:00
|
|
|
"typescript-formatter": "^7.2.2"
|
|
|
|
}
|
|
|
|
}
|