mirror of
https://github.com/google-github-actions/setup-gcloud.git
synced 2026-08-26 13:19:22 +00:00
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"name": "upload-cloud-storage",
|
|
"version": "0.1.0",
|
|
"description": "Upload to Google Cloud Storage (GCS)",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "ncc build src/main.ts",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"format": "prettier --write **/*.ts",
|
|
"test": "mocha -r ts-node/register -t 120s 'tests/*.test.ts'"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/GoogleCloudPlatform/github-actions"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"gcs",
|
|
"upload",
|
|
"google cloud",
|
|
"cloud storage"
|
|
],
|
|
"author": "GoogleCloudPlatform",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@google-cloud/storage": "^4.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.9",
|
|
"@types/mocha": "^7.0.1",
|
|
"@types/node": "^13.7.4",
|
|
"@types/sinon": "^7.5.2",
|
|
"@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.1",
|
|
"ts-node": "^8.6.2",
|
|
"typescript": "^3.8.2"
|
|
}
|
|
}
|