2020-08-15 18:36:41 -04:00
|
|
|
{
|
|
|
|
"name": "docker-build-push",
|
2020-08-16 20:32:27 -04:00
|
|
|
"description": "Build and push Docker images",
|
2020-08-15 18:36:41 -04:00
|
|
|
"main": "lib/main.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc && ncc build",
|
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
2020-08-16 20:32:27 -04:00
|
|
|
"test": "jest --coverage",
|
2020-08-15 18:36:41 -04:00
|
|
|
"pre-checkin": "yarn run format && yarn run build"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/docker/build-push-action.git",
|
|
|
|
"directory": "setup-buildx"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"docker",
|
|
|
|
"build",
|
|
|
|
"push"
|
|
|
|
],
|
|
|
|
"author": "Docker",
|
|
|
|
"contributors": [
|
|
|
|
"CrazyMax"
|
|
|
|
],
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"dependencies": {
|
2020-08-16 16:31:37 -04:00
|
|
|
"@actions/cache": "^1.0.2",
|
2020-08-15 18:36:41 -04:00
|
|
|
"@actions/core": "^1.2.4",
|
|
|
|
"@actions/exec": "^1.0.4",
|
2020-08-16 17:01:53 -04:00
|
|
|
"git-url-parse": "^11.1.3"
|
2020-08-15 18:36:41 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-08-16 13:13:19 -04:00
|
|
|
"@types/git-url-parse": "^9.0.0",
|
2020-08-16 20:32:27 -04:00
|
|
|
"@types/jest": "^26.0.3",
|
2020-08-15 18:36:41 -04:00
|
|
|
"@types/node": "^14.0.14",
|
|
|
|
"@zeit/ncc": "^0.22.3",
|
2020-08-16 20:32:27 -04:00
|
|
|
"dotenv": "^8.2.0",
|
|
|
|
"jest": "^26.1.0",
|
|
|
|
"jest-circus": "^26.1.0",
|
|
|
|
"jest-runtime": "^26.1.0",
|
2020-08-15 18:36:41 -04:00
|
|
|
"prettier": "^2.0.5",
|
2020-08-16 20:32:27 -04:00
|
|
|
"ts-jest": "^26.1.1",
|
2020-08-15 18:36:41 -04:00
|
|
|
"typescript": "^3.9.5",
|
|
|
|
"typescript-formatter": "^7.2.2"
|
|
|
|
}
|
|
|
|
}
|