mirror of
https://github.com/google-github-actions/setup-gcloud.git
synced 2026-08-24 20:49:21 +00:00
Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.2.4 to 1.2.6. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
60 lines
1.7 KiB
JSON
60 lines
1.7 KiB
JSON
{
|
|
"name": "deploy-cloud-functions",
|
|
"version": "0.1.0",
|
|
"description": "Deploy a Cloud Function",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "ncc build src/main.ts",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"fixlint": "eslint . --ext .ts,.tsx --fix",
|
|
"format": "prettier --write **/*.ts",
|
|
"test": "mocha -r ts-node/register -t 600s 'tests/*.test.ts'",
|
|
"e2e-tests": "mocha -r ts-node/register -t 120s 'tests/e2e/e2e.test.ts'",
|
|
"cleanup": "mocha -r ts-node/register -t 240s 'tests/cleaner/cleanTestFunctions.test.ts'"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run build && git add dist/"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/GoogleCloudPlatform/github-actions"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"gcf",
|
|
"functions",
|
|
"google cloud",
|
|
"cloud function"
|
|
],
|
|
"author": "GoogleCloudPlatform",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@types/archiver": "^3.1.0",
|
|
"archiver": "^5.0.0",
|
|
"fs": "0.0.1-security",
|
|
"gaxios": "^3.1.0",
|
|
"googleapis": "^58.0.0",
|
|
"google-auth-library": "^6.0.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.12",
|
|
"@types/lodash": "^4.14.159",
|
|
"@types/mocha": "^8.0.1",
|
|
"@types/node": "^14.0.27",
|
|
"@types/uuid": "^8.0.1",
|
|
"@typescript-eslint/eslint-plugin": "^3.8.0",
|
|
"@typescript-eslint/parser": "^3.8.0",
|
|
"@vercel/ncc": "^0.24.1",
|
|
"chai": "^4.2.0",
|
|
"eslint": "^7.6.0",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"mocha": "^8.1.1",
|
|
"prettier": "^2.0.5",
|
|
"ts-node": "^8.10.2",
|
|
"typescript": "^3.9.7"
|
|
}
|
|
}
|