-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.54 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
{
"name": "@miragon/docker-cloud-build",
"version": "2.0.0",
"private": true,
"description": "Builds a docker image using Google Cloud Build and pushes it to Google Artifact Registry.",
"author": "Alexander Praschek <alexander.praschek@miragon.io>",
"homepage": "https://github.com/Miragon/docker-cloud-build",
"bugs": {
"url": "https://github.com/Miragon/docker-cloud-build/issues"
},
"license": "Apache-2.0",
"files": [
"dist"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "ssh://git@github.com/Miragon/docker-cloud-build.git"
},
"scripts": {
"dist": "rimraf dist && eslint src && tsc && ncc cache clean && ncc build src/index.ts -o dist --minify --no-cache --target es2023 --license licenses.txt",
"lint": "eslint src"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/glob": "^0.5.0",
"@google-cloud/cloudbuild": "^4.8.0",
"@google-cloud/storage": "^7.15.0",
"fs-extra": "^11.3.0",
"tar": "^7.4.3",
"uuid": "^11.0.5"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@stylistic/eslint-plugin": "^3.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.12.0",
"@types/tar": "^6.1.13",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.19.0",
"eslint-plugin-import": "^2.31.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.3"
},
"engines": {
"node": "*"
},
"packageManager": "yarn@4.6.0"
}