{"_id":"base-cli-process","maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"keywords":["api","app","application","base","base-plugin","baseplugin","building-blocks","cli","command-line","commands","create","framework","plugin","plugins","process","tool","toolkit","tools"],"dist-tags":{"latest":"0.1.19"},"author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","readme":"# base-cli-process [![NPM version](https://img.shields.io/npm/v/base-cli-process.svg?style=flat)](https://www.npmjs.com/package/base-cli-process) [![NPM monthly downloads](https://img.shields.io/npm/dm/base-cli-process.svg?style=flat)](https://npmjs.org/package/base-cli-process)  [![NPM total downloads](https://img.shields.io/npm/dt/base-cli-process.svg?style=flat)](https://npmjs.org/package/base-cli-process) [![Linux Build Status](https://img.shields.io/travis/node-base/base-cli-process.svg?style=flat&label=Travis)](https://travis-ci.org/node-base/base-cli-process)\n\n> Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/):\n\n```sh\n$ npm install --save base-cli-process\n```\n\n## Usage\n\nNormalizes the given object with [base-cli-schema](https://github.com/jonschlinkert/base-cli-schema) before calling the `.process` method from [base-cli](https://github.com/node-base/base-cli).\n\n```js\nvar Base = require('base');\nvar cli = require('base-cli-process');\n\nvar app = new Base();\napp.use(cli());\n\nvar pkg = require('./package');\n\napp.cli.process(pkg, function(err) {\n  if (err) throw err;\n});\n```\n\n## API\n\n### [.asyncHelpers](lib/fields/asyncHelpers.js#L15)\n\nLoad and register async template helpers from a glob or filepath.\n\n**Example**\n\n```sh\n$ app --asyncHelpers=\"foo.js\"\n```\n\n### [.config](lib/fields/config.js#L32)\n\nPersist a value to a namespaced config object in package.json. For example, if you're using `verb`, the value would be saved to the `verb` object.\n\n**Params**\n\n* **{Object}**: app\n\n**Example**\n\n```sh\n# display the config\n$ app --config\n# set a boolean for the current project\n$ app --config=toc\n# save the cwd to use for the current project\n$ app --config=cwd:foo\n# save the tasks to run for the current project\n$ app --config=tasks:readme\n```\n\n### [.cwd](lib/fields/cwd.js#L17)\n\nSet the `--cwd` to use in the current project.\n\n**Example**\n\n```sh\n$ app --cwd=foo\n```\n\n### [.data](lib/fields/data.js#L23)\n\nDefine data to be used for rendering templates.\n\n**Example**\n\n```sh\n$ app --data=foo:bar\n# {foo: 'bar'}\n\n$ app --data=foo.bar:baz\n# {foo: {bar: 'baz'}}\n\n$ app --data=foo:bar,baz\n# {foo: ['bar', 'baz']}}\n```\n\n### [.del](lib/fields/del.js#L20)\n\nDelete a value from `app`.\n\n**Example**\n\n```json\n# delete a value from package.json config (e.g. `verb` object)\n$ app --del=config.foo\n# delete a value from in-memory options\n$ app --del=option.foo\n# delete a property from the global config store\n$ app --del=globals.foo\n```\n\n### [.dest](lib/fields/dest.js#L17)\n\nSet a `dest` path on `app.options`.\n\n**Example**\n\n```sh\n$ app --dest=foo\n```\n\n### [.enable](lib/fields/enable.js#L14)\n\nEnable a configuration setting. Also pass `-c` to save the value to the `verb.config` object in package.json.\n\n**Example**\n\n```sh\n$ app --enable toc\n```\n\n### [.engines](lib/fields/engine.js#L12)\n\nAlias for [engines](#engines)\n\n### [.engines](lib/fields/engines.js#L15)\n\nLoad engines from a filepath or glob pattern.\n\n**Example**\n\n```sh\n$ app --engines=\"./foo.js\"\n```\n\n### [.get](lib/fields/get.js#L16)\n\nGet a value from `app` and set it on `app.cache.get` in memory, allowing the value to be re-used by another command, like `--set`.\n\n**Example**\n\n```json\n$ app --get=pkg.name\n```\n\n### [.help](lib/fields/help.js#L19)\n\nShow a help menu.\n\n**Example**\n\n```sh\n$ app --help\n```\n\n### [.helpers](lib/fields/helpers.js#L15)\n\nLoad and register async template helpers from a glob or filepath.\n\n**Example**\n\n```sh\n$ app --helpers=\"foo.js\"\n```\n\n### [.option](lib/fields/option.js#L15)\n\nSet options. This is the API-equivalent of calling `app.option('foo', 'bar')`.\n\n**Example**\n\n```sh\n$ app --option=foo:bar\n```\n\n### [.options](lib/fields/options.js#L15)\n\nSet options. This is the API-equivalent of calling `app.option('foo', 'bar')`.\n\n**Example**\n\n```sh\n$ app --options=foo:bar\n```\n\n### [.plugins](lib/fields/plugins.js#L15)\n\nLoad plugins from a filepath or glob pattern.\n\n**Example**\n\n```sh\n$ app --plugins=\"./foo.js\"\n```\n\n### [.run](lib/fields/run.js#L13)\n\nFor tasks to run, regardless of other options passed on the command line.\n\n**Example**\n\n```json\n$ app --run\n```\n\n### [.set](lib/fields/set.js#L17)\n\nSet the given value, or a value was previously cached by `--get`.\n\n**Example**\n\n```json\n$ app --set=pkg.name:foo\n# example: persist `pkg.name` to `store.data.name`\n$ app --get=pkg.name --set=store.name\n```\n\n### [.get](lib/fields/show.js#L16)\n\nGet a value from `app` and set it on `app.cache.get` in memory, allowing the value to be re-used by another command, like `--set`.\n\n**Example**\n\n```json\n$ app --get=pkg.name\n```\n\n### [.toc](lib/fields/toc.js#L20)\n\nEnable or disable Table of Contents rendering\n\n**Example**\n\n```sh\n# enable\n$ app --toc\n# or\n$ app --toc=true\n# disable\n$ app --toc=false\n```\n\n## About\n\n### Related projects\n\n* [base-cli](https://www.npmjs.com/package/base-cli): Plugin for base-methods that maps built-in methods to CLI args (also supports methods from a… [more](https://github.com/node-base/base-cli) | [homepage](https://github.com/node-base/base-cli \"Plugin for base-methods that maps built-in methods to CLI args (also supports methods from a few plugins, like 'base-store', 'base-options' and 'base-data'.\")\n* [base-config](https://www.npmjs.com/package/base-config): base-methods plugin that adds a `config` method for mapping declarative configuration values to other 'base… [more](https://github.com/node-base/base-config) | [homepage](https://github.com/node-base/base-config \"base-methods plugin that adds a `config` method for mapping declarative configuration values to other 'base' methods or custom functions.\")\n* [base](https://www.npmjs.com/package/base): base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting… [more](https://github.com/node-base/base) | [homepage](https://github.com/node-base/base \"base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting with a handful of common methods, like `set`, `get`, `del` and `use`.\")\n\n### Contributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).\n\n### Contributors\n\n| **Commits** | **Contributor** | \n| --- | --- |\n| 72 | [jonschlinkert](https://github.com/jonschlinkert) |\n| 1 | [slang800](https://github.com/slang800) |\n\n### Building docs\n\n_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_\n\nTo generate the readme, run the following command:\n\n```sh\n$ npm install -g verbose/verb#dev verb-generate-readme && verb\n```\n\n### Running tests\n\nRunning and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:\n\n```sh\n$ npm install && npm test\n```\n\n### Author\n\n**Jon Schlinkert**\n\n* [github/jonschlinkert](https://github.com/jonschlinkert)\n* [twitter/jonschlinkert](https://twitter.com/jonschlinkert)\n\n### License\n\nCopyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).\nReleased under the MIT License.\n\n***\n\n_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.4.3, on March 12, 2017._","repository":{"type":"git","url":"git+https://github.com/node-base/base-cli-process.git"},"bugs":{"url":"https://github.com/node-base/base-cli-process/issues"},"license":"MIT","versions":{"0.1.5":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.5","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.13","base-config-process":"^0.1.3","base-cwd":"^0.1.6","base-option":"^0.7.0","base-pkg":"^0.2.2","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","kind-of":"^3.0.2","lazy-cache":"^1.0.4","log-utils":"^0.1.3","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","os-homedir":"^1.0.1","pad-right":"^0.2.2","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.17.1","base":"^0.8.1","base-data":"^0.4.4","base-pipeline":"^0.2.5","delete":"^0.3.1","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.9","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.3","mocha":"^2.4.5"},"keywords":["base","baseplugin","cli","command-line","commands"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","verb"],"lint":{"reflinks":true}},"base":{"toc":true},"gitHead":"45ebc122e9449a1f2da4a429eb6095589b9101d6","_id":"base-cli-process@0.1.5","_shasum":"def70334d6c0d4bd1ad5353b22f7016410d82f35","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"def70334d6c0d4bd1ad5353b22f7016410d82f35","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.5.tgz","integrity":"sha512-gMFpGtbhPoKTNS7VZ58Kc6tgwE7KT0Iqiv4IP/uMyA4heQ92NBNgNmha3flcGAsd182ckv5a+eVvC6wpKfAX7w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEBrM+bNa3coDILCU07ArZH0dolou2ps8c2JO8pIacieAiBCaDEuYIa2AC4/D2BacDCvMMWaCF43tv6fvGPSyP4vGQ=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.5.tgz_1461803442605_0.7723934187088162"}},"0.1.6":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.6","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.13","base-config-process":"^0.1.3","base-cwd":"^0.1.6","base-option":"^0.7.0","base-pkg":"^0.2.2","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","kind-of":"^3.0.2","lazy-cache":"^1.0.4","log-utils":"^0.1.3","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","os-homedir":"^1.0.1","pad-right":"^0.2.2","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.17.1","base":"^0.8.1","base-data":"^0.4.4","base-pipeline":"^0.2.5","delete":"^0.3.1","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.9","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.3","mocha":"^2.4.5"},"keywords":["base","baseplugin","cli","command-line","commands"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","verb","templates","base-data","base-option","base-pipeline"],"lint":{"reflinks":true}},"gitHead":"684218f41ab90df3f0aa1818724f20869a34ebd2","_id":"base-cli-process@0.1.6","_shasum":"37d769f3787a13307ed8863346b60b0e66de84bf","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"37d769f3787a13307ed8863346b60b0e66de84bf","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.6.tgz","integrity":"sha512-20DWmGgHbCcI9s7vblvwilt/OpfhJwG6a1W/Hv8GG4cJSyKxLx7rVqVr9ttOiO5sN1TRAIZlRUtmtjkLfS9Tyg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDSjHKmyevqybJvtXpFA9akutpQfht4PqAu7c3BTH37VQIhAPlOQLgu+KyyS0dB2LghiHj97PV2JvP5kVzTVcSkK7kJ"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.6.tgz_1462317967762_0.5375986439175904"}},"0.1.3":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.3","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.8","base-config-process":"^0.1.3","base-cwd":"^0.1.6","base-option":"^0.7.0","base-pkg":"^0.2.2","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","kind-of":"^3.0.2","lazy-cache":"^1.0.3","log-utils":"^0.1.0","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","os-homedir":"^1.0.1","pad-right":"^0.2.2","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.17.0","base":"^0.8.1","base-data":"^0.4.3","base-pipeline":"^0.2.5","delete":"^0.3.0","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.8","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.3","mocha":"^2.4.5"},"keywords":["base","baseplugin","cli","command-line","commands"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","verb"],"lint":{"reflinks":true}},"base":{"toc":true},"gitHead":"41c1ef1ad4190ba5a020fb2c3557f0303d98080f","_id":"base-cli-process@0.1.3","_shasum":"6370464747ebce8c66aff36e2e966d9c43fc99e1","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"6370464747ebce8c66aff36e2e966d9c43fc99e1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.3.tgz","integrity":"sha512-qMWZvHxrP0p875ak6i+t2whsmXefKhcCcqrGAjacihws3LUD6ptWuUDpbo3m8O5EwhtqEYEs24GC//xiVVLy6Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC1mmNgzwKfyu9kIEFjSz+RSgWlsUPX+vogcVrLXZgTSwIgLtLs4MlcsDjwd3WEnUKOGYbXnbvfV9z9RFbGbC3cAYM="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.3.tgz_1461192529500_0.9983486279379576"}},"0.1.4":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.4","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.10","base-config-process":"^0.1.3","base-cwd":"^0.1.6","base-option":"^0.7.0","base-pkg":"^0.2.2","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","kind-of":"^3.0.2","lazy-cache":"^1.0.3","log-utils":"^0.1.0","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","os-homedir":"^1.0.1","pad-right":"^0.2.2","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.17.0","base":"^0.8.1","base-data":"^0.4.3","base-pipeline":"^0.2.5","delete":"^0.3.0","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.8","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.3","mocha":"^2.4.5"},"keywords":["base","baseplugin","cli","command-line","commands"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","verb"],"lint":{"reflinks":true}},"base":{"toc":true},"gitHead":"ec4f39237bf6ccc5be0ee1762ee8a135a41c5198","_id":"base-cli-process@0.1.4","_shasum":"ff86f17a1363228e64cfe2150af920a27b395839","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"ff86f17a1363228e64cfe2150af920a27b395839","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.4.tgz","integrity":"sha512-+qf/ZaNAwKwzxiK/6BS18ZDbR+Sss9hWTfArcJa3N0RQ5oZeuChrzJpbv3/L25C5WiLO9a+vvpi1bJ25W6OC/g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBbIq5BOX5s7xZTL7VR4nGv5d+NMHbHiYCKE14t2pQZZAiAhWScI7/a8XK8Jd3cfdybGAyplWDrEJMXDkKglhEdtvg=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.4.tgz_1461223898988_0.503142110304907"}},"0.1.9":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.9","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.18","base-config-process":"^0.1.3","base-cwd":"^0.1.6","base-option":"^0.7.0","base-pkg":"^0.2.2","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","kind-of":"^3.0.3","lazy-cache":"^2.0.1","log-utils":"^0.1.4","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","os-homedir":"^1.0.1","pad-right":"^0.2.2","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.17.1","base":"^0.8.1","base-data":"^0.4.4","base-pipeline":"^0.2.5","base-store":"^0.4.2","delete":"^0.3.1","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.9","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.3","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["base","baseplugin","cli","command-line","commands"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","base-data","base-option","base-pipeline","templates","verb"],"lint":{"reflinks":true}},"gitHead":"56d842f12e77aa87c70db1f9499cc2c828c77eac","_id":"base-cli-process@0.1.9","_shasum":"fdce1149d05491d51dad5699b420d85063dd93b6","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"fdce1149d05491d51dad5699b420d85063dd93b6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.9.tgz","integrity":"sha512-KXcKWXZ9ZS7pRD0CzPA+0gTDyQyMdHYTYyBY529X2x6Nw3KtnGGH5l8vlBH4aoqP2AhsEfOhqENJlxpkFEjONw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDjq/Gt3TuUS0aDDqZW9LG5Qm62SqqyD3BvPiIDN+LOwQIgWzgKBZ8EdNhB+5SR7epJCwIuuaW6souf8CEb3MzfEuM="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.9.tgz_1463083691927_0.057395457522943616"}},"0.1.19":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.19","homepage":"https://github.com/node-base/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Jon Schlinkert","email":"jon.schlinkert@sellside.com","url":"http://twitter.com/jonschlinkert"},{"name":"Sean Lang","email":"slang800@gmail.com","url":"http://slang.cx"}],"repository":{"type":"git","url":"git+https://github.com/node-base/base-cli-process.git"},"bugs":{"url":"https://github.com/node-base/base-cli-process/issues"},"license":"MIT","files":["index.js","lib"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.19","base-config-process":"^0.1.9","base-cwd":"^0.3.4","base-option":"^0.8.4","base-pkg":"^0.2.4","debug":"^2.6.2","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","is-valid-app":"^0.2.1","kind-of":"^3.1.0","lazy-cache":"^2.0.2","log-utils":"^0.2.1","merge-deep":"^3.0.0","mixin-deep":"^1.2.0","object.pick":"^1.2.0","pad-right":"^0.2.2","union-value":"^1.0.0"},"devDependencies":{"assemble-core":"^0.31.0","base":"^0.11.1","base-data":"^0.6.0","base-pipeline":"^0.3.2","base-store":"^0.4.4","delete":"^0.3.2","engine-base":"^0.1.3","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.11","gulp-istanbul":"^1.1.1","gulp-mocha":"^3.0.0","gulp-unused":"^0.2.1","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.4","minimist":"^1.2.0","mocha":"^3.2.0","verb-generate-readme":"^0.4.3"},"keywords":["api","app","application","base","base-plugin","baseplugin","building-blocks","cli","command-line","commands","create","framework","plugin","plugins","process","tool","toolkit","tools"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","base-data","base-option","base-pipeline","templates","verb","verb-readme-generator"],"lint":{"reflinks":true}},"gitHead":"3068d9c65d218ea2de0e9745805562ea86e56dd7","_id":"base-cli-process@0.1.19","_shasum":"320d3c8154df71096d481818e76fe6d7e4793636","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"320d3c8154df71096d481818e76fe6d7e4793636","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.19.tgz","integrity":"sha512-hH9MGqad9bZBmowsZ8uKL91rS4L+q4GEOc5SaL045jQWaR93sla0UI4Q9C6GzOD2AgVJulY2QtCMmwcBhdVYtQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCzsS/ASSOucdONFysvlqPj7OPVMt6SXFUQ8B7H3BbxNQIhANy+wtWI1YJKYVBNqYciEP53RyriqJyKGGavx8/lLQMk"}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.19.tgz_1489336923629_0.8037244060542434"}},"0.1.18":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.18","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib","README.md"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.19","base-config-process":"^0.1.8","base-cwd":"^0.3.2","base-option":"^0.8.4","base-pkg":"^0.2.4","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","is-valid-app":"^0.2.0","kind-of":"^3.0.3","lazy-cache":"^2.0.1","log-utils":"^0.1.4","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","pad-right":"^0.2.2","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.25.0","base":"^0.11.1","base-data":"^0.6.0","base-pipeline":"^0.3.2","base-store":"^0.4.4","delete":"^0.3.2","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.9","gulp-istanbul":"^1.0.0","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.3","minimist":"^1.2.0","mocha":"^2.5.3","verb-readme-generator":"^0.1.19"},"keywords":["api","app","application","base","baseplugin","building-blocks","cli","command-line","commands","create","framework","plugin","plugins","process","tool","toolkit","tools"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","base-data","base-option","base-pipeline","templates","verb","verb-readme-generator"],"lint":{"reflinks":true}},"gitHead":"bed028cbffbead42b3a9db853f03ed47bb7ff1d3","_id":"base-cli-process@0.1.18","_shasum":"6c545a66881c2b6e116e55834a32de860dd2c2cf","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"6c545a66881c2b6e116e55834a32de860dd2c2cf","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.18.tgz","integrity":"sha512-SIltrFe0HywgNMMnUHZL6QglXaoapC2xs6hi98nZiWmLLpRb5AnubK4l16t5b/4TtP0pmoUocvrMCfTyOnPrLQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC5lT6aoOXXwfED67rhzIOfxgtLaQfh8TlTgZBkx1YMqAiEAtHbPil/kmPaguNKXmU2Gxjpl58JpwmMeIVQO9GATtAc="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.18.tgz_1468354727459_0.5063458343502134"}},"0.1.7":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.7","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.18","base-config-process":"^0.1.3","base-cwd":"^0.1.6","base-option":"^0.7.0","base-pkg":"^0.2.2","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","kind-of":"^3.0.2","lazy-cache":"^1.0.4","log-utils":"^0.1.3","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","os-homedir":"^1.0.1","pad-right":"^0.2.2","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.17.1","base":"^0.8.1","base-data":"^0.4.4","base-pipeline":"^0.2.5","delete":"^0.3.1","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.9","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.3","mocha":"^2.4.5"},"keywords":["base","baseplugin","cli","command-line","commands"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","verb","templates","base-data","base-option","base-pipeline"],"lint":{"reflinks":true}},"gitHead":"683bf8a98a7d88c8bab4988e83fcd82733ee8922","_id":"base-cli-process@0.1.7","_shasum":"b8291ee8293655fe92735c30b8559273e2150fef","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"b8291ee8293655fe92735c30b8559273e2150fef","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.7.tgz","integrity":"sha512-Eztz3YDBj/DRRDP3fjaBbK1ymp9Z0ukS+70OBDBTetBvTCSKkaEnJtVhmqrEJwumiXTrIRiaynYDrjhAsHJjCw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDWXL1MqfOkfEjUof02OlH0GFuN21j1i8fhhjcDB6mwJQIgDuOCDFgNr96RJKxcc7KWSXSxji45apgq+FaV7EgINt0="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.7.tgz_1462623947404_0.41339869145303965"}},"0.1.17":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.17","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib","README.md"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.19","base-config-process":"^0.1.8","base-cwd":"^0.3.2","base-option":"^0.8.4","base-pkg":"^0.2.4","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","is-valid-app":"^0.2.0","kind-of":"^3.0.3","lazy-cache":"^2.0.1","log-utils":"^0.1.4","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","pad-right":"^0.2.2","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.25.0","base":"^0.11.1","base-data":"^0.6.0","base-pipeline":"^0.3.2","base-store":"^0.4.4","delete":"^0.3.2","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.9","gulp-istanbul":"^1.0.0","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.3","minimist":"^1.2.0","mocha":"^2.5.3","verb-readme-generator":"^0.1.19"},"keywords":["api","app","application","base","baseplugin","building-blocks","cli","command-line","commands","create","framework","plugin","plugins","process","tool","toolkit","tools"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","base-data","base-option","base-pipeline","templates","verb","verb-readme-generator"],"lint":{"reflinks":true}},"gitHead":"8d080ff77c40126521010101d18c909bc1396d67","_id":"base-cli-process@0.1.17","_shasum":"a482cc424bc5ecca7f67a1ed07bf12580470d356","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"a482cc424bc5ecca7f67a1ed07bf12580470d356","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.17.tgz","integrity":"sha512-3ROCvbhagNGs21jdC6Xr3ThKyrYnFMWUXvbqCDteZ+SWmRPyPfnL23R8ZmuTsT0JU9EZxT1xOFQB6pbKZbWFgQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCU49jk/g9sYXl9/ulFqxw4VYwPW4DQVTywJ9TWnLcuiwIhAJRJ6LKIiF35qMAiQaByLZq3OsOfEGmZsR/qBGFJpHGf"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.17.tgz_1468353911143_0.8002824953291565"}},"0.1.8":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.8","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.18","base-config-process":"^0.1.3","base-cwd":"^0.1.6","base-option":"^0.7.0","base-pkg":"^0.2.2","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","kind-of":"^3.0.2","lazy-cache":"^1.0.4","log-utils":"^0.1.3","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","os-homedir":"^1.0.1","pad-right":"^0.2.2","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.17.1","base":"^0.8.1","base-data":"^0.4.4","base-pipeline":"^0.2.5","base-store":"^0.4.2","delete":"^0.3.1","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.9","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.3","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["base","baseplugin","cli","command-line","commands"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","base-data","base-option","base-pipeline","templates","verb"],"lint":{"reflinks":true}},"gitHead":"8fe5e6d3210637e51a1cb2f054446f3f46f56870","_id":"base-cli-process@0.1.8","_shasum":"b66946122476cc411ae7e4aba6a5bf766c239709","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"b66946122476cc411ae7e4aba6a5bf766c239709","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.8.tgz","integrity":"sha512-g6p/Bai902aTE5mAdacRt72PyujXGVk0rdRczt22piHNkeAtHaCLMqVmRbAoQzw1bhQf8I9CLjSUYzW/BOWrQw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDhqA9eOH2hE1R+ZXMkDFkpOm0QBW4j4QBKQ0Aeiz1UYAiEAuHOQ53xVlEAhqTsxrBXE53jWPoI1Pk+oo/ilg+ZLa7o="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.8.tgz_1462793396965_0.2783107552677393"}},"0.1.16":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.16","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib","README.md"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.19","base-config-process":"^0.1.8","base-cwd":"^0.3.2","base-option":"^0.8.4","base-pkg":"^0.2.4","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","is-valid-app":"^0.2.0","kind-of":"^3.0.3","lazy-cache":"^2.0.1","log-utils":"^0.1.4","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","pad-right":"^0.2.2","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.25.0","base":"^0.11.1","base-data":"^0.6.0","base-pipeline":"^0.3.2","base-store":"^0.4.4","delete":"^0.3.2","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.9","gulp-istanbul":"^1.0.0","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.3","minimist":"^1.2.0","mocha":"^2.5.3","verb-readme-generator":"^0.1.19"},"keywords":["api","app","application","base","baseplugin","building-blocks","cli","command-line","commands","create","framework","plugin","plugins","process","tool","toolkit","tools"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","base-data","base-option","base-pipeline","templates","verb","verb-readme-generator"],"lint":{"reflinks":true}},"gitHead":"8f62b9c33bc285f7ad4a73a2054154293d81af6d","_id":"base-cli-process@0.1.16","_shasum":"f1642a3518907fe426f7a83400f42027eef5b77f","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"f1642a3518907fe426f7a83400f42027eef5b77f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.16.tgz","integrity":"sha512-6oCueLssC7JejcnStIkzEHVFalUsqnp7M5Wyj77b7zNZtkWQiZr8Neb/CAnVCB8mBWX89CmaWhotNdOgYH5X0g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD7IW8mFKdCbKq/nWbGbMxrlNq+CHev/YO2YF8R87P8uwIhAL2M1WdBqqDB2OVEf8UNu1Sr3LGN2IugGNCWopwq+VSW"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.16.tgz_1468198913130_0.8342117895372212"}},"0.1.1":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.1","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.7","base-config-process":"^0.1.1","base-cwd":"^0.1.6","base-option":"^0.7.0","base-pkg":"^0.2.0","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","kind-of":"^3.0.2","lazy-cache":"^1.0.3","log-utils":"^0.1.0","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","os-homedir":"^1.0.1","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.16.0","base":"^0.8.1","base-data":"^0.4.0","base-pipeline":"^0.2.5","delete":"^0.3.0","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.2","mocha":"^2.4.5"},"keywords":["base","baseplugin","cli","command-line","commands"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","verb"],"lint":{"reflinks":true}},"base":{"toc":true},"gitHead":"0d51d6154696397e8c297c33c6a8277a8bea09d5","_id":"base-cli-process@0.1.1","_shasum":"3f88a3b73596efe8012f82f53d70c5607e3b21b4","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"3f88a3b73596efe8012f82f53d70c5607e3b21b4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.1.tgz","integrity":"sha512-t7KT1uXt4nPS89X4h7pU/acWDEbVdi+F9yAubZuk70KFjcW1oi7gFufp8/KBkAlWjHqcHkaqEyMNhaJYQTG0JA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGchw55okj/tm8s+9Pp5YZ/v9pwJUjuFZUVbLg1zK4qHAiBwvg+M5UuXlJ7sGU+ndR3XVlLtih9lbNPtyro12uIePA=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.1.tgz_1460719524785_0.1391604896634817"}},"0.1.2":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.2","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.7","base-config-process":"^0.1.1","base-cwd":"^0.1.6","base-option":"^0.7.0","base-pkg":"^0.2.2","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","kind-of":"^3.0.2","lazy-cache":"^1.0.3","log-utils":"^0.1.0","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","os-homedir":"^1.0.1","pad-right":"^0.2.2","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.16.0","base":"^0.8.1","base-data":"^0.4.0","base-pipeline":"^0.2.5","delete":"^0.3.0","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.2","mocha":"^2.4.5"},"keywords":["base","baseplugin","cli","command-line","commands"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","verb"],"lint":{"reflinks":true}},"base":{"toc":true},"gitHead":"73870e28e8dac0579738a9884e173043e167c685","_id":"base-cli-process@0.1.2","_shasum":"ce67f859b59c03eac6f59c619120a4be5f71adb2","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"ce67f859b59c03eac6f59c619120a4be5f71adb2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.2.tgz","integrity":"sha512-4Rg6ai1Xoepy4xlOaDRCRc1Sb6k3IfGijsMZCVzkoqIcHfiO0nGoHJ2xUDh4b5hQV3TeWVoG4hv20egV9DvZfQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEbQ7igAbYGzXIgzno2/9jUXZ9bg/qWkcpc8UCGeSQJuAiBnOv9TAJijXvTEX7XoUWOEm3tkgQ8//X14/srEeH6TMQ=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.2.tgz_1461182509193_0.16693790815770626"}},"0.1.0":{"name":"base-cli-process","description":"Commonly used config mappings for the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.0","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.4.26","base-cli-schema":"^0.1.3","base-config-process":"^0.1.0","base-option":"^0.7.0","base-pkg":"^0.2.0","debug":"^2.2.0","export-files":"^2.1.1","kind-of":"^3.0.2","lazy-cache":"^1.0.3","log-utils":"^0.1.0","merge-deep":"^2.0.2","mixin-deep":"^1.1.3","object.pick":"^1.1.2","os-homedir":"^1.0.1","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.16.0","base":"^0.8.1","base-data":"^0.4.0","base-pipeline":"^0.2.5","delete":"^0.3.0","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.2","mocha":"^2.4.5"},"keywords":["base","baseplugin","commands","command-line","cli"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["verb","base-cli-schema","base-cli"],"lint":{"reflinks":true}},"gitHead":"7925f21b732967c52aff5c5c4f027b8c547d056f","_id":"base-cli-process@0.1.0","_shasum":"b9870a0e06cd447d29571e1611b76492c13c3365","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"b9870a0e06cd447d29571e1611b76492c13c3365","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.0.tgz","integrity":"sha512-nQmYZwr4wMwmckagKwgcevGuCQwKYNkaiOJgrNRrh3uRkkt8+l8SZejuP/KhbR7a07CzxWr/buNHnlxctkJ3dA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICfI/sbXo5LzuqWIcHB+NMj/fWSgZcmIPKeTVPd2sg67AiEAjliND8MROKiXVG7VUgyWzRJE/eSsPnlUvCHYoIHYcm4="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.0.tgz_1460418541553_0.6359329128172249"}},"0.1.15":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.15","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib","README.md"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.19","base-config-process":"^0.1.7","base-cwd":"^0.3.1","base-option":"^0.8.4","base-pkg":"^0.2.4","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","is-valid-app":"^0.2.0","kind-of":"^3.0.3","lazy-cache":"^2.0.1","log-utils":"^0.1.4","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","pad-right":"^0.2.2","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.25.0","base":"^0.11.1","base-data":"^0.6.0","base-pipeline":"^0.3.2","base-store":"^0.4.4","delete":"^0.3.2","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.9","gulp-istanbul":"^1.0.0","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.3","minimist":"^1.2.0","mocha":"^2.5.3","verb-readme-generator":"^0.1.19"},"keywords":["api","app","application","base","baseplugin","building-blocks","cli","command-line","commands","create","framework","plugin","plugins","process","tool","toolkit","tools"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","base-data","base-option","base-pipeline","templates","verb","verb-readme-generator"],"lint":{"reflinks":true}},"gitHead":"6b0cb9f0a5ee18f44e26cdfd95991e2937324fca","_id":"base-cli-process@0.1.15","_shasum":"d8a273937cb3e49f363804c9c1e06b9b39f8ea1d","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"d8a273937cb3e49f363804c9c1e06b9b39f8ea1d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.15.tgz","integrity":"sha512-IAkmxbYCFQ4fK4xoygZJZ3fXhte0/QC01SW6kyCKbEAc9RumFeSE+NIUOXFnr9VeK2vPxrDI78T4tRqNj5L5Ng==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDERojJ9Kgs5ZicFA4Xuo48gMDRhVrYLfrJC+NsGX7q3QIhAKYQw9b5tvKBsTT4vPBh45LYLi+YoDhmcpDIIgXCSxbM"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.15.tgz_1467920070976_0.9869776107370853"}},"0.1.14":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.14","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.19","base-config-process":"^0.1.7","base-cwd":"^0.2.1","base-option":"^0.8.3","base-pkg":"^0.2.4","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","is-valid-app":"^0.2.0","kind-of":"^3.0.3","lazy-cache":"^2.0.1","log-utils":"^0.1.4","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","pad-right":"^0.2.2","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.21.0","base":"^0.10.0","base-data":"^0.5.0","base-pipeline":"^0.3.1","base-store":"^0.4.4","delete":"^0.3.2","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.9","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.3","minimist":"^1.2.0","mocha":"^2.5.3","verb-readme-generator":"^0.1.13"},"keywords":["base","baseplugin","cli","command-line","commands"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","base-data","base-option","base-pipeline","templates","verb","verb-readme-generator"],"lint":{"reflinks":true}},"gitHead":"b5e1f0ed818a5b01c94664bbc1038c8952b86cf8","_id":"base-cli-process@0.1.14","_shasum":"cf1b9d7697e51cac316f9bc9f1da37859573bd0b","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"cf1b9d7697e51cac316f9bc9f1da37859573bd0b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.14.tgz","integrity":"sha512-wQQRjJIPK6L9xK3s7fU84XZQZS7VbMUoMhTw9qhMFITJtfRCn1w9bPUmsVzJ6vJZcgIfdKu2ZDE4YfP7sDzanA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGp3FUrUGap5zYeTaXVXWA8YNB3twxQz1WvPX+SVdFbtAiBOeb/WmuDZp3cXCASgriPXmx21IG9w4hmXNSj78FzeTg=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.14.tgz_1467450116939_0.16890551685355604"}},"0.1.13":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.13","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.19","base-config-process":"^0.1.6","base-cwd":"^0.2.0","base-option":"^0.8.2","base-pkg":"^0.2.3","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","is-valid-app":"^0.1.0","kind-of":"^3.0.3","lazy-cache":"^2.0.1","log-utils":"^0.1.4","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","os-homedir":"^1.0.1","pad-right":"^0.2.2","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.21.0","base":"^0.10.0","base-data":"^0.5.0","base-pipeline":"^0.3.1","base-store":"^0.4.4","delete":"^0.3.2","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.9","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.3","minimist":"^1.2.0","mocha":"^2.5.3","verb-readme-generator":"^0.1.13"},"keywords":["base","baseplugin","cli","command-line","commands"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","base-data","base-option","base-pipeline","templates","verb","verb-readme-generator"],"lint":{"reflinks":true}},"gitHead":"2afc6c4c52d31b14b7c99adb1c61fbb29f9ad5b6","_id":"base-cli-process@0.1.13","_shasum":"00168c46f972eac17e2f1eda7278efcb9e6c3bc1","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"00168c46f972eac17e2f1eda7278efcb9e6c3bc1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.13.tgz","integrity":"sha512-idkTUEiSloFRdKdgryee57vV8idewTPuGVBmb5x08+5hR7I8/kIkVLHciFIpVPKyTAwHEL+LbrrlkcJCghZ/RA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD3TBzd5vZqQNfR3T8mLBlP9ECK2rD3w2GKyPCb84hHxQIhAM+T0VrHnzZ5vXOQqCyG3Ys1ck/hqsuvQE7Mf/mb+TpW"}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.13.tgz_1466477313745_0.9988766254391521"}},"0.1.12":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.12","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.19","base-config-process":"^0.1.6","base-cwd":"^0.2.0","base-option":"^0.8.2","base-pkg":"^0.2.3","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","is-valid-app":"^0.1.0","kind-of":"^3.0.3","lazy-cache":"^2.0.1","log-utils":"^0.1.4","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","os-homedir":"^1.0.1","pad-right":"^0.2.2","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.21.0","base":"^0.10.0","base-data":"^0.5.0","base-pipeline":"^0.3.1","base-store":"^0.4.4","delete":"^0.3.2","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.9","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.3","minimist":"^1.2.0","mocha":"^2.5.3","verb-readme-generator":"^0.1.13"},"keywords":["base","baseplugin","cli","command-line","commands"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","base-data","base-option","base-pipeline","templates","verb","verb-readme-generator"],"lint":{"reflinks":true}},"gitHead":"85ec0df73319bbec9cb420de35b69ffa4f09e194","_id":"base-cli-process@0.1.12","_shasum":"960e56c91f3845d71e5b0260ea4a1777e031bda8","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"960e56c91f3845d71e5b0260ea4a1777e031bda8","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.12.tgz","integrity":"sha512-cRbSn9Q/OK/iPc13RFoxLgbjQ0C1MGfD/UOZaTeEbkbK/iuoCpWPkpe9f0yBZg9vAK1bqLjJdLyexeFD/Qki/g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD9gsRjn8+v/4mjD+umZQQF7k/zXZJgIjmUda9lawt3KAIhAJhApCYwwaBHPUatWWAXIYz6dJC2aPr/+f/3JCqKNNJJ"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.12.tgz_1465491428114_0.9098356894683093"}},"0.1.11":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.11","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.19","base-config-process":"^0.1.6","base-cwd":"^0.2.0","base-option":"^0.8.2","base-pkg":"^0.2.3","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","is-valid-app":"^0.1.0","kind-of":"^3.0.3","lazy-cache":"^2.0.1","log-utils":"^0.1.4","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","os-homedir":"^1.0.1","pad-right":"^0.2.2","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.21.0","base":"^0.10.0","base-data":"^0.5.0","base-pipeline":"^0.3.1","base-store":"^0.4.4","delete":"^0.3.2","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.9","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.3","minimist":"^1.2.0","mocha":"^2.5.3","verb-readme-generator":"^0.1.13"},"keywords":["base","baseplugin","cli","command-line","commands"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","base-data","base-option","base-pipeline","templates","verb","verb-readme-generator"],"lint":{"reflinks":true}},"gitHead":"d9bb7dfa030a02695099b3c5db06e3cbe1efc04d","_id":"base-cli-process@0.1.11","_shasum":"ed7a8234c056e198760d8829744287405d7595f1","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"ed7a8234c056e198760d8829744287405d7595f1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.11.tgz","integrity":"sha512-G0lXR/Jj7ZDebfh5dLDwDhNG35lKgiwMDjuVJoAF1z0VOhPaS7CsKRuU11BRRqo+kv4Sm2UsK8N26px+UwflSg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHCh8wG9kNrrTWyY/rl8ciFpnb2y62X2Ve3sxrWpM20DAiEAhazy2M3AKavTgZ2tuL4sO/SzJyjsys8XvhxKrhL46nQ="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.11.tgz_1465486843570_0.74189045233652"}},"0.1.10":{"name":"base-cli-process","description":"Normalizers for common argv commands handled by the base-cli plugin. Also pre-processes the given object with base-cli-schema before calling `.process()`","version":"0.1.10","homepage":"https://github.com/jonschlinkert/base-cli-process","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-cli-process.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-cli-process/issues"},"license":"MIT","files":["index.js","lib"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^3.1.0","arrayify-compact":"^0.2.0","base-cli":"^0.5.0","base-cli-schema":"^0.1.18","base-config-process":"^0.1.3","base-cwd":"^0.1.6","base-option":"^0.7.0","base-pkg":"^0.2.2","debug":"^2.2.0","export-files":"^2.1.1","fs-exists-sync":"^0.1.0","kind-of":"^3.0.3","lazy-cache":"^2.0.1","log-utils":"^0.1.4","merge-deep":"^3.0.0","mixin-deep":"^1.1.3","object.pick":"^1.1.2","os-homedir":"^1.0.1","pad-right":"^0.2.2","union-value":"^0.2.3"},"devDependencies":{"assemble-core":"^0.17.1","base":"^0.8.1","base-data":"^0.4.4","base-pipeline":"^0.2.5","base-store":"^0.4.2","delete":"^0.3.1","engine-base":"^0.1.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.9","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","gulp-unused":"^0.1.2","helper-coverage":"^0.1.3","helper-example":"^0.1.0","map-schema":"^0.2.3","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["base","baseplugin","cli","command-line","commands"],"verb":{"run":true,"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","base-cli","base-config"]},"reflinks":["base-cli","base-cli-schema","base-data","base-option","base-pipeline","templates","verb"],"lint":{"reflinks":true}},"gitHead":"7050997279bffd14c1c6d242ccf47c9517754766","_id":"base-cli-process@0.1.10","_shasum":"cb71db0381c7feb59998495b3ff6f6e4e7964c9a","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"cb71db0381c7feb59998495b3ff6f6e4e7964c9a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-cli-process/-/base-cli-process-0.1.10.tgz","integrity":"sha512-VBZp4k3Pt/gN6JFs9defIhfdb607hDBEuycKlxEG/afaVykYOsKPoZqxwC3/E3Xpnt0EqC7Mr/ivPz+vkIsOmg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDThXVPZB4FPNxr2My4KpV3msUKGvziwhlqislmmuBTCgIhAKEM+s/r7OeMXKQXHq+cj6wA52jdib9sxwLjLk2Vz94k"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-cli-process-0.1.10.tgz_1463083831746_0.2231295402161777"}}},"name":"base-cli-process","time":{"0.1.5":"2016-04-28T00:30:43.737Z","0.1.6":"2016-05-03T23:26:10.412Z","0.1.3":"2016-04-20T22:48:50.803Z","0.1.4":"2016-04-21T07:31:40.350Z","0.1.9":"2016-05-12T20:08:13.754Z","0.1.19":"2017-03-12T16:42:04.340Z","0.1.18":"2016-07-12T20:18:50.234Z","created":"2016-04-11T23:49:03.927Z","0.1.7":"2016-05-07T12:25:48.382Z","0.1.17":"2016-07-12T20:05:13.631Z","0.1.8":"2016-05-09T11:29:57.984Z","0.1.16":"2016-07-11T01:01:55.619Z","0.1.1":"2016-04-15T11:25:27.159Z","0.1.2":"2016-04-20T20:01:51.524Z","0.1.0":"2016-04-11T23:49:03.927Z","0.1.15":"2016-07-07T19:34:33.438Z","modified":"2025-05-07T15:10:48.769Z","0.1.14":"2016-07-02T09:01:59.087Z","0.1.13":"2016-06-21T02:48:35.165Z","0.1.12":"2016-06-09T16:57:10.648Z","0.1.11":"2016-06-09T15:40:46.084Z","0.1.10":"2016-05-12T20:10:34.286Z"},"readmeFilename":"README.md","contributors":[{"name":"Jon Schlinkert","email":"jon.schlinkert@sellside.com","url":"http://twitter.com/jonschlinkert"},{"name":"Sean Lang","email":"slang800@gmail.com","url":"http://slang.cx"}],"homepage":"https://github.com/node-base/base-cli-process"}