1
0
Files
setup-qemu-action/package.json
T

49 lines
1.3 KiB
JSON
Raw Normal View History

{
"name": "docker-setup-qemu",
"description": "Install QEMU static binaries",
"main": "lib/main.js",
"scripts": {
2022-03-22 20:15:50 +01:00
"build": "ncc build src/main.ts --source-map --minify --license licenses.txt",
2023-02-19 21:19:05 +01:00
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
"format": "eslint --fix src/**/*.ts __tests__/**/*.ts",
"test": "jest --coverage",
"all": "yarn run build && yarn run format && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/docker/setup-qemu-action.git"
},
"keywords": [
"actions",
"docker",
"qemu"
],
"author": "Docker",
"contributors": [
2020-08-19 13:12:21 +02:00
{
"name": "CrazyMax",
"url": "https://crazymax.dev"
}
],
"license": "Apache-2.0",
"dependencies": {
2022-09-30 06:06:29 +00:00
"@actions/core": "^1.10.0",
2023-02-19 20:49:10 +01:00
"@docker/actions-toolkit": "^0.1.0-beta.14"
},
"devDependencies": {
2022-03-22 20:15:50 +01:00
"@types/node": "^16.11.26",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"@vercel/ncc": "^0.33.3",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
2023-02-19 21:19:05 +01:00
"eslint-plugin-jest": "^26.1.1",
2022-03-22 20:15:50 +01:00
"eslint-plugin-prettier": "^4.0.0",
2023-02-19 21:19:05 +01:00
"jest": "^27.2.5",
2022-03-22 20:15:50 +01:00
"prettier": "^2.3.1",
2023-02-19 21:19:05 +01:00
"ts-jest": "^27.1.2",
2022-03-22 20:15:50 +01:00
"ts-node": "^10.7.0",
"typescript": "^4.4.4"
}
}