{"id":23230669,"url":"https://github.com/rse/kickout","last_synced_at":"2026-05-10T03:55:36.466Z","repository":{"id":66345611,"uuid":"87625231","full_name":"rse/kickout","owner":"rse","description":"Conveniently Release Git-Versioned NPM Package","archived":false,"fork":false,"pushed_at":"2024-06-07T15:29:58.000Z","size":79,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-28T13:08:04.442Z","etag":null,"topics":["git","npm","package","release","semver"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rse.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-04-08T10:13:31.000Z","updated_at":"2024-06-07T15:30:00.000Z","dependencies_parsed_at":"2024-06-07T17:10:40.254Z","dependency_job_id":null,"html_url":"https://github.com/rse/kickout","commit_stats":{"total_commits":120,"total_committers":1,"mean_commits":120.0,"dds":0.0,"last_synced_commit":"8ef16023870b14a12c59bbd4da268a1349c09c4d"},"previous_names":[],"tags_count":56,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rse%2Fkickout","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rse%2Fkickout/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rse%2Fkickout/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rse%2Fkickout/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rse","download_url":"https://codeload.github.com/rse/kickout/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247387087,"owners_count":20930772,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["git","npm","package","release","semver"],"created_at":"2024-12-19T02:11:06.692Z","updated_at":"2026-05-10T03:55:36.460Z","avatar_url":"https://github.com/rse.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\nKickout\n=======\n\n**Conveniently Release Git-Versioned NPM Package**\n\n\u003cp/\u003e\n\u003cimg src=\"https://nodei.co/npm/kickout.png?downloads=true\u0026stars=true\" alt=\"\"/\u003e\n\n\u003cp/\u003e\n\u003cimg src=\"https://david-dm.org/rse/kickout.png\" alt=\"\"/\u003e\n\nAbstract\n--------\n\nThis is a small opinionated Command-Line Interface (CLI) for\nconveniently releasing a Git-versioned NPM package. It performs sanity\nchecks, bumps the semantic version in `package.json`, commits the changes to Git,\ntags the repository with the new version and publishes the package via\nNPM. The particular executed command are:\n\n```\n$ git status --porcelain\n$ npm prepublish\n$ npm view \u003cpackage-name\u003e version\n# update package.json with \u003cpackage-version\u003e\n$ git commit -m \"release version \u003cpackage-version\u003e\" package.json\n$ git tag \u003cpackage-version\u003e\n$ git push \u0026\u0026 git push --tags\n$ npm publish --tag=\u003cpackage-tag\u003e\n```\n\nAttention\n---------\n\nThe executed shell commands might garble or even destroy some of your\ndata. Hence, be very careful and use the Kickout command on your own\nrisk. Especially, perform a dry-run with option `--noop` always first\nto see what particular commands would be executed. Also notice that the\ninitial \"npm publish\" intentionally has to be performed manually.\n\nInstallation\n------------\n\n```\n$ npm install -g kickout\n```\n\nUsage\n-----\n\n```\n$ kickout [-h] [-V] [-C] [-m \u003cmessage\u003e] [-t \u003ctag\u003e] major|minor|patch\n```\n\n- `-h`, `--help`\u003cbr/\u003e\n  Show program help information.\n- `-V`, `--version`\u003cbr/\u003e\n  Show program version information.\n- `-C`, `--noColor`\u003cbr/\u003e\n  Do not use any colors in output.\n- `-n`, `--noop`\u003cbr/\u003e\n  Do not execute any destructive commands at all.\n- `-m \u003cmessage\u003e`, `--message \u003cmessage\u003e`\u003cbr/\u003e\n  Use custom commit message (instead of `release version \u003cversion\u003e`).\n- `-t \u003ctag\u003e`, `--tag \u003ctag\u003e`\u003cbr/\u003e\n  Use particular NPM package tag (instead of `latest`).\n\nLicense\n-------\n\nCopyright (c) 2017-2025 Dr. Ralf S. Engelschall (http://engelschall.com/)\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frse%2Fkickout","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frse%2Fkickout","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frse%2Fkickout/lists"}