46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"name": "@google-github-actions/auth",
|
|
"version": "0.7.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.6.0",
|
|
"@google-github-actions/actions-utils": "^0.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.1",
|
|
"@types/mocha": "^9.1.1",
|
|
"@types/node": "^17.0.25",
|
|
"@typescript-eslint/eslint-plugin": "^5.20.0",
|
|
"@typescript-eslint/parser": "^5.20.0",
|
|
"@vercel/ncc": "^0.33.4",
|
|
"chai": "^4.3.6",
|
|
"eslint": "^8.13.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"mocha": "^9.2.2",
|
|
"prettier": "^2.6.2",
|
|
"ts-node": "^10.7.0",
|
|
"typescript": "^4.6.3"
|
|
}
|
|
}
|