setup-gcloud/deploy-cloudrun/package.json
Averi Kitsch a85b04e409
feat!: Update Cloud Run action (#207)
* Refactor

* add merge

* linting

* update setup

* Update tests

* Add more e2e tests

* update workflow var

* fix typo

* Test workflow

* refactor tests

* Add clean up

* Add step

* fix env vars

* Fix typo

* fix readme

* update name

* remove dist

* remove dist

* fix dep

* Other IT run on push only
2020-10-23 18:42:03 -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.6",
"fs": "0.0.1-security",
"gaxios": "^3.0.3",
"google-auth-library": "^6.0.0",
"googleapis": "^49.0.0",
"yaml": "^1.9.2"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/lodash": "^4.14.162",
"@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",
"mocha": "^7.0.1",
"prettier": "^1.19.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
}
}