forked from google-github-actions/setup-gcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.42 KB
/
package.json
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
{
"name": "setup-gcloud",
"version": "1.1.1",
"description": "Setup gcloud GitHub action",
"main": "dist/main/index.js",
"scripts": {
"build": "ncc build -m src/main.ts -o dist/main",
"format": "prettier --write **/*.ts",
"integration": "mocha -r ts-node/register -t 180s 'tests/integration/*.test.ts'",
"lint": "eslint . --ext .ts,.tsx",
"test": "mocha -r ts-node/register -t 180s 'tests/*.test.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.10.1",
"@actions/tool-cache": "^2.0.1",
"@google-github-actions/actions-utils": "^0.4.8",
"@google-github-actions/setup-cloud-sdk": "^1.1.2"
},
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.9",
"@types/sinon": "^10.0.20",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vercel/ncc": "^0.38.1",
"chai": "^4.3.10",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"sinon": "^17.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}