action-docker-image-publish
Version:
Release (build, tag & push) docker images.
72 lines (71 loc) • 2.25 kB
JSON
{
"name": "action-docker-image-publish",
"version": "3.4.0",
"description": "Release (build, tag & push) docker images.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "rimraf dist && npm run build:types && npm run build:js",
"commit": "npx git-cz",
"lint": "eslint --ext .js,.ts ./src",
"lint:fix": "npm run lint -- --fix",
"test": "cross-env NODE_ENV=test jest --config ./test/jest.config.js",
"test:coverage": "npm run test -- --coverage",
"prepare": "npx husky install",
"start": "node dist/index.js"
},
"author": {
"name": "Peter Placzek",
"email": "contact@tada5hi.net",
"url": "https://github.com/tada5hi"
},
"license": "MIT",
"keywords": [
"docker",
"release",
"publish",
"tag",
"build",
"push",
"versioning"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tada5hi/action-docker-image-publish.git"
},
"bugs": {
"url": "https://github.com/tada5hi/action-docker-image-publish/issues"
},
"homepage": "https://github.com/tada5hi/action-docker-image-publish#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-swc": "^0.4.0",
"@rollup/plugin-terser": "^0.4.4",
"@tada5hi/commitlint-config": "^1.2.6",
"@tada5hi/eslint-config-typescript": "^1.2.17",
"@types/dockerode": "^3.3.42",
"@types/md5": "^2.3.5",
"@types/minimatch": "^5.1.2",
"@types/node": "^22.17.0",
"@types/semver": "^7.7.0",
"cross-env": "^10.0.0",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"rollup": "^4.46.2",
"typescript": "^5.9.2",
"workspaces-publish": "^1.4.5"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"md5": "^2.3.0",
"semver": "^7.7.2"
}
}