0.1.1 • Published 6 years ago
mklicense-cli v0.1.1
mklicense
Easily generate a LICENSE for your next project
Installation
To install the package globally run npm i -g mklicense-cli
Usage
Simply run mklicense in the directory where you want a new LICENSE and follow the prompts
Tags
The type of license you wish to create can also be specified using a flag that corresponds to that license. For example, to create an ISC license in your current directory run mklicense --isc.
| License | Flag |
|---|---|
| MIT | --mit |
| ISC | --isc |
| GNU GPL | --mit |
| MPL | --mpl |
Supported Licenses
- MIT License
- ISC License
- GNU General Public License (v3.0 or later)
- Mozilla Public License (v2.0)
If you would like support for a license not listed above, please open an issue.
Contributing
This project is open to and encourages contributions! Feel free to discuss any bug fixes/features in the issues. If you wish to work on this project:
- Fork this project
- Create a branch (
git checkout -b new-branch) - Commit your changes (
git commit -am 'add new feature') - Push to the branch (
git push origin new-branch) - Submit a pull request!