setup-gcloud/appengine-deploy/package.json
2020-10-12 12:33:42 -05:00

51 lines
1.3 KiB
JSON

{
"name": "appengine-deploy",
"version": "0.1.0",
"description": "Github Action: Deploy to Google App Engine",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write **/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/github-actions"
},
"keywords": [
"actions",
"google cloud",
"app engine",
"deploy"
],
"author": "GoogleCloudPlatform",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.1.1",
"@actions/tool-cache": "^1.3.1",
"@types/js-base64": "^2.3.1",
"@types/tmp": "^0.1.0",
"child_process": "^1.0.2",
"js-base64": "^2.5.2",
"tmp": "^0.1.0"
},
"devDependencies": {
"@types/chai": "^4.2.x",
"@types/mocha": "^7.0.x",
"@types/node": "^12.12.27",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"@zeit/ncc": "^0.20.x",
"chai": "^4.2.x",
"eslint": "^6.8.x",
"eslint-config-prettier": "^6.10.x",
"eslint-plugin-prettier": "^3.1.x",
"husky": "^4.2.3",
"mocha": "^7.0.x",
"prettier": "^1.19.1",
"ts-node": "^8.6.x",
"typescript": "^3.7.x"
}
}