UNPKG

action-docker-image-publish

Version:
77 lines (76 loc) 2.44 kB
{ "name": "action-docker-image-publish", "version": "3.3.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.2", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^16.0.0", "@rollup/plugin-swc": "^0.4.0", "@rollup/plugin-terser": "^0.4.4", "@tada5hi/commitlint-config": "^1.2.4", "@tada5hi/eslint-config-typescript": "^1.2.14", "@tada5hi/semantic-release": "^0.3.2", "@types/dockerode": "^3.3.35", "@types/jest": "^29.5.14", "@types/md5": "^2.3.5", "@types/minimatch": "^5.1.2", "@types/node": "^22.13.9", "@types/semver": "^7.5.8", "cross-env": "^7.0.3", "eslint": "^8.53.0", "husky": "^9.1.7", "jest": "^29.7.0", "rollup": "^4.34.9", "semantic-release": "^24.2.3", "semantic-release-major-tag": "^0.3.2", "ts-jest": "^29.2.6", "typescript": "^5.8.2" }, "dependencies": { "@actions/core": "^1.11.1", "@actions/github": "^6.0.0", "md5": "^2.3.0", "semver": "^7.7.1" } }