Package Exports
- simhelp
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (simhelp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Sim Help
Using your package.json
manifest to generate a simple help for your applications.
Install
$ npm install simhelp
Usage
// Init Config
var help = require('simhelp'),
pkg = require('./package');
// Program Information
var pnm = pkg.name, // => Sim Help
ver = pkg.version, // => 0.1.0
desc = pkg.description, // => Generate a simple help based on your package.json manifest.
aut = pkg.author.name, // => Vitor Britto
lic = pkg.license, // => MIT
repo = pkg.repo; // => https://github.com/vitorbritto/simhelp
// Show Help
help
.main(pnm, ver, desc)
.option('h', 'help', 'output help message')
.option('v', 'version', 'output app version')
.option('b', 'build', 'run your application')
.details(aut, lic, repo);
RETURN
-----------------------------------------------------------------
Sim Help - v0.1.0
Generate a simple help based on your package.json manifest.
-----------------------------------------------------------------
Usage: simhelp [options]
Options:
-h, --help output usage information
-v, --version output the version number
-b, --build run your application
Copyright (c) Vitor Britto
Licensed under the MIT license
https://github.com/vitorbritto/simhelp
-----------------------------------------------------------------
License
MIT License © Vitor Britto