auth/package.json
Google GitHub Actions Bot 55bd3a7c6e
Release: v2.1.2 (#399)
## What's Changed
* Remove documentation on retries (deprecated) by @sethvargo in
https://github.com/google-github-actions/auth/pull/392
* Add security considerations for Attribute Conditions by @sethvargo in
https://github.com/google-github-actions/auth/pull/393
* security: bump undici from 5.28.2 to 5.28.3 by @dependabot in
https://github.com/google-github-actions/auth/pull/394
* Reduce warnings to info level with a warning icon by @sethvargo in
https://github.com/google-github-actions/auth/pull/397

## New Contributors
* @dependabot made their first contribution in
https://github.com/google-github-actions/auth/pull/394

**Full Changelog**:
https://github.com/google-github-actions/auth/compare/v2.1.1...bf02f20c66a26ba12adc45fa735c39f496ab04df
2024-02-25 19:44:23 +00:00

43 lines
1.2 KiB
JSON

{
"name": "@google-github-actions/auth",
"version": "2.1.2",
"description": "Authenticate to Google Cloud using OIDC tokens or JSON service account keys.",
"main": "dist/main/index.js",
"scripts": {
"build": "ncc build -m src/main.ts -o dist/main && ncc build -m src/post.ts -o dist/post",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write **/*.ts",
"test": "bash ./bin/runTests.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/google-github-actions/auth"
},
"keywords": [
"actions",
"google cloud",
"identity",
"auth",
"oidc"
],
"author": "GoogleCloudPlatform",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/http-client": "^2.2.0",
"@google-github-actions/actions-utils": "^0.7.0"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}