-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 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/deploy-cloud-functions",
"version": "4.0.0",
"description": "Deploy a Cloud Function",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist/ && ncc build -m src/main.ts -o dist/main",
"docs": "./node_modules/.bin/actions-gen-readme",
"lint": "eslint .",
"format": "eslint . --fix",
"test": "node --require ts-node/register --test-reporter spec --test tests/**/*.test.ts"
},
"engines": {
"node": ">= 24.x",
"npm": ">= 11.x"
},
"repository": {
"type": "git",
"url": "https://github.com/google-github-actions/deploy-cloud-functions"
},
"keywords": [
"actions",
"gcf",
"functions",
"google cloud",
"cloud function"
],
"author": "Google LLC",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/http-client": "^2.2.3",
"@google-github-actions/actions-utils": "^1.0.1",
"archiver": "^7.0.1",
"google-auth-library": "^10.3.0",
"ignore": "^7.0.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@types/archiver": "^6.0.3",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"@vercel/ncc": "^0.38.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint": "^9.34.0",
"node-stream-zip": "^1.15.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.42.0",
"typescript": "^5.9.2"
}
}