-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.4 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.4 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
{
"author": {
"email": "km.8k6ce+github@gmail.com",
"name": "kei-g"
},
"bin": {
"dockerhub-patch": "dist/index.js"
},
"bug": {
"url": "https://github.com/kei-g/dockerhub-patch/issues"
},
"dependencies": {
"@actions/core": "^3.0.1"
},
"description": "DockerHub Patch Action",
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@types/mocha": "^10.0.10",
"@types/node": "^25.6.0",
"c8": "^11.0.0",
"esbuild": "^0.28.0",
"esbuild-register": "^3.6.0",
"mocha": "^11.7.5",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.3",
"typescript": "^6.0.3"
},
"homepage": "https://github.com/kei-g/dockerhub-patch",
"license": "BSD-3-Clause",
"main": "dist/index.js",
"name": "@kei-g/dockerhub-patch",
"private": true,
"publishConfig": {
"access": "restricted",
"registry": "http://localhost"
},
"repository": "github:kei-g/dockerhub-patch",
"scripts": {
"build": "esbuild src/bin/patch.ts --bundle --charset=utf8 --format=cjs --minify --outfile=dist/index.js --platform=node --target=node20",
"clean": "rimraf coverage/ dist/index.js",
"cover": "c8 --check-coverage _mocha",
"lint": "biome lint --write",
"prebuild": "run-s lint",
"prepublishOnly": "run-s build",
"postpublish": "run-s clean",
"start": "node --require esbuild-register src/bin/patch.ts",
"test": "run-p cover lint"
},
"version": "1.0.0"
}