forked from google-github-actions/setup-gcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "setup-gcloud",
"version": "0.6.0",
"description": "Setup gcloud GitHub action",
"main": "dist/main/index.js",
"scripts": {
"build": "ncc build -m src/main.ts -o dist/main && ncc build -m src/post.ts -o dist/post",
"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.7.0",
"@actions/tool-cache": "^1.7.2",
"@google-github-actions/actions-utils": "^0.3.0",
"@google-github-actions/setup-cloud-sdk": "^0.5.0"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.31",
"@types/sinon": "^10.0.11",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"@vercel/ncc": "^0.33.4",
"chai": "^4.3.6",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"sinon": "^13.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}