-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
59 lines (59 loc) · 1.81 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": "create-cloud-deploy-release",
"version": "1.1.4",
"description": "Github Action: Create Cloud Deploy Release",
"main": "dist/index.js",
"scripts": {
"build": "ncc build -m src/main.ts -o dist/main",
"lint": "eslint .",
"format": "eslint . --fix",
"test": "node --require ts-node/register --test-reporter spec --test ./tests/unit/main.test.ts ./tests/unit/output-parser.test.ts",
"e2e-tests": "node --require ts-node/register --test-reporter spec --test ./tests/e2e.test.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/google-github-actions/create-cloud-deploy-release.git"
},
"keywords": [
"actions",
"google",
"cloud deploy",
"cloud",
"deploy",
"containers",
"delivery",
"pipeline"
],
"author": "Google LLC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/google-github-actions/create-cloud-deploy-release/issues"
},
"homepage": "https://github.com/google-github-actions/create-cloud-deploy-release#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.2",
"@google-github-actions/actions-utils": "^0.8.6",
"@google-github-actions/setup-cloud-sdk": "^1.1.9",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.13.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"@vercel/ncc": "^0.38.3",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint": "^9.19.0",
"googleapis": "^144.0.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.22.0",
"typescript": "^5.7.3",
"yaml": "^2.7.0"
}
}