forked from google-github-actions/setup-cloud-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@google-github-actions/setup-cloud-sdk",
"version": "0.1.0",
"description": "Utilities to download, install and interact with the Cloud SDK for GitHub Actions",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"build": "ncc build src/index.ts",
"lint": "eslint src/ tests/ --ext .ts,.tsx",
"format": "prettier --write src/*.ts tests/*.ts",
"docs": "typedoc --out docs src/index.ts",
"test": "mocha -r ts-node/register -t 600s 'tests/*.ts' --exit"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/google-github-actions/setup-cloud-sdk"
},
"keywords": [
"Cloud SDK",
"google cloud",
"gcloud"
],
"author": "Google LLC",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"@actions/tool-cache": "^1.3.1",
"@lifeomic/attempt": "^3.0.0",
"typed-rest-client": "^1.8.6"
},
"devDependencies": {
"@types/chai": "^4.2.x",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"@vercel/ncc": "^0.31.1",
"chai": "^4.2.x",
"chai-as-promised": "^7.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.2",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"typedoc": "^0.22.4",
"typedoc-plugin-markdown": "^3.10.4",
"typescript": "^4.4.3"
}
}