2020-08-07 05:01:05 -04:00
|
|
|
{
|
|
|
|
"name": "setup-buildx",
|
2020-08-15 22:10:09 -04:00
|
|
|
"description": "Set up Docker Buildx",
|
2020-08-07 05:01:05 -04:00
|
|
|
"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",
|
2020-08-15 22:10:09 -04:00
|
|
|
"url": "git+https://github.com/docker/setup-buildx-action.git"
|
2020-08-07 05:01:05 -04:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"docker",
|
|
|
|
"buildx"
|
|
|
|
],
|
2020-08-15 22:10:09 -04:00
|
|
|
"author": "Docker",
|
|
|
|
"contributors": [
|
|
|
|
"CrazyMax"
|
|
|
|
],
|
2020-08-07 05:01:05 -04:00
|
|
|
"license": "Apache-2.0",
|
|
|
|
"dependencies": {
|
|
|
|
"@actions/core": "^1.2.4",
|
|
|
|
"@actions/exec": "^1.0.4",
|
|
|
|
"@actions/http-client": "^1.0.8",
|
|
|
|
"@actions/tool-cache": "^1.5.5",
|
|
|
|
"semver": "^7.3.2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/jest": "^26.0.3",
|
|
|
|
"@types/node": "^14.0.14",
|
|
|
|
"@zeit/ncc": "^0.22.3",
|
2020-08-15 22:18:06 -04:00
|
|
|
"dotenv": "^8.2.0",
|
2020-08-07 05:01:05 -04:00
|
|
|
"jest": "^26.1.0",
|
|
|
|
"jest-circus": "^26.1.0",
|
|
|
|
"jest-runtime": "^26.1.0",
|
|
|
|
"prettier": "^2.0.5",
|
|
|
|
"ts-jest": "^26.1.1",
|
|
|
|
"typescript": "^3.9.5",
|
|
|
|
"typescript-formatter": "^7.2.2"
|
|
|
|
}
|
|
|
|
}
|