
## What's Changed * Update dependencies and tweak README by @sethvargo in https://github.com/google-github-actions/auth/pull/237 * Switch to auth@v1 by @sethvargo in https://github.com/google-github-actions/auth/pull/238 **Full Changelog**: https://github.com/google-github-actions/auth/compare/v0.8.3...d419231eb96d10101085218406fb847f866ed776
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"name": "@google-github-actions/auth",
|
|
"version": "1.0.0",
|
|
"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": "mocha -r ts-node/register -t 120s 'tests/**/*.test.ts'"
|
|
},
|
|
"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.0",
|
|
"@actions/http-client": "^2.0.1",
|
|
"@google-github-actions/actions-utils": "^0.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.4",
|
|
"@types/mocha": "^10.0.0",
|
|
"@types/node": "^18.11.9",
|
|
"@typescript-eslint/eslint-plugin": "^5.42.1",
|
|
"@typescript-eslint/parser": "^5.42.1",
|
|
"@vercel/ncc": "^0.34.0",
|
|
"chai": "^4.3.7",
|
|
"eslint": "^8.27.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"mocha": "^10.1.0",
|
|
"prettier": "^2.7.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.8.4"
|
|
}
|
|
}
|