setup-gcloud/deploy-cloudrun/package.json
Averi Kitsch a244a889d6
Cloud Run Action (#117)
* Cloud Run Action Drafted

* Cloud Run action

* refactor

* rename

* Add metadata and tests

* Update Readme and required fields

* Update e2e tests

* Update tests

* Add log messages

* fix typo in obj field

* Update YAML

* Update Env Var names

* Update workflow tests

* Update tests

* Update testing

* Update tests

* Update workflow

* Update workflow dir

* fix typo

* test output

* Update integration tests

* add workdir

* set up auth for service request

* Add check for empty array

* Wait for URL

* fix test

* Update for PR comments
2020-07-30 12:59:17 -07:00

56 lines
1.5 KiB
JSON

{
"name": "deploy-cloudrun",
"version": "0.1.0",
"description": "Github Action: Deploy to Google Cloud Run",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write **/*.ts",
"test": "mocha -r ts-node/register -t 120s 'tests/unit/*.test.ts'",
"e2e-tests": "mocha -r ts-node/register -t 120s 'tests/e2e.test.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleCloudPlatform/github-actions.git"
},
"keywords": [
"actions",
"google",
"cloud",
"cloud",
"run"
],
"author": "Google LLC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GoogleCloudPlatform/github-actions/issues"
},
"homepage": "https://github.com/GoogleCloudPlatform/github-actions#readme",
"dependencies": {
"@actions/core": "^1.2.4",
"fs": "0.0.1-security",
"gaxios": "^3.0.3",
"googleapis": "^49.0.0",
"yaml": "^1.9.2"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/lodash": "^4.14.150",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.4",
"@types/uuid": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"@zeit/ncc": "^0.21.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"google-auth-library": "^6.0.0",
"mocha": "^7.0.1",
"prettier": "^1.19.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
}
}