New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

bumper

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bumper - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

bin/index.js

59

package.json
{
"name": "bumper",
"version": "1.0.0",
"description": "There is something coming",
"main": "index.js",
"version": "1.1.0",
"bin": "./bin/index.js",
"description": "Work better with libraries that follow semver",
"main": "./lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "release-to-github-with-changelog-pre-release-checks && npm run lint && npm run check-format && jest",
"check-format": "prettier-eslint \"{bin,lib}/**/*.js\" --list-different",
"lint": "eslint bin lib",
"release": "release-to-github-with-changelog && npm publish --access=public",
"format": "prettier-eslint \"{bin,lib}/**/*.js\" --write",
"test:watch": "jest --watch"
},
"author": "Michael J. Zoidl <npm@michaelzoidl.com> (http://michaelzoidl.com)",
"license": "ISC"
}
"files": [
"bin/",
"lib/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tankenstein/bumper.git"
},
"keywords": [
"npm",
"bump",
"version",
"semver"
],
"author": "Uku Markus Tammet <ukutammet@gmail.com>",
"license": "MIT",
"lint-staged": {
"*.js": [
"prettier-eslint \"{src,docs}/**/*.js\" --write",
"git add"
]
},
"dependencies": {
"chalk": "^2.4.1",
"get-stdin": "^6.0.0",
"semver": "^5.5.1",
"yargs": "^12.0.5"
},
"devDependencies": {
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.1.0",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"prettier-eslint-cli": "^4.7.1",
"release-to-github-with-changelog": "^1.2.1"
}
}

@@ -1,4 +0,35 @@

# Brace yourself...
![](http://cdn.meme.am/instances2/500x/4563848.jpg)
bumper
======
spoiler: it has something todo with changelogs and stuff...
Bumper helps you work with libraries.
## Usage
To install bumper, run:
```shell
npm install --global bumper
```
### Bump
Usage:
```shell
bumper bump <increment>
The bump command will bump the version in your package.json, package-lock.json and add a CHANGELOG.md entry if those files exist in your current directory.
Positionals:
increment Whether to bump the major, minor or patch version
Options for projects with a CHANGELOG.md file:
--title, -t Title of release
--description, -d Description of release, can be piped from stdin instead
Options:
-h, --help Show help
-v, --version Show version number
```
## Future
Bumper will house a mechanism to bump the version of your library inside other repos.
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc