setup-gcloud/package.json
Google GitHub Actions Bot 5a5f7b85fc
Release: v2.0.1 (#674)
## What's Changed
* Update README and CI to use latest version by @sethvargo in
https://github.com/google-github-actions/setup-gcloud/pull/665
* Don't warn when version is "latest" by @sethvargo in
https://github.com/google-github-actions/setup-gcloud/pull/669
* Only warn when there are no authentications by @sethvargo in
https://github.com/google-github-actions/setup-gcloud/pull/671
* Fix edge case when gcloud is not installed at all by @sethvargo in
https://github.com/google-github-actions/setup-gcloud/pull/672
* Rename test step to a more accurate name by @sethvargo in
https://github.com/google-github-actions/setup-gcloud/pull/673


**Full Changelog**:
https://github.com/google-github-actions/setup-gcloud/compare/v2.0.0...0c32996ccb17f02aad9bfa7dcc490f9115e67709
2023-12-20 23:21:29 -05:00

45 lines
1.3 KiB
JSON

{
"name": "setup-gcloud",
"version": "2.0.1",
"description": "Setup gcloud GitHub action",
"main": "dist/main/index.js",
"scripts": {
"build": "ncc build -m src/main.ts",
"format": "prettier --write **/*.ts",
"integration": "node --require ts-node/register --test-reporter spec --test tests/integration.test.ts",
"lint": "eslint . --ext .ts,.tsx",
"test": "node --require ts-node/register --test-reporter spec --test tests/setup-gcloud.test.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/google-github-actions/setup-gcloud"
},
"keywords": [
"actions",
"google cloud",
"gcloud",
"sdk",
"cloud sdk",
"setup"
],
"author": "GoogleCloudPlatform",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/tool-cache": "^2.0.1",
"@google-github-actions/actions-utils": "^0.4.10",
"@google-github-actions/setup-cloud-sdk": "^1.1.3"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vercel/ncc": "^0.38.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint": "^8.55.0",
"prettier": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}