forked from google-github-actions/deploy-cloud-functions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
56
57
58
59
{
"name": "deploy-cloud-functions",
"version": "0.10.1",
"description": "Deploy a Cloud Function",
"main": "dist/index.js",
"scripts": {
"build": "ncc build -m src/main.ts",
"cleanup": "mocha -r ts-node/register -t 240s 'tests/cleaner/*.test.ts'",
"e2e-tests": "mocha -r ts-node/register -t 120s 'tests/e2e/*.test.ts'",
"fixlint": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write **/*.ts",
"lint": "eslint . --ext .ts,.tsx",
"test": "mocha -r ts-node/register -t 600s 'tests/*.test.ts'"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add dist/"
}
},
"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.9.1",
"@actions/http-client": "^2.0.1",
"@google-github-actions/actions-utils": "^0.4.2",
"archiver": "^5.3.1",
"google-auth-library": "^8.4.0",
"ignore": "^5.2.0"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"@vercel/ncc": "^0.34.0",
"chai": "^4.3.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint": "^8.22.0",
"mocha": "^10.0.0",
"node-stream-zip": "^1.15.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}