-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
52
53
54
55
{
"name": "@mathieu-bour/setup-gcloud",
"version": "1.3.1",
"description": "Install the Google Cloud SDK in your GitHub Actions workflow.",
"keywords": [
"github-actions",
"actions",
"google-cloud-sdk",
"gcloud "
],
"homepage": "https://github.com/mathieu-bour/setup-gcloud#readme",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/mathieu-bour/setup-gcloud/issues"
},
"license": "MIT",
"author": {
"name": "Mathieu Bour",
"email": "[email protected]",
"url": "https://github.com/mathieu-bour"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathieu-bour/setup-gcloud.git"
},
"scripts": {
"clean": "rimraf dist",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**\"",
"lint:fix": "eslint --fix \"src/**\"",
"prebuild": "npm run clean",
"build": "ncc build --source-map --no-source-map-register ./src/install.ts"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/tool-cache": "^1.6.1",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@types/node": "^12.19.15",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.18.0",
"eslint-config-prettier": "^6.14.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"standard-commit": "^4.2.4",
"typescript": "^4.1.3"
},
"private": true
}