mirror of
https://github.com/docker/setup-qemu-action
synced 2024-11-10 06:41:40 +00:00
37 lines
827 B
JSON
37 lines
827 B
JSON
|
{
|
||
|
"name": "docker-setup-qemu",
|
||
|
"description": "Install QEMU static binaries",
|
||
|
"main": "lib/main.js",
|
||
|
"scripts": {
|
||
|
"build": "tsc && ncc build",
|
||
|
"format": "prettier --write **/*.ts",
|
||
|
"format-check": "prettier --check **/*.ts",
|
||
|
"pre-checkin": "yarn run format && yarn run build"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/docker/setup-qemu-action.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"actions",
|
||
|
"docker",
|
||
|
"qemu"
|
||
|
],
|
||
|
"author": "Docker",
|
||
|
"contributors": [
|
||
|
"CrazyMax"
|
||
|
],
|
||
|
"license": "Apache-2.0",
|
||
|
"dependencies": {
|
||
|
"@actions/core": "^1.2.4",
|
||
|
"@actions/exec": "^1.0.4"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/node": "^14.0.14",
|
||
|
"@zeit/ncc": "^0.22.3",
|
||
|
"prettier": "^2.0.5",
|
||
|
"typescript": "^3.9.5",
|
||
|
"typescript-formatter": "^7.2.2"
|
||
|
}
|
||
|
}
|