forked from google-github-actions/deploy-cloudrun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.83 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
60
61
62
63
64
65
{
"name": "deploy-cloudrun",
"version": "0.5.0",
"description": "Github Action: Deploy to Google Cloud Run",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts",
"lint": "eslint src/ --ext .ts,.tsx",
"format": "prettier --write **/*.ts",
"test": "mocha -r ts-node/register -t 150s 'tests/unit/*.test.ts' --exit",
"e2e-tests": "mocha -r ts-node/register -t 150s 'tests/e2e.test.ts' --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/google-github-actions/deploy-cloudrun.git"
},
"keywords": [
"actions",
"google",
"cloud run",
"cloud",
"run",
"containers"
],
"author": "Google LLC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/google-github-actions/deploy-cloudrun/issues"
},
"homepage": "https://github.com/google-github-actions/deploy-cloudrun#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/tool-cache": "^1.6.1",
"@lifeomic/attempt": "^3.0.0",
"@types/tmp": "^0.2.0",
"fs": "0.0.1-security",
"google-auth-library": "^7.0.3",
"googleapis": "^70.0.0",
"tmp": "^0.2.1",
"typed-rest-client": "^1.8.3",
"yaml": "^1.10.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/js-yaml": "^4.0.0",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@types/sinon": "^9.0.11",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"@zeit/ncc": "^0.22.3",
"chai": "^4.2.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"sinon": "^10.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}