setup-gcloud/package.json
T Hernandez 38fab8887c
feat: cleanup old actions(#331)
* First pass of cleanup of old actions code

* fixed primary CHANGELOG file from setup-gcloud shift

* cleaning up old workflows

* removing working-directory spec as it's no longer needed

* Moar cleanup on the path to cleanup redemption

* "it now builds and tests pass locally"

* lint error cleanup

* More path cleanup

* addressing PR comments, more cleanup

* missed two files in last update

* Update README.md

Co-authored-by: Averi Kitsch <akitsch@google.com>
2021-07-23 13:24:52 -05:00

59 lines
1.5 KiB
JSON

{
"name": "setup-gcloud",
"version": "0.2.1",
"description": "Setup gcloud GitHub action",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts",
"lint": "eslint . --ext .ts,.tsx",
"test": "mocha -r ts-node/register -t 180s 'tests/*.test.ts'",
"format": "prettier --write **/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/google-github-actions/setup-gcloud"
},
"keywords": [
"actions",
"google cloud",
"gcloud",
"sdk",
"cloud sdk",
"setup"
],
"author": "GoogleCloudPlatform",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.3",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.6.1",
"@lifeomic/attempt": "^3.0.0",
"semver": "^7.1.3",
"tmp": "^0.1.0",
"typed-rest-client": "^1.8.4",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.4",
"@types/semver": "^7.1.0",
"@types/sinon": "^7.5.2",
"@types/tmp": "^0.1.0",
"@types/uuid": "^3.4.7",
"@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",
"husky": "^4.2.3",
"mocha": "^7.0.1",
"prettier": "^1.19.1",
"sinon": "^9.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
}
}