0.1.1 • Published 5 years ago

mklicense-cli v0.1.1

Weekly downloads
5
License
MIT
Repository
github
Last release
5 years ago

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.

LicenseFlag
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:

  1. Fork this project
  2. Create a branch (git checkout -b new-branch)
  3. Commit your changes (git commit -am 'add new feature')
  4. Push to the branch (git push origin new-branch)
  5. Submit a pull request!