-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.65 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
56
57
58
59
60
61
62
63
64
65
{
"name": "docker-meta",
"description": "Generates docker bake metadata like tags, labels and build args",
"version": "0.0.0-development",
"author": "Felipe Santos @felipecrs",
"bin": {
"docker-meta": "lib/index.js"
},
"bugs": "https://github.com/felipecrs/docker-meta/issues",
"dependencies": {
"clipanion": "^4.0.0-rc.4",
"cosmiconfig": "^9.0.0",
"nano-spawn": "^2.0.0",
"picocolors": "^1.1.1",
"semver": "^7.7.2"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.5",
"@types/common-tags": "^1.8.4",
"@types/node": "^22.20.1",
"@types/semver": "^7.8.0",
"c8": "^11.0.0",
"common-tags": "^1.8.2",
"conventional-changelog-conventionalcommits": "^9.3.1",
"eslint": "^9.39.5",
"eslint-plugin-unicorn": "^63.0.0",
"installed-check": "^10.0.1",
"neostandard": "^0.13.0",
"prettier": "^3.9.6",
"semantic-release": "^25.0.8",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=22.18"
},
"files": [
"/lib"
],
"homepage": "https://github.com/felipecrs/docker-meta#readme",
"keywords": [
"docker",
"docker-bake",
"docker-buildx"
],
"license": "MIT",
"type": "module",
"exports": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/felipecrs/docker-meta.git"
},
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"lint": "tsc --noEmit && eslint . && prettier --check . && installed-check --ignore-dev",
"prepack": "npm run build",
"test": "c8 vitest --no-watch",
"posttest": "npm run lint"
},
"volta": {
"node": "24.19.0",
"npm": "11.19.0"
}
}