{"maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"dist-tags":{"latest":"1.12.0"},"author":{"name":"dthree"},"description":"Node's first framework for building immersive CLI apps.","readme":"# Vorpal\r\n\r\n\r\n[![Build Status](https://travis-ci.org/dthree/vorpal.svg)](https://travis-ci.org/dthree/vorpal/)\r\n<a href=\"https://www.npmjs.com/package/vorpal\">\r\n  <img src=\"https://img.shields.io/npm/dt/vorpal.svg\" alt=\"NPM Downloads\" />\r\n</a>\r\n[![Package Quality](http://npm.packagequality.com/shield/vorpal.svg)](http://packagequality.com/#?package=vorpal)\r\n<a href=\"https://www.npmjs.com/package/vorpal\">\r\n  <img src=\"https://img.shields.io/npm/v/vorpal.svg\" alt=\"NPM Version\" />\r\n</a>\r\n[![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo)\r\n\r\n> Conquer the command-line.\r\n\r\n```text\r\n              (O)\r\n              <M\r\n   o          <M\r\n  /| ......  /:M\\------------------------------------------------,,,,,,\r\n(O)[ vorpal ]::@+}==========================================------------>\r\n  \\| ^^^^^^  \\:W/------------------------------------------------''''''\r\n   o          <W\r\n              <W\r\n              (O)\r\n```\r\n\r\nVorpal is Node's first framework for building interactive CLI applications. With a simple and powerful API, Vorpal opens the door to a new breed of rich, immersive CLI environments like [cash](https://github.com/dthree/cash) and [wat](https://github.com/dthree/wat).\r\n\r\n## Notice\r\n\r\nThis is now an [OPEN Open Source](http://openopensource.org/) project. I am not able to invest a significant amount of time into maintaining Vorpal and so am looking for volunteers who would like to be active maintainers of the project. If you are interested, shoot me a note.\r\n\r\n## Contents\r\n\r\n* [Introduction](#introduction)\r\n* [Getting Started](#getting-started)\r\n* [API](#api)\r\n* [Extensions](#extensions)\r\n* [FAQ](#faq)\r\n* [License](#license)\r\n\r\n## Introduction\r\n\r\nInspired by and based on [commander.js](https://www.npmjs.com/package/commander), Vorpal is a framework for building immersive CLI applications built on an interactive prompt provided by [inquirer.js](https://www.npmjs.com/package/inquirer). Vorpal launches Node into an isolated CLI environment and provides a suite of API commands and functionality including:\r\n\r\n* [x] Simple, powerful command creation\r\n* [x] Supports optional, required and variadic arguments and options\r\n* [x] Piped commands\r\n* [x] Persistent command history\r\n* [x] Built-in help\r\n* [x] Built-in tabbed auto-completion\r\n* [x] Command-specific auto-completion\r\n* [x] Customizable prompts\r\n* [x] Extensive terminal control\r\n* [x] Custom event listeners\r\n* [x] And more\r\n\r\nVorpal supports [community extensions](https://github.com/vorpaljs/awesome-vorpaljs), which empower it to do awesome things such as [piping commands to less](https://github.com/vorpaljs/vorpal-less), [importing commands live](https://github.com/vorpaljs/vorpal-use) or supporting a [built-in REPL](https://github.com/vorpaljs/vorpal-repl).\r\n\r\nMade with :heart: by [dthree](https://github.com/dthree).\r\n\r\n## Getting Started\r\n\r\n##### Quick Start\r\n\r\nInstall `vorpal` into your project:\r\n\r\n```bash\r\n$ npm install vorpal --save\r\n```\r\n\r\nCreate a `.js` file and add the following:\r\n\r\n```js\r\nconst vorpal = require('vorpal')();\r\n\r\nvorpal\r\n  .command('foo', 'Outputs \"bar\".')\r\n  .action(function(args, callback) {\r\n    this.log('bar');\r\n    callback();\r\n  });\r\n\r\nvorpal\r\n  .delimiter('myapp$')\r\n  .show();\r\n```\r\nThis creates an instance of Vorpal, adds a command which logs \"bar\", sets the prompt delimiter to say \"myapp$\", and shows the prompt.\r\n\r\nRun your project file. Your Node app has become a CLI:\r\n\r\n```bash\r\n$ node server.js\r\nmyapp~$\r\n```\r\n\r\nTry out your \"foo\" command.\r\n\r\n```bash\r\nmyapp~$ foo\r\nbar\r\nmyapp~$\r\n```\r\n\r\nNow type \"help\" to see Vorpal's built in commands in addition to \"foo\":\r\n\r\n```bash\r\nmyapp~$ help\r\n\r\n  Commands\r\n\r\n    help [command]    Provides help for a given command.\r\n    exit [options]    Exits instance of Vorpal.\r\n    foo               Outputs \"bar\".\r\n\r\nmyapp~$\r\n```\r\n\r\nThere's the basics. Once you get the hang of it, [follow this tutorial](http://developer.telerik.com/featured/creating-node-js-command-line-utilities-improve-workflow/) or read on to learn what else Vorpal can do.\r\n\r\n##### Community\r\n\r\nQuestions? Use the `vorpal.js` StackOverflow tag for fast answers that help others, or jump into chat on Gitter.\r\n\r\n- [Stack Overflow](http://stackoverflow.com/questions/tagged/vorpal.js) \r\n- [Gitter Chat](https://gitter.im/dthree/vorpal?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) \r\n- [Vorpal extensions](https://github.com/vorpaljs/awesome-vorpaljs#vorpal-extensions) \r\n- [Projects made with Vorpal](https://github.com/vorpaljs/awesome-vorpaljs) \r\n- [Follow @vorpaljs](https://twitter.com/vorpaljs) \r\n\r\n## [API](https://github.com/dthree/vorpal/wiki)\r\n\r\n##### [Command](https://github.com/dthree/vorpal/wiki/api-|-vorpal.command)\r\n- [`vorpal.command`](https://github.com/dthree/vorpal/wiki/api-%7C-vorpal.command#vorpalcommandcommand-description)\r\n- [`command.description`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.command#commanddescriptionstring)\r\n- [`command.alias`](https://github.com/dthree/vorpal/wiki/api-%7C-vorpal.command#commandaliasname-names)\r\n- [`command.parse`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.command#commandparseparsefunction)\r\n- [`command.option`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.command#commandoptionstring-description)\r\n- [`command.hidden`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.command#commandhidden)\r\n- [`command.remove`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.command#commandremove)\r\n- [`command.help`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.command#commandhelp)\r\n- [`command.autocomplete`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.command#commandautocompletearray-or-object-or-function)\r\n- [`command.action`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.command#commandactionfunction)\r\n- [`command.cancel`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.command#commandcancelfunction)\r\n\r\n##### [Mode](https://github.com/dthree/vorpal/wiki/API-|-vorpal.mode)\r\n- [`vorpal.mode`](https://github.com/dthree/vorpal/wiki/API-%7C-vorpal.mode#vorpalmodecommand-description)\r\n- [`mode.delimiter`](https://github.com/dthree/vorpal/wiki/API-|-vorpal.mode#modedelimiterstring)\r\n- [`mode.init`](https://github.com/dthree/vorpal/wiki/API-|-vorpal.mode#modeinitfunction)\r\n- [`mode.action`](https://github.com/dthree/vorpal/wiki/API-|-vorpal.mode#modeactionfunction)\r\n\r\n##### [Catch](https://github.com/dthree/vorpal/wiki/API-|-vorpal.catch)\r\n- [`vorpal.catch`](https://github.com/dthree/vorpal/wiki/API-%7C-vorpal.catch#catchcommand-description)\r\n\r\n##### [CommandInstance](https://github.com/dthree/vorpal/wiki/API-|-CommandInstance)\r\n- [`commandInstance.log`](https://github.com/dthree/vorpal/wiki/API-%7C-CommandInstance#commandinstancelogstring-strings)\r\n- [`commandInstance.prompt`](https://github.com/dthree/vorpal/wiki/API-%7C-CommandInstance#commandinstancepromptobject-callback)\r\n- [`commandInstance.delimiter`](https://github.com/dthree/vorpal/wiki/API-%7C-CommandInstance#commandinstancedelimiterstring)\r\n\r\n##### [UI](https://github.com/dthree/vorpal/wiki/api-|-vorpal.ui)\r\n- [`ui.delimiter`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.ui#uidelimitertext)\r\n- [`ui.input`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.ui#uiinputtext)\r\n- [`ui.imprint`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.ui#uiimprint)\r\n- [`ui.submit`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.ui#uisubmittext)\r\n- [`ui.cancel`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.ui#uicancel)\r\n- [`ui.imprint`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.ui#uiimprint)\r\n- [`ui.redraw`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.ui#uiredrawtext-text)\r\n- [`ui.redraw.clear`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.ui#uiredrawclear)\r\n- [`ui.redraw.done`](https://github.com/dthree/vorpal/wiki/api-|-vorpal.ui#uiredrawdone)\r\n\r\n##### [Vorpal](https://github.com/dthree/vorpal/wiki/API-|-vorpal)\r\n- [`.parse`](https://github.com/dthree/vorpal/wiki/API-%7C-vorpal#vorpalparseargv-options)\r\n- [`.delimiter`](https://github.com/dthree/vorpal/wiki/API-%7C-vorpal#vorpaldelimiterstring)\r\n- [`.show`](https://github.com/dthree/vorpal/wiki/API-%7C-vorpal#vorpalshow)\r\n- [`.find`](https://github.com/dthree/vorpal/wiki/API-%7C-vorpal#vorpalfindstring)\r\n- [`.exec`](https://github.com/dthree/vorpal/wiki/API-%7C-vorpal#vorpalexeccommand-callback)\r\n- [`.execSync`](https://github.com/dthree/vorpal/wiki/API-%7C-vorpal#vorpalexecsynccommand-options)\r\n- [`.log`](https://github.com/dthree/vorpal/wiki/API-%7C-vorpal#vorpallogstring-strings)\r\n- [`.history`](https://github.com/dthree/vorpal/wiki/API-%7C-vorpal#vorpalhistoryid)\r\n- [`.localStorage`](https://github.com/dthree/vorpal/wiki/API-%7C-vorpal#vorpallocalstorageid)\r\n- [`.help`](https://github.com/dthree/vorpal/wiki/API-%7C-vorpal#vorpalhelpfunction)\r\n- [`.pipe`](https://github.com/dthree/vorpal/wiki/API-%7C-vorpal#vorpalpipefunction)\r\n- [`.use`](https://github.com/dthree/vorpal/wiki/API-%7C-vorpal#vorpaluseextension)\r\n\r\n##### [Events](https://github.com/dthree/vorpal/wiki/Docs-%7C-Events)\r\n\r\n\r\n## Extensions\r\n\r\nYou can build your own Vorpal commands and extensions.\r\n\r\n- [List of awesome extensions](https://github.com/vorpaljs/awesome-vorpaljs#vorpal-extensions)\r\n- [Building your own extension](https://github.com/dthree/vorpal/wiki/Docs-%7C-Creating-Extensions)\r\n\r\n\r\n## [FAQ](https://github.com/dthree/vorpal/wiki/FAQ)\r\n\r\n- [What is an \"immersive CLI app?\"](https://github.com/dthree/vorpal/wiki/FAQ#what-is-an-immersive-cli-app)\r\n- [Wasn't this called Vantage?](https://github.com/dthree/vorpal/wiki/FAQ#uh-wasnt-this-called-vantage)\r\n\r\n\r\n## Why Vorpal?\r\n\r\n```text\r\nOne, two! One, two! and through and through\r\nThe vorpal blade went snicker-snack!\r\nHe left it dead, and with its head\r\nHe went galumphing back.\r\n\r\nLewis Carroll, Jabberwocky\r\n```\r\n\r\n\r\n##### Life Goals:\r\n\r\n- <s>Build a popular framework based on the [Jabberwocky](https://en.wikipedia.org/wiki/Jabberwocky) poem.</s>\r\n\r\n\r\n## License\r\n\r\nMIT © [David Caccavella](https://github.com/dthree)\r\n","repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"users":{"aus":true,"xuu":true,"japh":true,"jetze":true,"razr9":true,"dthree":true,"lestad":true,"praxiq":true,"rupakg":true,"rybnik":true,"srbdev":true,"wickie":true,"alectic":true,"antanst":true,"shavyg2":true,"tapmodo":true,"abhisekp":true,"cantidio":true,"fearcode":true,"hrmoller":true,"hugovila":true,"jktravis":true,"paflopes":true,"reaktivo":true,"simon129":true,"solzimer":true,"tmurngon":true,"wendellm":true,"firefoxnx":true,"heartnett":true,"kaizendad":true,"tstringer":true,"ahmetertem":true,"dogancelik":true,"jakedetels":true,"monkeymonk":true,"myterminal":true,"prometheas":true,"quocnguyen":true,"ristomatti":true,"baranelitez":true,"daveskull81":true,"drew.brokke":true,"flumpus-dev":true,"strathausen":true,"charlespeters":true,"program247365":true,"thomasmeadows":true,"shanewholloway":true,"userzimmermann":true},"bugs":{"url":"https://github.com/dthree/vorpal/issues"},"license":"MIT","versions":{"1.0.0":{"name":"vorpal","version":"1.0.0","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.0.0","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"dist":{"shasum":"b75eb2c158f773262cdb677b9e43375370c804c0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.0.0.tgz","integrity":"sha512-OXrKV6Ts7WbsYS5BBWmxHA+qpJNNCo9E2LKEbc7ao2AWhn7wSYCkDm5ledkC4Qa3b3ZrjaxIYJtXSEBSlsfRgw==","signatures":[{"sig":"MEUCIQDlu/WIVr5XZE8amlIZmAc4efKUzOTWem+zS4JhTEjmNAIgXHAGqRPY61U/Co1XgyukwpM8uclyNHEYqdC1GTFuetQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"b75eb2c158f773262cdb677b9e43375370c804c0","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"10e180450fd6765e50b42fa791b7efab198061dc","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.0","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"2.4.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.8.5","minimist":"^1.1.2","commander":"^2.8.1","native-promise-only":"^0.8.0-a"},"eslintConfig":{"env":{"node":true,"browser":false},"rules":{"new-cap":0,"no-proto":0,"no-undef":0,"no-process-exit":0,"no-underscore-dangle":0,"no-use-before-define":0}},"preferGlobal":true,"devDependencies":{"gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.0.1":{"name":"vorpal","version":"1.0.1","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.0.1","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"dist":{"shasum":"f53f790df1dce180521993245f99a17852c84083","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.0.1.tgz","integrity":"sha512-C8JJfNGNkbXKAYCX6M6Zbungy9RXpXY6IXocToL5a3Lt9x1uiQIDkQ/yH+MRN9Nmt/RA7opfst8O+Y3Bv8/z1w==","signatures":[{"sig":"MEUCIHjk3lY/kGELKWreyMNXeEMvlrXzyzzKntI+GG/BA4nkAiEAww3/g5Wkc1rP9A5Gpyk2jZO6m0vXgq6eepfNe90t9Tc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"f53f790df1dce180521993245f99a17852c84083","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"79fb835cb9dc58bb4fa1559268e9714dfb3dbb45","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.0","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"2.4.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.8.5","minimist":"^1.1.2","commander":"^2.8.1","native-promise-only":"^0.8.0-a"},"eslintConfig":{"env":{"node":true,"browser":false},"rules":{"new-cap":0,"no-proto":0,"no-undef":0,"no-process-exit":0,"no-underscore-dangle":0,"no-use-before-define":0}},"preferGlobal":true,"devDependencies":{"gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.0.2":{"name":"vorpal","version":"1.0.2","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.0.2","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"dist":{"shasum":"150beeb008a8393f8d1df40a8fbd50ebbc42ce11","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.0.2.tgz","integrity":"sha512-LvKlOgDtmAWAnQ3rSFDSOfR27AM60D9aIKbzGlc0YSau7FW4Ta0a5/I1UACk55mEy8XhKzPiHD0RtvzzkUl6Xg==","signatures":[{"sig":"MEQCIGd/4EnXzrJ1U2lurstv8Fu7q8D+INIJGyjWlGdWY0YlAiBIIU31x0h8N/0+Dd/zU06oy90LmGe+o3TnJwAdQ4SJ3A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"150beeb008a8393f8d1df40a8fbd50ebbc42ce11","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"946227cb92912953b829c4d2f0a63344b65ce8fd","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.11.1","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"2.3.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.9.0","minimist":"^1.1.2","commander":"^2.8.1","native-promise-only":"^0.8.0-a"},"eslintConfig":{"env":{"node":true,"browser":false},"rules":{"new-cap":0,"no-proto":0,"no-undef":0,"no-process-exit":0,"no-underscore-dangle":0,"no-use-before-define":0}},"preferGlobal":true,"devDependencies":{"gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.0.3":{"name":"vorpal","version":"1.0.3","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.0.3","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"dist":{"shasum":"aa3098f71c291326fd700a423a1877292492a005","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.0.3.tgz","integrity":"sha512-4tBigBsUgcSUtsv79zLLSE25EGfjok69WlE13XVYu6zcJbBmuXgAFKD1p0exDH8f5Q/SoqFQ9Ac0l6eRQEdXZQ==","signatures":[{"sig":"MEYCIQCubnrt53b/n8K3DL8dwEm5/gdrsRksZyNOhP4wm9vCQAIhAPozIR1qIkNVZ88PCOodl97TWOMcoYvK/1jBuAgs9omo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"aa3098f71c291326fd700a423a1877292492a005","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"edc2bf0a4f24c5dee661ab307d9e33bf2304af6b","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.11.1","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"2.3.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.9.0","minimist":"^1.1.2","commander":"^2.8.1","native-promise-only":"^0.8.0-a"},"eslintConfig":{"env":{"node":true,"browser":false},"rules":{"new-cap":0,"no-proto":0,"no-undef":0,"no-process-exit":0,"no-underscore-dangle":0,"no-use-before-define":0}},"preferGlobal":true,"devDependencies":{"gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.0.4":{"name":"vorpal","version":"1.0.4","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.0.4","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"dist":{"shasum":"f6601c954a6ba3084f514116640e2853ba8bffe7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.0.4.tgz","integrity":"sha512-ZWT0XIasLRyU0n8dR4Scl3TBsci7jWjT3Wa4KtlDIWZRm6mwXpx/jIq68ZFszF+8JW8gOpwFZbgPuS7viYjCag==","signatures":[{"sig":"MEUCIC+wqvnbLWifbvRAA/Q0cCJ+zhTaRN5H5YaE70NqHFbwAiEA1pvKWSNJ4lcOVV4oWliahMxKmGke5d8o7Uqz69Un8Rk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"f6601c954a6ba3084f514116640e2853ba8bffe7","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"3e676e9fa0038893d777ca9a720a1f85bbc3de4e","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.11.1","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"2.3.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.9.0","minimist":"^1.1.2","commander":"^2.8.1","native-promise-only":"^0.8.0-a"},"eslintConfig":{"env":{"node":true,"browser":false},"rules":{"new-cap":0,"no-proto":0,"no-undef":0,"no-process-exit":0,"no-underscore-dangle":0,"no-use-before-define":0}},"preferGlobal":true,"devDependencies":{"gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.0.5":{"name":"vorpal","version":"1.0.5","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.0.5","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"dist":{"shasum":"48ba8c8bd1a37b7821d50b89cc7c1ec748287ff8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.0.5.tgz","integrity":"sha512-lN2mJhts/q5CvBFVApss/uNQtdjDERvk1TKiRs8IET2GLJQp+JNsfoZHo4jikY3HYuHMsWX/LXqTwxkfG/mKeA==","signatures":[{"sig":"MEUCIFkjMqcc/IsdrtTkHxRZ7rnGzypTAulMT4PwDR3K8zIPAiEA4+6r3Th561nz48EuzVT/lIezjOpEohP4QvgKAUFzlMg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"48ba8c8bd1a37b7821d50b89cc7c1ec748287ff8","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"31e079c04f51ff5cb533941e5e4ba2707cd2956a","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.11.1","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"2.3.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.9.0","minimist":"^1.1.2","commander":"^2.8.1","native-promise-only":"^0.8.0-a"},"eslintConfig":{"env":{"node":true,"browser":false},"rules":{"new-cap":0,"no-proto":0,"no-undef":0,"no-process-exit":0,"no-underscore-dangle":0,"no-use-before-define":0}},"preferGlobal":true,"devDependencies":{"gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.0.7":{"name":"vorpal","version":"1.0.7","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.0.7","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"dist":{"shasum":"6c8207fc689d0f44034a0c8e24d783cca85b9165","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.0.7.tgz","integrity":"sha512-ouKnsBa+NOQBrgskjwA7Hh6rcWROItn3a3+tvc+CnSAqKQ3Ff1EGMKPVaV7pCokqjaBjGXGRdc7z7PHZTxBEmg==","signatures":[{"sig":"MEUCIFLAenJl6/E5CfznRxLcEbb3AZYF5lT/G+s5dpPzvK5NAiEA/CtLAoMFI12/x3klzPT6ossaqCLzGmcO2dpxAYdCzjc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"6c8207fc689d0f44034a0c8e24d783cca85b9165","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"17fe20953a405b0cb32923632aa8efdeb1b58a9f","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.9.0","minimist":"^1.1.2","commander":"^2.8.1","native-promise-only":"^0.8.0-a"},"eslintConfig":{"env":{"node":true,"browser":false},"rules":{"new-cap":0,"no-proto":0,"no-undef":0,"no-process-exit":0,"no-underscore-dangle":0,"no-use-before-define":0}},"preferGlobal":true,"devDependencies":{"gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.0.8":{"name":"vorpal","version":"1.0.8","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.0.8","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"dist":{"shasum":"7f1d38c065e3dc4885a6f0c4b4697885c10d63a7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.0.8.tgz","integrity":"sha512-E/n17Q4XjRxIMoVPL5gFZuDEj/cJTl9ju44D0LOv7VNqJFlkyEvVJ2BewcQcgZbZr10w0FljW001K8grojbPjA==","signatures":[{"sig":"MEYCIQDp590DM33qw7IDSTuRCBlq4m3nX9JAAiolSt1EBzKkNwIhAN2baY0NgM/xIFBp8jMkk4aNQuyZhMoKLx3WvJjscGE8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"7f1d38c065e3dc4885a6f0c4b4697885c10d63a7","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"c1da4caa01305facfa80507031707ef4e015188b","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.10.0","minimist":"^1.1.2","commander":"^2.8.1","native-promise-only":"^0.8.0-a"},"eslintConfig":{"env":{"node":true,"browser":false},"rules":{"new-cap":0,"no-proto":0,"no-undef":0,"no-process-exit":0,"no-underscore-dangle":0,"no-use-before-define":0}},"preferGlobal":true,"devDependencies":{"gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.0.9":{"name":"vorpal","version":"1.0.9","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.0.9","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"dist":{"shasum":"ba6335af50b7eb182943b3093010adcdd195f6f8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.0.9.tgz","integrity":"sha512-lDnOnxYjPaTcEumxB5EwRDCz1TvAxSmBl8BTNSLJeC4LMjc6abkjl2tEdhSiR1Rry4yD56HA+F03YWqfG449kg==","signatures":[{"sig":"MEYCIQC0IqQJHWKxW4lzs23P6D4mlkXDyZEV6j7ozsAO8StQ3gIhAJ3WMp5OeUbqfH8x1m/pyeSJdZl1WFaXfBew7V1wLfM/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"ba6335af50b7eb182943b3093010adcdd195f6f8","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"1af63e3632403bcc2bf7a116896bd1189b49308a","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.10.0","minimist":"^1.1.2","commander":"^2.8.1","native-promise-only":"^0.8.0-a"},"eslintConfig":{"env":{"node":true,"browser":false},"rules":{"new-cap":0,"no-proto":0,"no-undef":0,"no-process-exit":0,"no-underscore-dangle":0,"no-use-before-define":0}},"preferGlobal":true,"devDependencies":{"gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.1.0":{"name":"vorpal","version":"1.1.0","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.1.0","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"951f2cf97e419c6a23e696e08d82114d4ee83e81","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.1.0.tgz","integrity":"sha512-E1I+rePlzosSyBDWQBOfYKln8Zqh2k7iV8p7s4vGFEooM9tETgBvGhQuAnhhLbmNPyZ+ppxNXCUpUNBAAa5vzg==","signatures":[{"sig":"MEQCIHwaeWXLi5buan4lDEG9zPDPU9udl2JE3F4Mzz7dJdqkAiB7vaPNXY5GAUep+1NED0AS9NVxKTUsAajbAdiCrHT84Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"951f2cf97e419c6a23e696e08d82114d4ee83e81","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"a6a24f19c78f83de6e191337fcb6e5ff9f824c9a","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.10.0","minimist":"^1.1.2","commander":"^2.8.1","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.1.1":{"name":"vorpal","version":"1.1.1","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.1.1","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"494c21250d21c11c8fd21c5254479e632053c150","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.1.1.tgz","integrity":"sha512-/oQbxFIFBrgJeppFCbCgv9Lqwxr8l/BPcpoBGytMZSBKRR9j5LNzjOo9CR5oIzN0puTCvtLkn8sON371GXbOCQ==","signatures":[{"sig":"MEUCIQCvIjw51vg1rOq1P83cVkgrbiwymHyvcqYa3JpLoiin5AIgfTs4yC7gfjd796b7DWd+xrOL/APhotmktbqcB/r/API=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"494c21250d21c11c8fd21c5254479e632053c150","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"871f845fdf5ef8b18721bd8303efbc00f7023f66","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.10.0","minimist":"^1.1.2","commander":"^2.8.1","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.1.2":{"name":"vorpal","version":"1.1.2","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.1.2","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"7b077b7d303124a55c089a70eaf1844ca58d45f3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.1.2.tgz","integrity":"sha512-RZenMgfIglCzHIrtxBt3G4AjIG6SIG4L3X3R145ojzIC7W2PLHfQ9iacez5LxvZCtTkh27SGcHolKHG8NROcMQ==","signatures":[{"sig":"MEQCICafDA6pspW/0NRqYPhAWOx02eZFS2Yay+O5cbKj7awzAiBPPYGgLtTuM4JUqI1QcKXn3WuHYBvcGSRCwZEbkBLH2A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"7b077b7d303124a55c089a70eaf1844ca58d45f3","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"ba73a55c9ecdb9ca59b8ce87903e0f399160933c","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.10.0","minimist":"^1.1.2","commander":"^2.8.1","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.1.3":{"name":"vorpal","version":"1.1.3","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.1.3","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"422df1048976f93d83e7cb581f6a2defef4cd4c2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.1.3.tgz","integrity":"sha512-QpLSB4cvW9JmCpoBL0fx6sbwJRzYbbHEytL0bV2VnerMZoA875Fk5UwfLZfhptL20oFVT0vKWIPOQwfr0GUu1w==","signatures":[{"sig":"MEUCIQDNOSrRIpsWGWUme1QGLcdMc5oe2ctnwMib+Mxa9YP5AgIgE4crovsRv8FOj6IO3OT3u2ZBNcOCpPpBN9tHEbxk88k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"422df1048976f93d83e7cb581f6a2defef4cd4c2","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"1d23cbd42f4875eb5766f486110365556ba62ee6","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.10.0","minimist":"^1.1.2","commander":"^2.8.1","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.1.4":{"name":"vorpal","version":"1.1.4","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.1.4","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"370f0b4db6b1d7ed1b14a4d2dac95e7a2f0678c9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.1.4.tgz","integrity":"sha512-gFJbyB8XOv9WrmcMd7wnt/Vqdb68saDMh50l+R+UdBkKbf03LT9+Yg8ovsp7s+HnSDM44fajPWDisc1T1jXE6Q==","signatures":[{"sig":"MEUCIQCaWLrN4NnWbF96tbUMA8i55o1Aw5WVM0vcQbPqp5CNuwIgKiTyvML1MJqBfyatPoiOskwCJzfVTy9HxCta09faXk0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"370f0b4db6b1d7ed1b14a4d2dac95e7a2f0678c9","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"f3e0336315882c17a6cb662028be3838fbd43532","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.10.0","minimist":"^1.1.2","commander":"^2.8.1","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.1.5":{"name":"vorpal","version":"1.1.5","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.1.5","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"7f65513335a304ddfcaf6f40177d8689767e6db4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.1.5.tgz","integrity":"sha512-mNDZxodUA9tV3IPCLObe55Lk9US9AUGg5SWzJR1w28UrPo2LqZJsrDUimaPTNUPd93U4tfazXS/eprOp0zNf3g==","signatures":[{"sig":"MEUCIHqvqxOTLp7qU48qiSqdUOEvL8te1fWok7bP8Ml4qBnSAiEA3XtGte29Jggtsxdba3Lz8dpwRQ2S1H7WPJNXRyySugA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"7f65513335a304ddfcaf6f40177d8689767e6db4","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"c6ea8da583ae100a3d6e69aef630e11af693e385","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.10.0","minimist":"^1.1.2","commander":"^2.8.1","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.1.6":{"name":"vorpal","version":"1.1.6","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.1.6","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"959fb98907ce04a6573812b6cadea633a57e8dc0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.1.6.tgz","integrity":"sha512-u6z0ZM9YN+M2damnDRswsUPYdvgXAfcebZM/oImhn0vQ2ZH71pb8EyHj/UCxzfTA7SdE5kX0MxZlF5pbV5Fekw==","signatures":[{"sig":"MEUCIEPV3ty94D4rj/mE9M1DzxsxKicSGmsXnrmAFucrd6EcAiEAq6mbQAGmaQWYnhIuaeEgeGzFtZobwUIVTgdbo/pKTnI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"959fb98907ce04a6573812b6cadea633a57e8dc0","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"dd5fd301ad52e5dc3eb9a474af113f5ed9e6032b","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.10.0","minimist":"^1.1.2","commander":"^2.8.1","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.1.7":{"name":"vorpal","version":"1.1.7","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.1.7","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"632335c8a9203f0190e602848b91b5aaef653ba7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.1.7.tgz","integrity":"sha512-KYykJzC4v+CWKKFcfSvtxKt93wSXEEmEn/3Rh5+WL/vUa28J1x52qwvX7XML8s8FHgurVSAFdl0Emzl9S5Cbeg==","signatures":[{"sig":"MEUCIQDUvoTQez3VgiRzicfXoZxcaD6bIhuYwUc1tDsz5tLEewIgZ8h6H4Uko4PtlUYFw10qKJNDGBlY+pvEyJHFhZrE+Uo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"632335c8a9203f0190e602848b91b5aaef653ba7","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"02a02ee1fa3b1a9da646db211638a5858b88eb33","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.10.0","minimist":"^1.1.2","commander":"^2.8.1","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.1.8":{"name":"vorpal","version":"1.1.8","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.1.8","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"d397ec7b981ee691e7199290cb3e1064ff17b40a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.1.8.tgz","integrity":"sha512-DE2YN9n+vk2EQK3If/B8tgG650rDOM7bxUiyOToZAp3UGdwltPZJTkJqjxSH2I9xskKBJKbKug6Vvo1qZn7PKA==","signatures":[{"sig":"MEUCIQDNTRd9ZgQeg7W+33CdXBS3qFJI3MN6t+H/D2WRcZyczwIgWuFLnwl7KjqT30qiw+Re+iRROPBA9w3b/YTyq0dQzvA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"d397ec7b981ee691e7199290cb3e1064ff17b40a","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"a05fb1894890f44546e692d8285ecac03e627edf","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.10.0","minimist":"^1.1.2","commander":"^2.8.1","log-update":"^1.0.1","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.1.9":{"name":"vorpal","version":"1.1.9","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.1.9","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"97e4149019c0aa236093872929fe5c648f03e416","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.1.9.tgz","integrity":"sha512-3mkXguqc2pWgnGgm/hcqHPgWBOWnUEjOlhPFKHmjBHTVqGeJwRTr4hl85LUXe6twyMtuDPjuHioco+f50/UIYQ==","signatures":[{"sig":"MEYCIQCnLY2FSnxS8EJvv5Bdv0mIrlMNxUPW8wHsmECB2iR9SAIhAIfOnaiiSLLC8UHdrWC+V9+l/G5AeNfWaxSmaxJiujUq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"97e4149019c0aa236093872929fe5c648f03e416","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"24191f625fc4d5aa5252ee175c3a8eb6be5da5af","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.10.0","minimist":"^1.1.2","commander":"^2.8.1","log-update":"^1.0.1","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.1.10":{"name":"vorpal","version":"1.1.10","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.1.10","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"5627b5c2dba39e58fd5314008bd37acc91ea93c0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.1.10.tgz","integrity":"sha512-CVCfdZd81Y64E3sCc8wRx7BPs/L2PqPhPMe3Xps2w8IGbcYxRMHeUfZIvLX9DFz3QGsheUa7VcQPLre2tnc64Q==","signatures":[{"sig":"MEUCIQD9xFHzg2DJQgg3oqLOtLEjyHukGjANgxw8YQFXWI7VOgIgCTB7RTBkHEgExfKhGhNWydrjCRWdAlyj+H8froPib70=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"5627b5c2dba39e58fd5314008bd37acc91ea93c0","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"ad702b0d86042c548a9b1b4761a2f78fa83cdb3e","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.10.0","minimist":"^1.1.2","commander":"^2.8.1","log-update":"^1.0.1","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0"}},"1.2.0":{"name":"vorpal","version":"1.2.0","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.2.0","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"64aa9caadc7377fbe11779111c143352e63a606a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.2.0.tgz","integrity":"sha512-TkCXoObdK792zrW6mmydpP6BaRtp8YpLFOiJ3XxEZkF1NjzHIyLHMyIvHTU3blp3+DV8CBnAflSEOCwCumoyvw==","signatures":[{"sig":"MEYCIQDCpCRM/Eq3lCQ4XE659uUPSqIMkYY4j398gi4zoX6IxQIhAI4yVenz51XxqGGKQxP8lN3cTUMBUmz+hqTNe+yRS74O","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"64aa9caadc7377fbe11779111c143352e63a606a","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"1d691cbb08f66aa59604fbcd91be4d3114adbc02","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.10.0","minimist":"^1.1.2","commander":"^2.8.1","log-update":"^1.0.1","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4"}},"1.2.1":{"name":"vorpal","version":"1.2.1","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.2.1","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"74adfe09a18e8d9193516939831adab40518d6e8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.2.1.tgz","integrity":"sha512-Yld/AqiSlufT2xqkUGTN2jHkPsGhlIyZ2D+XMq+oEHdmyShoNWd7jjbLWwqfjFT3pWjC5azIiPJ9O7te+OAGkA==","signatures":[{"sig":"MEYCIQD5CvGQJvWANGRW/Ot2gfdqmzEzdWgQgZt+ib3tyAfbUQIhAIz8F2iyh/b+YRWfWmrARBZhrKdyVORgY+PQeC2M71d0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"74adfe09a18e8d9193516939831adab40518d6e8","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"781ed5ca1f080585ee7f6a9c1a6daf174a4517b7","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.10.0","minimist":"^1.1.2","commander":"^2.8.1","log-update":"^1.0.1","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4"}},"1.2.3":{"name":"vorpal","version":"1.2.3","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.2.3","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"72b5aa00e355242079e9e42e0603cc036dfed830","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.2.3.tgz","integrity":"sha512-LpfqgoVxSq/ASB9b7ykGrhyAZp/0XpLDn7PNYif+++I5349kKyzmkIty17OlwWm8mOIAedZ6XzwsywEubo8lxQ==","signatures":[{"sig":"MEUCIQDZbMxKgoZvmpeysGQgl29Xtyt5BUEerSJjfHHt0O3LtgIgYJg2Bnx0vFwAmzVtRhDCUrerabDHYgAlwHSMgKKTyK8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"72b5aa00e355242079e9e42e0603cc036dfed830","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"e24293385a51ae9e78931832a2f513572aacce09","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"^0.10.0","minimist":"^1.1.2","commander":"^2.8.1","log-update":"^1.0.1","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4"}},"1.2.4":{"name":"vorpal","version":"1.2.4","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.2.4","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"7dd24b3cd4680c714f3fa7c77d3dd01e4b61a412","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.2.4.tgz","integrity":"sha512-dOx9WF41/fFLyHhniyxz62uMmLHITBy1O1i/wNg8+I8bjtUuP+WjqHmxAcDztXixaVMU+MwRfhSvmLvUXlaQGQ==","signatures":[{"sig":"MEYCIQCINcybPYg/NkMf2iAdGYzKGK9jBWC8OgQtHZfS8Z0GpQIhAIjmF/VTwRkdrqWokBKpyzyRnKSU+t3EY2ra9M8WlMGV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"7dd24b3cd4680c714f3fa7c77d3dd01e4b61a412","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"5608a4cba44e74f0cd20be5fa78fa6db5dd0ca62","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"0.10.0","minimist":"^1.1.2","commander":"^2.8.1","log-update":"^1.0.1","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4"}},"1.2.5":{"name":"vorpal","version":"1.2.5","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.2.5","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"3cca58e2244fb209d6228b9c7fc49cb582a30044","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.2.5.tgz","integrity":"sha512-QR5aFbTMOcQeczy5m/TwWSfjU39sRdr57+YjOzoNHRYWjQ50tS3FcNb5oGw5+0P1tekY9FRsvb2wmD8fqnn0pw==","signatures":[{"sig":"MEUCIG7J0sFG092X/5FC3wT9nb3sZUUAQjQZZyTi6MqbsOjpAiEA5YURqGq3vflrPv01tDCqKFORXXW9D5r2mdTxnhmOCIE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"3cca58e2244fb209d6228b9c7fc49cb582a30044","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"c001130ed4c92c9d4adbc1eb3d823dff16467d7e","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"0.10.1","minimist":"^1.1.2","commander":"^2.8.1","log-update":"^1.0.1","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4"}},"1.2.6":{"name":"vorpal","version":"1.2.6","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.2.6","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"98f21c241a226ab4507cd7bbfbed41570b20f941","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.2.6.tgz","integrity":"sha512-MyTCSz5YXBnAkZ2A3AzmlIpDhFmUpqryMESGjn9IEP+BxkGB3FHrEXXdtwLeiUyIRfymfBcOVGU3Qy5Nrtk4Cg==","signatures":[{"sig":"MEUCIQDE9GTylVAGCrXrWtNaUEKGE3zLLj24PzLlEh3L0bZTKgIgYwRILG8A6jHYb1OTXCJ+985BLRYiWFLK3DyAwSEZB1Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"98f21c241a226ab4507cd7bbfbed41570b20f941","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"56b6269e983d69769b7bf7e651e900d03a69eaa0","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"0.10.1","minimist":"^1.1.2","commander":"^2.8.1","log-update":"^1.0.1","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4"}},"1.3.0":{"name":"vorpal","version":"1.3.0","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.0","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"47696bb0d2bd104c64ad775bfbdf97c520c54d97","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.0.tgz","integrity":"sha512-Km7TmY1oDNTsmFBdUATNQWyuWGy/UZtZQN2uQjkoDus+ofsofiBZM5MDg0vf5IIRb5Roi7D8fMYcW4GFANVOsQ==","signatures":[{"sig":"MEQCIGXu4P0/Qg4ksCSU8BfCJnplxvehUdey8HmI3akpZshSAiAoonJn4xFGJFkD/HnTjoFx7lSLsHsyDT65AimNcH5ctQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"47696bb0d2bd104c64ad775bfbdf97c520c54d97","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"6e17d9031b29d34a70c4ccd81f8af016d841d83e","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"0.10.1","minimist":"^1.1.2","commander":"^2.8.1","log-update":"^1.0.2","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.1":{"name":"vorpal","version":"1.3.1","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.1","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"30b07f611e185ea515e649072a5ed35cf5732c20","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.1.tgz","integrity":"sha512-qTSZUmvpcZ2ixIt9M/FdssdSbTjM/QmfY19/82uEffANR2gMOD6SNOLVMtOtm9oQ82rwY75KthqRoHvwLPNmkw==","signatures":[{"sig":"MEUCIDpwEwuZy6SaTq/CRykmsx9aX+2phZri2PwrHigiOHIAAiEA1r+vQZUy8+Vvfp1yYrnlmTVYNo7+RcPk47qhknf31bs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"30b07f611e185ea515e649072a5ed35cf5732c20","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"7eb2d33ff72994aac566810301512733b5165366","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"0.10.1","minimist":"^1.1.2","commander":"^2.8.1","log-update":"^1.0.2","native-promise-only":"^0.8.0-a"},"preferGlobal":true,"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.2":{"name":"vorpal","version":"1.3.2","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.2","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"517e71a85c3677d28d40563c9b1ca75339f235d0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.2.tgz","integrity":"sha512-5spXuCxNck2cKYyueGTc6hii/ruYDwObOzfJRq78wHwRFtFoEqlWO7EEjqUVRYXy60/2/C5VUUrVBfCsnMGm6w==","signatures":[{"sig":"MEYCIQCCD6eoygSCyiZxylQyPElZS8cFnDl3SXg+Dxwb4i2BFAIhANvGEtYaqpvz1ROb67XiUWv90xSKRb3JUsZ+rZLuRs4F","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"517e71a85c3677d28d40563c9b1ca75339f235d0","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"7b715939c0d19c2aa0fb025999df3ef65f6c4a66","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.0","inquirer":"0.10.1","minimist":"^1.1.2","commander":"^2.8.1","log-update":"^1.0.2","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.3":{"name":"vorpal","version":"1.3.3","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.3","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"5db342eed403f73f36279c812331b5f6edb67457","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.3.tgz","integrity":"sha512-wd+9hhkhAB3MLb8rIc3360dX9lnZQVwfKl1c1+saOVVs7onnb4k+rrLpa8ejBmOQNC8MIqv4sRq1aH7PnI1WyQ==","signatures":[{"sig":"MEYCIQCgIyYC47ItBNxzS65k9mr7EdEnshEfjWDHTBYLFj/R2QIhAK+e5LJ84y9Lp76KaJi2QKOUQ+igdWU6oejC7BIlw40Y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"5db342eed403f73f36279c812331b5f6edb67457","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"c888b5f84f3568786b90dd752cc7be9c8b13b4c3","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.1.2","log-update":"^1.0.2","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.4":{"name":"vorpal","version":"1.3.4","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.4","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"0c58a4c7a44fbbfc3e729b7a8350531acd8d71c0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.4.tgz","integrity":"sha512-scltiDkW8QZlFRoAzL2PpuIRpMVD2AT5pTnZDIXLXxt6UIQ7mDeXcdRYHdgMKtZ+P90fFVFTC9OH86QbiSkzjw==","signatures":[{"sig":"MEYCIQD7xexlz0fFRs8xefwrRbPvvoUYxETbo6wavOi2tlDKWwIhAO2ViFYquFPjMq5F6FRh43LfF34Dh23OZDo8/XGqvk5L","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"0c58a4c7a44fbbfc3e729b7a8350531acd8d71c0","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"bf27a0f4c146910404dace93b6474cb04774455c","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.1.2","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.5":{"name":"vorpal","version":"1.3.5","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.5","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"d02d28c46cf271ab4026b7d6cfeb15aabdfc654e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.5.tgz","integrity":"sha512-fAVq58J6W7eiYwSf3uMc3pku0crdjJhcnlGUp0Y9rjl64Cug/ZQuEAOnSz9xhw29qbPDjSxLWqv6+YJW3unxuw==","signatures":[{"sig":"MEQCIB8K9X6sMSgDvgXkGsS5qLOWOXoRh8ExdbXfy6fZdAUnAiA4DU/pL+rgf/Pb2xXCNxnY7VCwgtOxQpleM6ma8i4zsw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"d02d28c46cf271ab4026b7d6cfeb15aabdfc654e","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"e718094b3d5df73483e66a09328c06ba30ba408a","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.1.2","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.6":{"name":"vorpal","version":"1.3.6","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.6","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"07bcebef49bcf578a36916fc12444b7984350817","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.6.tgz","integrity":"sha512-dXdIJMSUf6ygW1iHMLXQ1sxjDap7o5wUvrKBZosvgmk6FhcdDvh83X31w7roi2yS9V/jABT8agsgxBwa994fVA==","signatures":[{"sig":"MEUCICWKwajE/Vtl5kqkAsuGeFKLoVIEBq8KtqvF8E9q3giAAiEAqfcxFHR8xucAOMt179R63n+fb6Kp7S/Wy53T5wqQCkE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"07bcebef49bcf578a36916fc12444b7984350817","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"c104fb39d9ea2c32589204e4f8c46c62fa9696d9","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.1.2","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.7":{"name":"vorpal","version":"1.3.7","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.7","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"848400a1e1ee506b755d84690a18c3710657007b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.7.tgz","integrity":"sha512-v4EyUqe9ws3WmAphv6+zx8Bh5ink2DLVhHOQUGfg+1uKwXRrV6k81abetiSyT9wTnT1oAT/dRBsRdQGZOsORKQ==","signatures":[{"sig":"MEYCIQCB4yBqmucJkPPoseZgdBB/FGgK9Y+93XApCQTSZbDYcQIhAOsH9qqEbTE49gQSvwrLfYZwisC6IeZmwFU0XkZMRYed","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"848400a1e1ee506b755d84690a18c3710657007b","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"445d55bb7f2ede97b584f0190504e4a2918e72ad","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.8":{"name":"vorpal","version":"1.3.8","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.8","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"0a2858e06a229057581e615d22bcdbf7a6d63811","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.8.tgz","integrity":"sha512-yecx/y6XnyK4NSlemQfLoNMsiNz7eeS4eZLLsxgK3YuAPRkrA4oKZDjaH9WHHjFK6LcDp590GK0Bi6kSgEXgjQ==","signatures":[{"sig":"MEYCIQDeiNPPSS6cizv35JbWK38PYdz0Vbbae7gsVzNqwoRhyAIhAJjlp4K+LwqkPha0HfSQzHxxDp+BqllhQIYvHNtuyEM7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"0a2858e06a229057581e615d22bcdbf7a6d63811","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"313bbf56f707ab0227be5ea0d3f962de3671b9c0","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.9":{"name":"vorpal","version":"1.3.9","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.9","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"792a31cfbdad2774b3adadd12009474837055474","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.9.tgz","integrity":"sha512-jnJCvfjdh8AVV4nUv2g+5ujx6vKVrlS1hJYeTJTMw8/1KpX2Qt/RGxfbNRP6HQyIUivfk2JApNtRrFojCX3usA==","signatures":[{"sig":"MEUCIEATLdlXJpLNNYOGkjpxqhHnb+jecjyno398ssRP2A+2AiEAoKB6mMu3CRt1DC412FIWKNhFUyf7dTxhqclL77OwHBY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"792a31cfbdad2774b3adadd12009474837055474","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"82e2b9681b9e346250f9a07d13b09147b2627534","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.10":{"name":"vorpal","version":"1.3.10","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.10","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"4974cbb2dfa3aee90a3f7ef3dc5fd56e390c56ac","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.10.tgz","integrity":"sha512-x6xseLgq3jWoLE6+lRFbBdlOYItXo6D0l0ibZM1i/3AzRCVJ6+0Iz5JYgxeBDMWEvsHbHqoevB/9CodguPiKWQ==","signatures":[{"sig":"MEQCICTUlIdGwtGhhzzxFZ4CR7UnfEMoUGNksV0bweAXZo+aAiAHHoKABC6dDgpA8b8CzRZ8sK+/BdSzofON06tPU5K/Ew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"4974cbb2dfa3aee90a3f7ef3dc5fd56e390c56ac","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"2345eee0e1319b990168c4bff8c7f1591d9e266b","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.11":{"name":"vorpal","version":"1.3.11","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.11","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"0d0ff7ddb3e808fce76aa79e6e7c9c1217034ca3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.11.tgz","integrity":"sha512-7fSZoA6jP086pGeyNNiHunDle+DGVUY2qCUoteLQKIa5fG9q02DQFBQYD0zv2z+iGcD7h/qi3I2VMq1sMXtGIw==","signatures":[{"sig":"MEQCIH9Txf2uCvuFGoWGybr86Q9xg8ZF1KE2szjXxG8EC20dAiAYmQxV//jtweICGPQ6l/f/b3G4TgLwXn/W8yX4b6sz/w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"0d0ff7ddb3e808fce76aa79e6e7c9c1217034ca3","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"9558759a58290b8a802d33533e02cc3f1a6882f7","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.12":{"name":"vorpal","version":"1.3.12","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.12","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"4533d867f0ab1e347cef8631fe62a4ef57f60ccd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.12.tgz","integrity":"sha512-TT3ou8xWIkJtNlBi58ale9lD8ZFAGEznqNYcWm9/fj+vDBaetpxIPZMZPYOUb4NhPMljFrMk3A5YTx+hG3F8Bw==","signatures":[{"sig":"MEUCIQCYMcZlWUwqzkc0WMhPfXq+rYJsu2bx0dAb3QlnIZaezgIgEuLZhorlUrlREAcpC99Gr+n6K3FJRXrNKiixdjio80k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"4533d867f0ab1e347cef8631fe62a4ef57f60ccd","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"2328735470243ee1f90fd305a2972032ed0bf60c","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.13":{"name":"vorpal","version":"1.3.13","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.13","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"03ea3e2152a68f5f38a406bc32447b65c3ff6e91","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.13.tgz","integrity":"sha512-XZAMifGXzuWBk6yEOlh6pvv/DJQDw9DioVsekByOLqu+fRWAsgr6H/tFdtKMFu64t6ZCo87qPxTMXJte4olrzg==","signatures":[{"sig":"MEUCIQDUZo+4cYtHRP8ncA/RRogEZyCoShdu5A5sLDxOU3fOPgIgKLkoFlapMZBHvcL9C2cLX7OkF8YRWKyYdxz2e+O7asc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"03ea3e2152a68f5f38a406bc32447b65c3ff6e91","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"73bb072a7499ce30b13009336202a48a7d275ab3","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.14":{"name":"vorpal","version":"1.3.14","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.14","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"f7ca89932bd71b8c4e259fe8e61b4186ab866e72","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.14.tgz","integrity":"sha512-+x0VGk8mMPHGe1XSxoFWNpJsykL2DYddSK8DidnP2L27cG7aW3j10oDy5TtGfmfLMpAnwxZwxvIrzKvAxCgfHw==","signatures":[{"sig":"MEQCIATRW8m7m0Q6vSK6HQjnCV4CnAKA44E3szyfjuEZr+D2AiBM6v/aoeN9FrFmO5UoBmjwVZ84R+r5Cvt3Zlwv+DAEOQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"f7ca89932bd71b8c4e259fe8e61b4186ab866e72","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"3bda836c399046a582f2cd862cf6a7b43ec7e2ea","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.15":{"name":"vorpal","version":"1.3.15","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.15","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"7c3a01d88bcc3985bf4ee1dde915a7438a4e0366","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.15.tgz","integrity":"sha512-w2i6bDx3QZMtM83LePbgJNQxaGcaOcHDOmC7oTOYKdE2HCyt20xyieuHhukCeflQ/cskN+U6ln/gje6BtFkK3w==","signatures":[{"sig":"MEUCIQDPHjk6zjWUQUi3R7YdbAvQrG3vXTfhzX36KInBh7vJqgIgGlWFnSiwH0Od/JaDeVnz8HvcNymT1ENvjFxtCMTms80=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"7c3a01d88bcc3985bf4ee1dde915a7438a4e0366","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"2f7323b7e9e72db132f175275bf67bfff986d9b0","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.16":{"name":"vorpal","version":"1.3.16","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.16","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"2e6145c70f013a8ebd5d916b2470c2130c349f75","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.16.tgz","integrity":"sha512-/uE5mYJgnIuHi3rTLxIQEY4XZyUmCBDhfL6kbx1JPyhGpPx0SfkeRZ4Vp2+eNLLP+cTIjosOwHhgaDC7FQiY1w==","signatures":[{"sig":"MEQCIEPkzjS9jnkvWgE7S/QloH1teK2P2zS/fbY8gknf4PmfAiBNaJAiS4RxccYUbhW5KcWP4PAMfuNvDPfb4kBB9Mmnkw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"2e6145c70f013a8ebd5d916b2470c2130c349f75","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"0a93b293799326629225f2461b2f72e3b8969050","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.17":{"name":"vorpal","version":"1.3.17","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.17","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"983cd110a9970eecbed2a13b7588147a6fdd002f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.17.tgz","integrity":"sha512-nt3FWR90rWcbRTDt5vjdhLlDD8vNsGjCJDphAdYw9VqnzIgua9AZswItMyshh/22er2PveqG6EVy4VJKSwY5+g==","signatures":[{"sig":"MEQCIBCcOygQiXz9ueSYrTI1pMc3iJN387whWs3xDhj+Km+9AiBaKFcez0RdbCaTPzyrX9mEOSjHXqY/XiRD1B0po9WY7Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"983cd110a9970eecbed2a13b7588147a6fdd002f","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"b50cd6ac95d96b6dccd6b6005ed0a484e1691434","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.18":{"name":"vorpal","version":"1.3.18","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.18","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"044eaea6a3fe3850d155541056a417d5de5e56ef","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.18.tgz","integrity":"sha512-sK8GMZwg3NdTA932u2YVNoVd1M27YV2RsS1EhRyXoTPcvX+9ZYawWZdyUdCiHRfUueKiTmIZU8NfBQmDEa3kng==","signatures":[{"sig":"MEQCIElFjqAm4rSpXRO32H5dg20l57Q8B7QFi2WqpfjYXXfkAiAHpuNQjW4VRbP/OBihZKfOI2spx6Fmgf4ROHOp9BWZ2g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"044eaea6a3fe3850d155541056a417d5de5e56ef","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"11dd799f471dd9c8570318c5734e0823873bb636","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.19":{"name":"vorpal","version":"1.3.19","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.19","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"6a9337101ad982abde1736499189ed531dc64751","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.19.tgz","integrity":"sha512-Zbna18wrzjGCWu3dzkDBHFvBFO+cfG17HYc6rSNdkS41mFoKZFlYnj1SwxHRosql9r7/jLMmTB/QuF6+IfpQRw==","signatures":[{"sig":"MEQCIHzcZg42PchkSXbJmZHwNs/H/bgpU2fGoiqlnMZLoogkAiBdaxZx4AK3X8Y7zOkM/WUwsvdtgb74M+1P9Lrvn/xorA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"6a9337101ad982abde1736499189ed531dc64751","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"3d7d0f7ced9cbdaeb54e46d0e42fe92fa8274805","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.20":{"name":"vorpal","version":"1.3.20","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.20","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"27c35c61fca246067065d729f72c7ff88e3fc76a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.20.tgz","integrity":"sha512-2n9/7YHDxLZsq3DffNnFzQ/UvIQ7X2cmj6FneWddhUwaeXPolZfeeWw8TuEDlCLX1q5R+Lq+TqJaeSRNzujQgQ==","signatures":[{"sig":"MEYCIQC4pP4HNj7CeG5Qw6rGvIfliE52eZt9yym3Y5nSUXB+dAIhAIz6hsTea8Hzh3d5JJkeB6Q8byBFw17vi9e9VYaGWTM7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"27c35c61fca246067065d729f72c7ff88e3fc76a","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"28781fad8a449911288d8558b48427d2f9aa0319","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.21":{"name":"vorpal","version":"1.3.21","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.21","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"dd077b9a7fba9e3b464ab34ecded3326040b42cb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.21.tgz","integrity":"sha512-xH5FFxkLRlTCXR1K2E631M86TM/Ag43N7G7S+jhXHJsfouGZ3GTEipLtCvIbs/07BQ+LN4A7SxaeXJQ5b2sIWg==","signatures":[{"sig":"MEQCIA9yjgSA8iHKDolApR7OSzYzhx9/XSfvgF1Lpe8PHp39AiBzIgu1mr1/AJqXJ9BhLUasJfCN/7TIt/Yv5WU7DaEfYg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"dd077b9a7fba9e3b464ab34ecded3326040b42cb","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"2535bba139948891e3efdcff0ea7568be1770b5d","scripts":{"test":"mocha"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.2.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8"}},"1.3.22":{"name":"vorpal","version":"1.3.22","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.22","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"4afbb811f7d973d6ecfbec9d31fb73593bfebe5f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.22.tgz","integrity":"sha512-p+rn0s3LcnGzaEuQTaZg5/mevJYHVF53CG27cmKj3hr3ZuZhwril1R9l/CyO9eJwlTvDmVzTbdOP0DF3qqwzHg==","signatures":[{"sig":"MEUCIDNWD9uq9zMFdTbiiSPnGzxlph61Ac02pX2BZOXbZ2xGAiEAvYyXSR/qaFfBBOUD/0x9Igik0LZLvUT2FFWNzVirN6I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"4afbb811f7d973d6ecfbec9d31fb73593bfebe5f","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"6a2c30afecfb408f2119c9eb6d8e5c5b17581d20","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.3.23":{"name":"vorpal","version":"1.3.23","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.23","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"4ecc3963c66cc2aac1745d874feada8fdc20d9a3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.23.tgz","integrity":"sha512-n0RnRwj+SniHjcS4nBlx/d2FQt8O0RrN2TCzhptqe8dAzpAVvw1pmqehv2pPeePTNDw2GTEVaN6ZxQ5xksQZcQ==","signatures":[{"sig":"MEYCIQDJ8YVmVlJdu7Zk1z7d9scokL+SIeLZha+mX1WCt26JvgIhANgkVDSx7mpEj6/DxVGXVlkK5e4/xcj+hZ3QYbtxPneQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"4ecc3963c66cc2aac1745d874feada8fdc20d9a3","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"caa4e538543aef013a42a5a22f6aa6af09db3825","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.3.24":{"name":"vorpal","version":"1.3.24","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.24","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"545e164bebf6c8e3bf49897e1d7e0abad9a42c6b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.24.tgz","integrity":"sha512-58WLGtC29Ftg1ZXPAVg77EPCHTCX5/6N9QjPBFIwbhmDnbpCaB7xxnv0/unnVc8S4/3/Ihp5yZU1AUWHJYi9zw==","signatures":[{"sig":"MEYCIQC0Q+FCSxJVvT05XCiL2BkQPUAlrkihd3kHU5o3ncHhSgIhALQqmNv2lpdbgXylm/pbvUWY+2/utAw2STTD19eoB5DW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"545e164bebf6c8e3bf49897e1d7e0abad9a42c6b","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"5271b1cdde170e163967b44fa9502ed43d710463","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.3.25":{"name":"vorpal","version":"1.3.25","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.25","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"b65718acb62e9b7ce37ab623dee380933be1f418","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.25.tgz","integrity":"sha512-JCg8Rb6/+8nsS2LBL+M3IW2LNqGpA5aEqbyuusT/M9GFmJp+8TrcrfEwripeA9UoiJaTemGToRuY7aOc/IUMnQ==","signatures":[{"sig":"MEUCIQCdu8AwGi0vs1X9eGEPkID0T0z/MbSaSpjRE3Y0ESGgpwIge4h5ESpAa+htOz8WrN/ZusLiBeYkHRd6wX0knt6mLRk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"b65718acb62e9b7ce37ab623dee380933be1f418","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"ba2411ed9e8e6749c1fb0a33b18a86f3b4126966","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.3.26":{"name":"vorpal","version":"1.3.26","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.26","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"482d5f4d647b3974522ec3860b70e056f580f550","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.26.tgz","integrity":"sha512-GxdmcWS77K7CaDQCUq1sm6IexK2d8K6CQmm7zp7aKzl+GM8NLa3Wbmao5h5+Q+T4GwNskUftvM9qP7Env7GnZA==","signatures":[{"sig":"MEQCIFDkiHeNRcT6Bmt4N71rFP2xIPux1v2cWs7LJXKRh/koAiAqBY3h4exL0Qr9oCM+bjgYfl5a4wJO0fpf/kM6BnR7kQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"482d5f4d647b3974522ec3860b70e056f580f550","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"2a5f9d4205dddfdbde031955e26f55bdfa4d9e85","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.3.27":{"name":"vorpal","version":"1.3.27","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.27","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"e4adff7ab714b2a913ad3c6ccbdfedd061fd082b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.27.tgz","integrity":"sha512-a78ffsHwf5oxI/PUEgzuMbN5UXhnvMYGTYvKGPk+WrV6iHT+zKZBd54mBIEjjFS6ULSGVxOsnTGqdgl7fdlSQw==","signatures":[{"sig":"MEQCIFh6IMvgYKCIvvSU+w7pVZCBSJRyimsAYozlythVSiP2AiBuZ84jJ8+inuROffO+fmvnb7WzGchiKg0YxCD4pPW4/A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"e4adff7ab714b2a913ad3c6ccbdfedd061fd082b","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"50b835f88555287bbc27d07a57e65d11cd67cd17","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.3.29":{"name":"vorpal","version":"1.3.29","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.29","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"3152d4c951954aa974401c92aecafc957665330f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.29.tgz","integrity":"sha512-qDQnwAeVphb16NXrjYulStTOTmXrfF0bhlC+OJhVkUM+Rz+HIBtPSUudnYKhgqYIwviKp/2/CqeUo5uVcsSDOA==","signatures":[{"sig":"MEUCIQDyXT++HvLxfmzuweJ/Klx5M0z1zjCDw8QwuKh+l0pvwAIgHlV/tl4LF7YRfim7UF+QWpMI6jiRIUp+HLhxKPv6Z4M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"3152d4c951954aa974401c92aecafc957665330f","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"fe29c6c78e46cbf4f75ec94fc58580e210bc0c2c","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.3.30":{"name":"vorpal","version":"1.3.30","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.30","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"da5188ef12af9b4df62bdec8d6cba7c933cb6552","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.30.tgz","integrity":"sha512-LSX//dGxw15E/S63kJkhOsIqGQvxf1ptS/AObqVp8EY8wV5AbwK3jhvV7CLT+KAKOXjohhmeWBg+xJJtCamihA==","signatures":[{"sig":"MEUCIQC7DJC5uVWgAEP/5PxVblyW7CiZlbxqBQksGsmDnYaX5wIgJH5olvk+W/BrM+xfHVaJlcA5rLmD7izeQzObKFylWSc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"da5188ef12af9b4df62bdec8d6cba7c933cb6552","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"cd88d22a8d31cf94e886d9477131538823056bf8","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.3.31":{"name":"vorpal","version":"1.3.31","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.31","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"ff1202fa32035c0ff290813b946c23a1b4c79e9c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.31.tgz","integrity":"sha512-/t4L7LdasD8Woqdmz3uE31PNyzaMrXO4My1bN7pf+tckgr2duRLNCuzyEvYX9AMdQyPgvJP3lRzQ/vRrt6NtHA==","signatures":[{"sig":"MEUCIQDfj+rpIPvfXLqlTQsyR51DkqSucYPgeGdJ+lbJhRpphgIgfgiJfpOHUPpwDnNJA8Ky4Jd/FBlOSrGZscHbtjD4Huw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"ff1202fa32035c0ff290813b946c23a1b4c79e9c","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"aa56cf10882b8f0188cc13d93f98404a92730ab7","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.3.32":{"name":"vorpal","version":"1.3.32","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.32","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"52be639083d83df1ef51edbb5168fc603a37d733","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.32.tgz","integrity":"sha512-GDcjs77RvaReyAqp9kVRnD+ke8xz9Thzu4PsevcLA5+spREbht4hCnOsCJtKqedFfl20fCYpIPSRztMGcy1ZjQ==","signatures":[{"sig":"MEYCIQDVie+b2s3hE3YGfdOwafecXTEr/GbvtIrr7OzQF9FXdwIhAJhNc2I2gzCkhOHt4poYGeZ0tUX+mxyDetTDjaWGdWU7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"52be639083d83df1ef51edbb5168fc603a37d733","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"ce1ba09c392369eb46ff4705059806f06df98e1b","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.3.33":{"name":"vorpal","version":"1.3.33","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.33","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"377fc05c5e86fde5ed8403b169d7f4b6a572e542","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.33.tgz","integrity":"sha512-/JAb1BzL89B754lkYzFo2ygTuJAF29P1d2lto/l1elursp4fZMx4Niwe9IwBVrNmIDeRK+p45ODuMFhXguaswQ==","signatures":[{"sig":"MEUCIQDqKl2hcjXl6TddIUuGxpJO2su5cq+L+GxNVsxLjMqAvgIgDrEcmNxVkBvGTWFZfmVmyo8BpLXdTjTuUC9oIYQR4ac=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"377fc05c5e86fde5ed8403b169d7f4b6a572e542","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"af423af791cdd1e2b1cca80008af7d450f48ace7","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.3.34":{"name":"vorpal","version":"1.3.34","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.3.34","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"56a5492609717145233d6c3fa54662bebc17140d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.3.34.tgz","integrity":"sha512-Nf485l/nPKpsHiqGcIhZcTytjyQfvk036Q/d8ZXFNde4uRVKNRAa1+5rjpqm97jPQBNGmbAmmAcvRdHhe/QDBA==","signatures":[{"sig":"MEYCIQCVXEqVyKVV7ysBn4D4WHBpTvmHMf0KKwyMbMNzYRlzmgIhAKlDw+Tc6t7SsXSBHInmvQjJnah70KedI1VkRGH2zCMx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"56a5492609717145233d6c3fa54662bebc17140d","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"baac703835aa1300d8e446f85c6cda6c6f7ee4c0","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.4.0":{"name":"vorpal","version":"1.4.0","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.4.0","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"c90507e5e77b11efec43c8649108e976ec1c417b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.4.0.tgz","integrity":"sha512-4P42bsu0U6zIvysVH0pDrGLoopFIjEV/x0324v0Di9jnb5Jnn3RKsHhJ/MW9kOLfU3U60EcHLTsNXaNCx1JjiQ==","signatures":[{"sig":"MEUCIQC6GEANEW5XmP8daJ8/FgGxO9OzPvciM9aMURFA++duZAIgRk6bo2hze1iHw4rtdKGBZ0VcYca7Sp1/F70/5Ee+cNk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"c90507e5e77b11efec43c8649108e976ec1c417b","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"79f5d469d0df7358649e96028b44a91c9efac24e","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.10.1","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.4.1":{"name":"vorpal","version":"1.4.1","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.4.1","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"cf8fdc8d162eca5136c3d41e7dc248838a08c817","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.4.1.tgz","integrity":"sha512-PsM0t48UUhHpfjj04u4GQF51IpiguP3VqKQNxnNU4XQXv1tcf9YC7O33+L6NaZi0inUfDLuWIKeXouiuUYSqQg==","signatures":[{"sig":"MEUCIQCApre8iSUc9F/DbY48SbbS1mAC+dtf80pwwwJV5AQgYQIgbJVdBm+w2cceD6Umogz3DzEt4V+CWu/nKOrFs1E6imE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"cf8fdc8d162eca5136c3d41e7dc248838a08c817","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"9a087d6f79c5df65bce78f06d43fd4683b7b4986","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.5.0":{"name":"vorpal","version":"1.5.0","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.5.0","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"4b48c881aef2011987b30c5dab61df19afe480bb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.5.0.tgz","integrity":"sha512-VIK1oJ+2QbfFhjzBLLs+6MOyERLh9afZ/zaTTDSU6rHlrpSNRyEBi1bBmYtjcGWcUTMLFwxOrXHvJiTjGSmW5g==","signatures":[{"sig":"MEQCIDWESQBdQ4WtyDESS1wU5bB4S9qn20UBR4RawBnG9Wk/AiB18Lb8tybu5JCeU/xzTgJDQVn3XIi/8giKm8wyNEhzbQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"4b48c881aef2011987b30c5dab61df19afe480bb","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"9ec1034d78abf70a27815eb7c606d7584b66592d","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.5.1":{"name":"vorpal","version":"1.5.1","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.5.1","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"1ef25f6a805683937b21607dc250ccaccd2f65db","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.5.1.tgz","integrity":"sha512-G92NhdWZ16t8EvCSr/Q1SxdrqAluvxfbVu+MuFjf9dRfvlda7DaYUX2jgi8jc7W4pHI2/MWSGczODdhDSeLvZg==","signatures":[{"sig":"MEUCIQD/bUxuxAEAsEE+DR1p4M4HNxkp6abyAit/66qsfgTpngIgPrr0GHsL4AaxzTSnxZeGokrKjHWjwvRiNV/Fk1PwpKI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"1ef25f6a805683937b21607dc250ccaccd2f65db","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"49609e1da9a7f5123a6ca4c575c975f2f5ed5c1b","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.5.2":{"name":"vorpal","version":"1.5.2","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.5.2","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"3b862a5bb312ec5345add2492114c4dde4cafd52","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.5.2.tgz","integrity":"sha512-666MeYvKD9OF2gXNixaNMlnqiUpAUHyZzborvCcgoXnkijezdcJ2WRrhXOB3wfI6nkySnLVj5L7kVYCBIlk03A==","signatures":[{"sig":"MEQCIC52+Av5ZmJuidz+uT9mTYTkzqUvEDi5wP/Ytmb3YscwAiAj674u3MA7O0leH0FQZbJacUEODxM5HTS7zAJ/MeJF5A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"3b862a5bb312ec5345add2492114c4dde4cafd52","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"5a0e431404dd2e5236d6aa10dadd67fd2487ed3b","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.5.3":{"name":"vorpal","version":"1.5.3","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.5.3","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"dbf3d466a50a4e71aeb468b0b59c3bf01c9ba4f5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.5.3.tgz","integrity":"sha512-tBtOeVvu5ks+KcldGx1pfxjAzt+iZ/LxUsI/EnyG6sZwpuPwo2ZFHDFagtOaL5VxKyzMj29JmhHqR+snfDfOAA==","signatures":[{"sig":"MEYCIQDGE2yWPP1aTxgu8FBG3W0gzQMSKhodv+RkIrEUmbYHWQIhAMDxjYs7TTjg6drPoYs6uhhmZbUKwPoAX4iMbPGR6LW+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"dbf3d466a50a4e71aeb468b0b59c3bf01c9ba4f5","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"05729e8eafa704c70f5d376833da132cb8856c0f","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.5.4":{"name":"vorpal","version":"1.5.4","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.5.4","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"4eb2ce49bba5984c56e2364a646390090d465b71","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.5.4.tgz","integrity":"sha512-qgMnui+oiB1C5SA0weUnUDhkGC3J6pdF7w/rj7sMe4whIRxoU3YLeI5qo0R5JQMGhLNHbBSOri9pAXDqr+wqsw==","signatures":[{"sig":"MEUCIQDO9euyoK591aKLgNRg1MMPvJiFeCfvt0ZqzazIBCIMIAIgS14x3OD6oaElFKrMxduPNHoiZonsX2x4F/hgWmGrUC8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"4eb2ce49bba5984c56e2364a646390090d465b71","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"e4ae1ef7323f14b1b37ece0fa5d42200f80a16e8","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.5.5":{"name":"vorpal","version":"1.5.5","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.5.5","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"a9b0fba4e16e537a9780259b58aabc1def8816f3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.5.5.tgz","integrity":"sha512-FsIIMNaRGUiwk8BUNsXhrn3nS3Zlke7pdik2H3sR3Sr2hZKBBjkOGRp/zuKSrfdzeVSEtzyQ9wfctiUGNagwcw==","signatures":[{"sig":"MEQCIGLOvE61QA1ARblNYIIEstJk01L991lkiiygv9kFmo46AiBpdG+siq8MN59Xts5qokublVTIYaBla6EBIlG1VIPTAQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"a9b0fba4e16e537a9780259b58aabc1def8816f3","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"024bee0db416f04f4461ad2dd81e8ed1aa1780c9","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.5.6":{"name":"vorpal","version":"1.5.6","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.5.6","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"98e880d44b3ea0476f9a4110349f0b8ca77ecb82","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.5.6.tgz","integrity":"sha512-zToUsesABec3FHMsj0qMnj1mJeLNXNtYY0dePH0fWO+8WN6FWD2pyaS56iq/w/V2H9JBswFleUdzeaegJxJRIg==","signatures":[{"sig":"MEUCIQD367FF3s/jhBGudFSkzifjeuvr0rPKTS1DTNRpw5zEEAIgc5VGngAY7vkkkXgyBn34I1zzafgazGVK2DDohOD3UZY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"98e880d44b3ea0476f9a4110349f0b8ca77ecb82","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"d46e74120ee4898e0afcad91511f06bad562112b","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.14.2","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"4.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^3.10.1","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.5.7":{"name":"vorpal","version":"1.5.7","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.5.7","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"186b2e1f0be11daf4336f573893804018db8dd91","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.5.7.tgz","integrity":"sha512-lq2o0WdySAXklPvwvsjUTky/m9Zn2YznbqcM2yIieqtJhs67YTwlx/poO1ykMgCf/6vNVFYup5M7Kqh7WzUemg==","signatures":[{"sig":"MEYCIQC3Fwo3XLejPKkIZFEPev497aFbFuSyt7iOw7iaY7L/dgIhALPPzZME7yAoi2RJ3ASfxIYR7lyjtNY8Vsk2JnNt+NAc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"186b2e1f0be11daf4336f573893804018db8dd91","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"c8c362f8326968a6f29388fd554cb2fc6e0a6541","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.14.2","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"4.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.5.8":{"name":"vorpal","version":"1.5.8","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.5.8","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"1932dd7fc28939ae9f6b5c8fb2fe7d56e0965037","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.5.8.tgz","integrity":"sha512-4q6tfZz10mklp+jOdlT65mWk1c1MifaXwfqY3DwQQG1tjfuLscIaygCEgLJ8A3ga3tu1yZvhy+h8R1I2UGYf9g==","signatures":[{"sig":"MEYCIQCSemdccEUTaK5u3WVWcjgeNSXhp3l+PIl7kjaR8Uc1DwIhAJ6ZUa6AHiSuGtdD2wdMUmAuvJVyLzbzbox+y+olUnHt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"1932dd7fc28939ae9f6b5c8fb2fe7d56e0965037","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"b2b86a2c3b7bd6277c9cd2b20447e319b735e2ab","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.5.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"4.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.6.0":{"name":"vorpal","version":"1.6.0","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.6.0","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"8324ace5d49ad260237cc047252be918cc0b8f2a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.6.0.tgz","integrity":"sha512-0Kgdo0LbTifwg38LTAKSuc2mNcElm+QKZ9tokm+p1Cmow94n5VxgtCJnKU/j+Exdx1bc+Civyv+igfnJNOPEgQ==","signatures":[{"sig":"MEUCIQDbMVqjuJreygjLCwB5OdyBqaJgfclyNDm4pJd46Z5f4QIgCdolIzBTpS4Ads4pNHeud5f/akKe8muwI1Q49q1++Lw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"8324ace5d49ad260237cc047252be918cc0b8f2a","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"5e584ecfab52c2d5886f75b4d1f9da38dbdfb8cc","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.5.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"4.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.6.1":{"name":"vorpal","version":"1.6.1","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.6.1","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"b6ae44a5fdbfc9eb119c224f8d4af01f1928a516","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.6.1.tgz","integrity":"sha512-AYbWBy5b9Fbk/elhkYwKzn1LTIJIozLsHUkV+jajXodzAczjX0zZwt/r+nPaaabdwLRxRevdm8cea0ooiJeDZw==","signatures":[{"sig":"MEQCICppUCQ/12UhXfFj6uU6DdHTdMatr0rb0xgRlytSSHWyAiAWtz+F9NZPYeY5BL4GE0EDn4iO4X3YNJ30AtYhG0zMnQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"b6ae44a5fdbfc9eb119c224f8d4af01f1928a516","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"9963099e2783eb02d70626b5753f4c3ea26e614c","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.6.2":{"name":"vorpal","version":"1.6.2","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.6.2","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"47ab6e6b8b9d15d5746f8091dcf68c651cb62171","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.6.2.tgz","integrity":"sha512-DC02IXc2avRGmhx6CDIV11zSVM/UvPyKPk8H0GHfwRasPkpXTcKA2VIySjiWAXpqVZhI3dTFjz9N4QTq7K26vw==","signatures":[{"sig":"MEQCIE1UD093FiyQnmZvucUdaSWhmJnUMTLZ8nU4z2+EU9erAiAnF4WOIfS/nE/rRBIiqd4k/CJv2F0v8sllKri6kcIbAA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"47ab6e6b8b9d15d5746f8091dcf68c651cb62171","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"4a8e6a007e56108d4782b501baaebbb633279e04","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.5.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"4.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.6.3":{"name":"vorpal","version":"1.6.3","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.6.3","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-unused-expressions":0},"space":true},"dist":{"shasum":"20a389dafb25521f52f5291889ae16eb8e8d2806","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.6.3.tgz","integrity":"sha512-hYKHNiJhhvvaSNob+MmCIcqfbXR+bgqy0RpgH4hU5y0uQ2xibxVl6htDdP0zk9LIT2mdIAH5ULN9VoKERjiM2A==","signatures":[{"sig":"MEYCIQDGMfdfheX1ll7a3Q4L6KosPYi6510dda/4xUKBQZsS5wIhAO4QdvCnodYGM7K+Kj/I2j6WF8hPM2xiunoODexVuYmz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"20a389dafb25521f52f5291889ae16eb8e8d2806","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"39fb276a0e31d476bb44ed490aa697193a726c45","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.5.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"4.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.7.0":{"name":"vorpal","version":"1.7.0","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.7.0","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"fae8c5469aabc25597dcd8fabd51c0b707098d86","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.7.0.tgz","integrity":"sha512-P4ImOP/qLawiWbQdVnpKKIPwd+AIcCBl4fYH39opBQu9HMCBBCF07CU8jXPTdI+Ib5grswmkhYL6cCwws5c5bA==","signatures":[{"sig":"MEUCICYp+/q7ev4jMXaOTyZXj4tDCK0NsV/t8EDjsNU/D5UZAiEA5tPHCzu/X08frhFds5JTclnrUh6aLzsCAJMscsLQ38Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"fae8c5469aabc25597dcd8fabd51c0b707098d86","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"6e6236f16633d021085e38716b15948b999fd8dc","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.5.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"4.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.7.1":{"name":"vorpal","version":"1.7.1","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.7.1","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"39928de7317cf616bf139d9d305ee960d6d279b2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.7.1.tgz","integrity":"sha512-hDWX579vlKQUsZXD358BDIKPpBmALK+saCIVfdfM1s+zWc44rO/ZdN0PGa1NlPZemuMiUkjugjm63rtBu1HOxg==","signatures":[{"sig":"MEYCIQCFW0NHm/GaPpKKn7Hj/NU+lfrlHnZPY53DSsh17cKM2QIhALF34kPzvlIdkfKUmC0fvaX9zP24Ygf0y6TyJKJWsH5x","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"39928de7317cf616bf139d9d305ee960d6d279b2","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"1c4be7bd58459cc2eb2c32667f14d363e4c127e3","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.7.2":{"name":"vorpal","version":"1.7.2","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.7.2","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"3bb60d9b350a0fb6aa7be09ba0ef3b7e3f9f53d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.7.2.tgz","integrity":"sha512-kpfweUTtM7jrFL7M+doPJDbGSdYpk07almqaZsmuc9R1OKwj7ljJ5PoyxPVGyoa4xy+XbxsseMXazABJsp5ZDg==","signatures":[{"sig":"MEUCIQCvcqQmMC9MvkXwlLmZPsHW5C6yr6uglphdgIjUJnP7mwIgV48jOyhaP44lJW9YF7qsykg2zpB7XjZTFb7+AaEhIG4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"3bb60d9b350a0fb6aa7be09ba0ef3b7e3f9f53d1","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"d2ed0068a608c3c80a1f1635fca16259b66cfde1","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.7.3":{"name":"vorpal","version":"1.7.3","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.7.3","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"43ae7bbac454895ef042adba7f831b67ea638c1b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.7.3.tgz","integrity":"sha512-Fin0Qo6el9fHdtOSLHTZcJEpZ4QktzqWl4evKUHohMT2+GCq7nJzyu7CqaK0uscTjNai+SjCqVZO09mRHGODJQ==","signatures":[{"sig":"MEUCIA4FXFPllCeSBuTUcxpIyepZqSKWTDbGkxxynFhsbFzdAiEA7NvyEYx80GlAThwXuk3snt7c6VsjeaQrGyS0twSd8EY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"43ae7bbac454895ef042adba7f831b67ea638c1b","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"c1cb074c0cc54d92c346f612e32b1e2018a3c9bd","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.7.4":{"name":"vorpal","version":"1.7.4","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.7.4","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"dc22e2545bb7b93ffbd8c694b7a2e3edeb9158fb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.7.4.tgz","integrity":"sha512-EpZaLDOllGSgT+SFZi9t9/ZaoEddHaiuZNdrfO+eWhElDrWlbzwpb2UtimEtjpJeSwik1UNb5JfJT2lN2jlxLg==","signatures":[{"sig":"MEUCIBvvxfzfeN7YC2ChqhH1+0zmtQ282gvJklJr9DZx2jRVAiEArpnjnoxv9kuOVOVz82TU6kKCI3gmSQdFVGEjbrL+d/k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"dc22e2545bb7b93ffbd8c694b7a2e3edeb9158fb","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"6d7810644754a5ebf603cd960c96a912d07c6265","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.7.5":{"name":"vorpal","version":"1.7.5","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.7.5","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"68f8a81da0b5df306fdeb8fcc12485c850e4e504","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.7.5.tgz","integrity":"sha512-6RLqFE5dgkuNJ4fKNX5lK36v3QGMiq01XswZDt188rd6y6sriU80chjxq3uWxXJE0K5QyenrpcJt5dVTh8epbA==","signatures":[{"sig":"MEUCIHA9JM8/gHL9uN9SxbsyTQz0tGoxsqB2PPJU2thyrzq3AiEA61BiJZN6kwmCG4MrOoZ/m/AWeuDlkxWb4N5a+DVZBPQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"68f8a81da0b5df306fdeb8fcc12485c850e4e504","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"ae6cb23bfa02ac80bc0a06f89087986540933f89","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.7.6":{"name":"vorpal","version":"1.7.6","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.7.6","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"60f55b3b85380e158feaf78f55ebd4ffdbe86f52","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.7.6.tgz","integrity":"sha512-wlGKuCXe/NzR/wRo3klirVY3x+n7pDKYwt8TIRjJomjFluaCZlX/u8wlq+UYsoKCYivNBpB2UvOwSZwMaM+NbA==","signatures":[{"sig":"MEUCIQD1irKLhftb/NaPThDBXzfykQV+gV0b3nm7bQF77CVU1QIgDngWuKlisqcyg09tovYilc+fqTVm4mpwBamo/1WEO0c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"60f55b3b85380e158feaf78f55ebd4ffdbe86f52","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"7840d9f07eb72d938cbf9e605f01db89d5437678","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.7.7":{"name":"vorpal","version":"1.7.7","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.7.7","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"02bcb6bbf62de3ade1ffe4ee892f19f13ff6543b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.7.7.tgz","integrity":"sha512-puE2llOiWSKwx6YZ5oE59vm/YSdxNIXuXcTXLGaZZs8Vt4ueVuiTRX7As+RDRIbvXmTXO0pPUh13aOkLVjR58A==","signatures":[{"sig":"MEQCIF37a3YJ5EFUNCmp6LIIdbYFdaTq58uiS+yKTLW1XCKkAiBgemFYmHkrrH7Jm3CQtq+NgUK1Jb2pET1DPGVsEv5Lcg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/vorpal.js","_from":".","files":["lib"],"_shasum":"02bcb6bbf62de3ade1ffe4ee892f19f13ff6543b","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"8b5dba087cb304580a4c75f6b99ff4fe4ee32556","scripts":{"test":"mocha && xo"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0","native-promise-only":"^0.8.0-a"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.7.1","moment":"^2.10.3","should":"^6.0.3","request":"^2.58.0","bluebird":"^3.1.1","gulp-eslint":"^0.15.0","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","eslint-config-xo":"^0.6.0"}},"1.8.0":{"name":"vorpal","version":"1.8.0","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.8.0","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"e34bb546b33c67246d1cfa3f0c78010b8c018df1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.8.0.tgz","integrity":"sha512-aX3IC5vpzKeklKwkBPUPnXIhpWDutR8cf70z4+C6zmmOS7gGd1TYKH0lxKWAvNrSxcO08TbfgQj0/3cpTziTwQ==","signatures":[{"sig":"MEQCIHz34iC5UdZmYVhFtqY2LUlrxbxef/d4u/IdmEBtY1LvAiBbLw1TG8EX+h3NBjYaeqx8LU6K0nS/5QPcCSNQgDzp9Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["lib"],"_shasum":"e34bb546b33c67246d1cfa3f0c78010b8c018df1","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"f5a5471bcf1843ecedd6e200d44e00be33142a86","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","load-plugins":"^2.1.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.8.0.tgz_1454987009285_0.13844973128288984","host":"packages-6-west.internal.npmjs.com"}},"1.8.1":{"name":"vorpal","version":"1.8.1","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.8.1","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"292db664ac3f391b3394360c06ed6f6f8b82ec33","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.8.1.tgz","integrity":"sha512-AUMip2tP2+cLL44zTOp4xysbLiPZbZveE+MMHhmVAROW6ec4m4IKkfXUjm+RFbGUJvIyMYz4ixJqMgPKbuSq1A==","signatures":[{"sig":"MEUCIQCQaNPajXLYC8NuLoAjuQtwChZ4rkpwxpaRxWWbliaXwwIgA7YE1GiN7z6kvsSaiPTgLeDUA6//WijG8I73sdO1lyA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["lib"],"_shasum":"292db664ac3f391b3394360c06ed6f6f8b82ec33","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"fb9db7c1b072c6980466521f8ade316f1d50eb04","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","load-plugins":"^2.1.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.8.1.tgz_1454989788714_0.3285880549810827","host":"packages-6-west.internal.npmjs.com"}},"1.8.2":{"name":"vorpal","version":"1.8.2","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.8.2","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"c5ec09745f7e5b6a77e1b615fbf7cc905c9e9a1b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.8.2.tgz","integrity":"sha512-YChPZP1p4bMqmHZkFI3WjDY+r6JVmsV6ZHqJgS6d5AWWZ9ypLPNmH92mSaRS4rtZpCVxkqEehYQ80TCmXrd7aA==","signatures":[{"sig":"MEUCIFtPnrKTBy2Fo0uWS3XksysNKzjliGWBGoTChEG6jsSRAiEAgolSc8BIn16Iyo2DWZUFszd276AMMTaMFSIfyB8c/kI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["lib"],"_shasum":"c5ec09745f7e5b6a77e1b615fbf7cc905c9e9a1b","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"fef8c3459c33706650ae1dfab05c7c93d1931af0","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","load-plugins":"^2.1.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.8.2.tgz_1454992804964_0.4032443661708385","host":"packages-5-east.internal.npmjs.com"}},"1.8.3":{"name":"vorpal","version":"1.8.3","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.8.3","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"ed88f6b898b174944cea08f883abe37f83cd68df","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.8.3.tgz","integrity":"sha512-AA5nhyIO6e1x3KtwNlnGDjQ3y9rlrv4LBro60ecaJOUGGZpEqSdZVfJQXAnE98CHpJyEeuQUjBgCdPKpo2R86g==","signatures":[{"sig":"MEYCIQCZnXDVyXHLv5BmIQxhmaAhQ8rR9lE3M0N2yv0C4R1ObQIhAM/+zYw3b7rkCvcV4Lu2/zjxd2Jb8kqa8tgtWdgSCh/l","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"ed88f6b898b174944cea08f883abe37f83cd68df","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"ebee7bf6aa64f44f8fadaf9f382fe7b75fba351e","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","load-plugins":"^2.1.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.8.3.tgz_1454993397911_0.08655561250634491","host":"packages-5-east.internal.npmjs.com"}},"1.8.4":{"name":"vorpal","version":"1.8.4","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.8.4","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"9a684467b09ec94f975250cafc3ed0e03f0b1431","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.8.4.tgz","integrity":"sha512-nYDKSHlhLjVx7k6/ZtFLS1wUlcaHIjMQPihtn1oFVdILiVIIcQbZHMjlPYzF3yv2Y//X9RleU5f2UXYYsiZ9Yw==","signatures":[{"sig":"MEQCIFXMtZFjCOad9NSkYKtVO1Ko03jgExRW9doWeE10mfe4AiAS4kP1UApmQsk/gTfqK1hNT4aVn+6KPmi45w7d12JGiA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"9a684467b09ec94f975250cafc3ed0e03f0b1431","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"a21dcfac13ea185ec7dacd6be41a68cbf0614c6f","scripts":{"test":"gulp babel; mocha --require babel-core/register;","prepublish":"gulp babel;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.8.4.tgz_1454994442558_0.20952891162596643","host":"packages-9-west.internal.npmjs.com"}},"1.8.5":{"name":"vorpal","version":"1.8.5","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.8.5","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"4c6db30e76cd4561c9577485082d917f8e79d5f6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.8.5.tgz","integrity":"sha512-G9MbXYfuuCgBSBP3pZRldIBAUi/Azl26kYbhsU5F//sfjjR5JDELgno+F92gOC9/CwAMQIhuu5qSns4vObJ2oA==","signatures":[{"sig":"MEQCIGEQePgH1pY926Fok9wTOa4CnbT5PZVpGrHBm5+7TBXmAiAkvMSlYk3Z5bYEkpbMxhgP20sLmTahufTZknZHDiQPkg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"4c6db30e76cd4561c9577485082d917f8e79d5f6","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"72583c59d9ec55598fd502b84af30c01b517c03f","scripts":{"test":"gulp babel; mocha --require babel-core/register;","prepublish":"gulp babel;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-runtime":"^6.3.19","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.8.5.tgz_1454995201051_0.41009337338618934","host":"packages-9-west.internal.npmjs.com"}},"1.8.6":{"name":"vorpal","version":"1.8.6","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.8.6","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"535129f98360ba7efcf660044b481ec6c57c32e6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.8.6.tgz","integrity":"sha512-XkloeS/5NA5LEtieuogANTUlm5IW8KhlEEQC7qWHykLsDHISuN0QrLOv57TE57QmJ1jwxzSX8IoaoDTIJeIFkg==","signatures":[{"sig":"MEYCIQC1dtN5RBeNyPs990X/od0WN4Uh6CnB98fpN86KhR5UfwIhAIBScUhTx6o/NqIFX4DA4Iouvf7LB5sfL9ebYoKfOvJq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"535129f98360ba7efcf660044b481ec6c57c32e6","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"687acc0e1ebc3ec07ad6c97f2fc84afb3d826f8c","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.3.6","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"5.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-runtime":"^6.3.19","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.8.6.tgz_1454999599752_0.46951093641109765","host":"packages-5-east.internal.npmjs.com"}},"1.8.8":{"name":"vorpal","version":"1.8.8","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.8.8","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"7cae4ef89d33240c73b856ec15665a452b91bdfc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.8.8.tgz","integrity":"sha512-+kU+aElvUbGQRn3gk5nUHZKt7USicw9fBVSV6/l5HDSgRfBTVG7gELAj6xzlGU/pS+WGy4zj1CxtBq9eQMDkFQ==","signatures":[{"sig":"MEYCIQC0V7lp1mPfrkAV9a3NDepDgLvY3g7YVHS5+bX/qxn/BgIhAIT7D9km7uyy+DAOPNvMDNT+mbVBQP3lP6cobI1kwdNo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"7cae4ef89d33240c73b856ec15665a452b91bdfc","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"21e439f02a25568d1dd7ec75816b0d4d6a3fbfc8","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.3.6","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"5.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.8.8.tgz_1455039637719_0.1575134233571589","host":"packages-9-west.internal.npmjs.com"}},"1.8.9":{"name":"vorpal","version":"1.8.9","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.8.9","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"d5af9c6aadc503c20cb6f8ff69e813ec8aa63fd0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.8.9.tgz","integrity":"sha512-cbSlsqnWxRf5uAG6Tl0kf274x/ACuac/ONOdZTuqa/luxMs5vc8hl/hI1jDS4GpaQR3PtEcyA7vVcEcOUl/xWQ==","signatures":[{"sig":"MEUCIAaCxT9nUCcJ3ObkRd0HbTMesvlm1ASYkimQtlPntFy5AiEA18mMM/VxZ3R1K08K/e8FyOjDoQ+1hUOYSjGmTe1/GPI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"d5af9c6aadc503c20cb6f8ff69e813ec8aa63fd0","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"41a182cb786d59c00efb5cd6c252ce20e23e8e93","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.8.9.tgz_1455057963874_0.8138572692405432","host":"packages-5-east.internal.npmjs.com"}},"1.9.0":{"name":"vorpal","version":"1.9.0","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.9.0","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"8b9a380c297beb27b7489e71a0f89a80b624b514","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.9.0.tgz","integrity":"sha512-QJUuUiuYa1XSuLvIdHXUwvCV+WV8yfEWxGggiOYA+Y+zyZ+lVlf1kWpqD+kirIJb82UT0MoQURs4ur/eSczSMQ==","signatures":[{"sig":"MEUCIGsHXQGHgwAq+Q5rKQX/tV0SoCWfNINaJkWzMF9QLUjYAiEAlKuh+I7y56ZHvw8aVLVxg44DC/aOXo9cj02mC4lR2TY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"8b9a380c297beb27b7489e71a0f89a80b624b514","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"6f94d86949af95d20bde01333f8d363395468f37","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"2.13.3","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.9.0.tgz_1455171705407_0.25715282442979515","host":"packages-6-west.internal.npmjs.com"}},"1.9.1":{"name":"vorpal","version":"1.9.1","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.9.1","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"910743186e6dda32386faaa60329f5ec9ce127af","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.9.1.tgz","integrity":"sha512-BNx5clgIp1kyBCvyi+BqXCPgs2PNI20y3FfQRB7KEMyc5nDP7kcGwlqeAr3V33szaBplW+2G/R7+yT5tWek2sQ==","signatures":[{"sig":"MEUCIAOOr+QrXQF/tNDLKRe0J0TlfVEEinZ5/I7gPc7GuMlkAiEAxcnZThVoYnyC46bXbNK1YBCQxuOiu+4MEonoL7cZlDU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"910743186e6dda32386faaa60329f5ec9ce127af","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"564a4726389fcac52354c88214654e575e82a8f8","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.7.2","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.9.1.tgz_1455607714748_0.5464356665033847","host":"packages-9-west.internal.npmjs.com"}},"1.9.2":{"name":"vorpal","version":"1.9.2","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.9.2","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"d1ac6820530e3b2674579d2c39f73b3e238144e7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.9.2.tgz","integrity":"sha512-FBSVGIxdCHrxbvXIm693VumbbQYsR6WvmQoj64h0uzySKhUSE3yozes5WFN+NRwwIhgz0a3J93aQeI8RE4Nl5A==","signatures":[{"sig":"MEUCIEyjFU8CxRVi8CexMnu7Nnx77URnONhSuuhECsWzcCBMAiEAkjggu+WR5MQ/8hL7jtz2Y0Kvhw5Bb7fFbKcevPwdOkQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"d1ac6820530e3b2674579d2c39f73b3e238144e7","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"b7a73993ef6455473e063d1156b1d13e8189511d","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.7.2","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.0.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.9.2.tgz_1455607856823_0.5469855507835746","host":"packages-6-west.internal.npmjs.com"}},"1.9.3":{"name":"vorpal","version":"1.9.3","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.9.3","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"eff62e177b4fef83842d9e73fc7c10e8789c86fb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.9.3.tgz","integrity":"sha512-96+KNKQ1swZ2nHUmfx1dXBSfC9JQS6iCoPpT978PCOTlSNPk+i/kUTo2pXqGes+bezRR9kCCnsuPubGSRug63g==","signatures":[{"sig":"MEUCIQCmurshbTg2e3zM7A7A18N1kxp7LJiSbBGUjFsyfqc9mwIgbF4+PiZtWXXqzEoTB2abuaB31zhH7wc79I3PzeHdroc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"eff62e177b4fef83842d9e73fc7c10e8789c86fb","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"d90b40823ad36b682b30de2f033ccebe727a1530","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.7.2","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","mindash":"^4.5.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.9.3.tgz_1455948118874_0.16131224017590284","host":"packages-5-east.internal.npmjs.com"}},"1.9.4":{"name":"vorpal","version":"1.9.4","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.9.4","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"76efa4b180b09a2f953024644eb9321247ade80a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.9.4.tgz","integrity":"sha512-krTtYJ086dxIRhmdPhNHJZXWLvZteTE6RA4+KnUh5mefzK4+HIFt0FJjMIRGoTuYhzG7wjxJwGOF0DStUmtgmg==","signatures":[{"sig":"MEUCID8X+GBM9VuszOAuWTnKPoo1sc/N78nRjehAAPoZp9cuAiEA8xPPlrT9g5rsvjVbPmtzZvJ37VmP7kZPEPbNftQoDM8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"76efa4b180b09a2f953024644eb9321247ade80a","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"87ea83fbf0da35159cb9127d1f6b09bc77f6314b","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.7.2","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.9.4.tgz_1456017589038_0.9310109065845609","host":"packages-9-west.internal.npmjs.com"}},"1.9.5":{"name":"vorpal","version":"1.9.5","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.9.5","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"1abfc487ce309420fbca2c96aae05c43a36e6267","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.9.5.tgz","integrity":"sha512-gxigY+O2WJX/rf936rdpfPROgnhn7Wu1PRZOk+2RSv5RyswRcAWvW2N+LrV9TRGNuaDTt7FCQOymwC0ySOg1Rw==","signatures":[{"sig":"MEYCIQDm+pe583EBRreWqA6TE7VNzJmLWD5mwXCW6xzEOdRvkAIhAKz+3BbUYXX0F7ZW90s7bVIgyA78G/OJx9PIyXBsuATz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"1abfc487ce309420fbca2c96aae05c43a36e6267","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"f2a5f352613831c9f44461c30f2850e211e0124d","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.3.6","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"5.0.0","dependencies":{"chalk":"^1.1.0","mindash":"^4.5.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.9.5.tgz_1456026031380_0.11897363071329892","host":"packages-9-west.internal.npmjs.com"}},"1.9.6":{"name":"vorpal","version":"1.9.6","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.9.6","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"c0235470f94bfe334e0e9b7a1608ce180473424a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.9.6.tgz","integrity":"sha512-1C6BYBJGVeYcXmL/gBxIXGuLeqH/MY7YjoDP6QQrSYsxVyGEyNzAFCobgm6qhnJxdC9e1vMHQ938RSq1luH6vQ==","signatures":[{"sig":"MEUCIQCGh/5MnX5p2Yt+bfbJlu9inhD7ONc4r4zE4/S/8JzQzwIgQX/QXc0GZdqDhw3JbtPy8g6s8R3sd6+gHXIZfXoybIM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"c0235470f94bfe334e0e9b7a1608ce180473424a","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"44f23ea7ffb6fc69bd17ddcd4673717637c45050","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.3.6","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"5.0.0","dependencies":{"chalk":"^1.1.0","mindash":"^4.5.0","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.9.6.tgz_1456547293758_0.06148826703429222","host":"packages-9-west.internal.npmjs.com"}},"1.9.7":{"name":"vorpal","version":"1.9.7","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.9.7","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"2f5b2d69ede8d8ad91d781e9f691e8b721121b50","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.9.7.tgz","integrity":"sha512-uGU2ZdwtKgHs1pdGqU/3Nazh1pus0AB7IWR5w7a5Kk49YOUGCbiC4IKX9GwKrxzUUzWI3r34HEoxd46AUm93Wg==","signatures":[{"sig":"MEYCIQDy00UUNVIwuf68EnV3XZnvD1eu993P/3ayR6xhx8F9JAIhAMvOY9stxs1WyxBY1SMbgs1TxECU23Mh9ToIO6V+AtkC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"2f5b2d69ede8d8ad91d781e9f691e8b721121b50","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"037680e77a254fc9e343cafc476130f2eefe7c7e","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.3.6","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"5.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.9.7.tgz_1456547510743_0.5594956455752254","host":"packages-5-east.internal.npmjs.com"}},"1.10.0":{"name":"vorpal","version":"1.10.0","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.10.0","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"6bd90feb50bc006f21116b514880eb8425928dc9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.10.0.tgz","integrity":"sha512-deSNIox1Cn9LPLW2mGawDlF54ObhPQMM/cjTJwv7RLlVDWlrWm8hJ8xYC3U8FK/BQW8dde3nqNU59Tc92I0sGg==","signatures":[{"sig":"MEYCIQD9dT/Ez5W5OBOkH2A57aMYD8J1eAy2R0q6PU3XQH9FUAIhAMvZLjxI0YN3ZasaX5OyOH1wiOeBshVCJF0BPBF8jcoO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"6bd90feb50bc006f21116b514880eb8425928dc9","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"8d2de92914b1f60a4fb12c83d84987a5348e1d5f","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.3.6","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"5.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.10.0.tgz_1456812315947_0.004722655052319169","host":"packages-6-west.internal.npmjs.com"}},"1.10.1":{"name":"vorpal","version":"1.10.1","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.10.1","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"4efc137f1dfd8a8f3531406ea5dc7160da2bd575","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.10.1.tgz","integrity":"sha512-aRaot8h3STcPudKzYX0N8og5bKoRhd7ALyOdfMNR+vVO4EgwakavmbcrIMS0lhEm7Nl05id4xEXWX2OywT+qsg==","signatures":[{"sig":"MEUCIQDt8QB+rf97OfhnZuRHu/XC+LoLKNE8W+aLavLIj+RtfAIgVNTYx9pA33feWyVe95pMqvxEm2bEqxzMW2jOSm/pBNA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"4efc137f1dfd8a8f3531406ea5dc7160da2bd575","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"7e1c94397484d4717170e2b9cdfabbf433e8763a","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.3.6","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"5.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.10.1.tgz_1456890913810_0.32616590545512736","host":"packages-12-west.internal.npmjs.com"}},"1.10.2":{"name":"vorpal","version":"1.10.2","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.10.2","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"43bdf8e1d5dc4c33872dd0509e3df34b3e6d74cd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.10.2.tgz","integrity":"sha512-EwebkerNQli3M3yXcN5Jv2CzxmRwZyp5YvZpIH78F15U9EvqZAVAbOpgNfgJMLzzPa3QyUwA5sNbELR/USky6g==","signatures":[{"sig":"MEYCIQD17BP15rSoxdl0NPFUB2wMObmMtWt10MjcCzd+d2m7zwIhAJpd7FTMid0Ux+nkX/6Mk5tljronOCYeql+6xvNN9pfQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"43bdf8e1d5dc4c33872dd0509e3df34b3e6d74cd","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"1176c13af9fd54cf930301c1a93e4a196770aa8e","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.3.6","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"5.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.10.2.tgz_1456891050278_0.569475449854508","host":"packages-13-west.internal.npmjs.com"}},"1.10.3":{"name":"vorpal","version":"1.10.3","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.10.3","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"1379feb68fa81d719cbf76392121b373e4bc64f0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.10.3.tgz","integrity":"sha512-kG+v4t8Cpms1FbIirpjD9HWJHfMlnB7m0SiYgQhkawcmfPwZkJ8Q99KqKrCcROoAV5Yth2d7oPO23GDEocAxQg==","signatures":[{"sig":"MEQCIFr7umBL4/mRaOmpR2CY3561Oxmhpmg8dvzdtqyxEl0lAiA+1cow3VD1mpz4gL1Nw8/35Hde4yAuVzd+uRgCm/P9XQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"1379feb68fa81d719cbf76392121b373e4bc64f0","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"07400428da37ecf4927d63663f5af815eb73c90c","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.3.6","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"5.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.10.3.tgz_1456891742157_0.12374078226275742","host":"packages-13-west.internal.npmjs.com"}},"1.10.4":{"name":"vorpal","version":"1.10.4","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.10.4","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"6000b4e89d72468559744b1ab6a2cf016c6f85ce","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.10.4.tgz","integrity":"sha512-IeXhVOgYCye6U4jSsorjktiP4BRaqYLl5UKW0PFmAVf2aIYzDurpLPBHCwW/oy+sT5deb46TthyXeeUFgM/5CQ==","signatures":[{"sig":"MEQCIAmCMV0df3b9frz/vgwF0enYFt55UrVBqoY4OIs0l/1nAiB1VIn1bEI1GDUaZMBkymlnqSZ4Im0e52mpFxvJrn+Atw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"6000b4e89d72468559744b1ab6a2cf016c6f85ce","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"a225448c98996129c323f42cbccd7baa7be032a2","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.3.6","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"5.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","wrap-ansi":"^2.0.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.10.4.tgz_1456893510859_0.19267724500969052","host":"packages-12-west.internal.npmjs.com"}},"1.10.5":{"name":"vorpal","version":"1.10.5","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.10.5","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"afd711edafaede38473532c3dc800136ebb14389","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.10.5.tgz","integrity":"sha512-n3Oarmgb4hIA6FO7jxNMc62dBxs9ZIUVuussiHhiy4a4zHxgOv/g2aWZdnW6Xmzig3YGKxaQt3qfzKklofDxlA==","signatures":[{"sig":"MEYCIQCbCAX0ZHF+PKgRDjRPgsXbOwmsuZKalMKVjQVx705pKQIhAJ6Bc2fI4hO3hra403Z6ejvnLQaaZdCYQqT1lAumhxH9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"afd711edafaede38473532c3dc800136ebb14389","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"d9718065fbdce7112ab38360a191dbe8708f5467","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.3.6","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"5.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","wrap-ansi":"^2.0.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.10.5.tgz_1456895639297_0.8482986241579056","host":"packages-12-west.internal.npmjs.com"}},"1.10.6":{"name":"vorpal","version":"1.10.6","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.10.6","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"6327086851a3cba64bf58a63398c6dde36e3d8b7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.10.6.tgz","integrity":"sha512-Ea1aq5LZd73eLiEJpMES+ppsq6VbeVkhA7dkJHDgC2BUONUoB1/UqJjdli+EBdOO07gp2VFT88hBPTzbz1bugA==","signatures":[{"sig":"MEUCIQChMhystlSIENrSFXqeYiQY+AiCVaPkRD55ZvK/U7jrtQIgQBSfo8P/Vt9iTMWkZqaqmuV+xA3ZZjSZfZ+Xd2oYd40=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"6327086851a3cba64bf58a63398c6dde36e3d8b7","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"c6daac6fd5ea7a146db3c57aedd8bae70bc9fa9d","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.3.6","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"5.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","wrap-ansi":"^2.0.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.10.6.tgz_1456895887489_0.3149667754769325","host":"packages-12-west.internal.npmjs.com"}},"1.10.7":{"name":"vorpal","version":"1.10.7","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.10.7","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"f5118ca358551c6e0c19757c87dc97579ac3747f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.10.7.tgz","integrity":"sha512-W1xsOtBCDfPJ4DJ5dpL4wd5qp72xkXYn98VR+cdRl6XTowz8IZBnAhPkjLOt8Ir0nzyWB8aMYmeaGn+2RGR54Q==","signatures":[{"sig":"MEYCIQDygrLiUpIFso9/coi8zqDi37EUzNPCqgmVOFQ28YWqBQIhAJPpUt1bWuWuKMANk3ssO24K0rrbtm3IC7Rgk+GaUHPt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"f5118ca358551c6e0c19757c87dc97579ac3747f","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"f7044dc449ef4df92ff250c46c56f455139156b8","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.3.6","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"5.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","wrap-ansi":"^2.0.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.10.7.tgz_1456897073707_0.47378004994243383","host":"packages-13-west.internal.npmjs.com"}},"1.10.8":{"name":"vorpal","version":"1.10.8","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.10.8","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"df8f7cb21b06c2fa7783fa9018891a34b51c7e4f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.10.8.tgz","integrity":"sha512-I9eypNbxBR184W2yj4A76eD/StTr+EMRZ38O0FonJlBvoptn21pnnxOH+VNDrlMYbs/t8ptsuzu9gAqAsdKGwA==","signatures":[{"sig":"MEQCIBHexUU88s8NtagIzuKMv1TClYjBPxxff6Hm4y51i7iyAiBjxt7a7wH5/tDC6gOv4hMQ/8h8s2Q1ySemBQ2xUYhRTQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"df8f7cb21b06c2fa7783fa9018891a34b51c7e4f","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"3dcc6013f2b2a96c7771728e861d2cc00100d0e1","scripts":{"test":"gulp build; mocha;","prepublish":"gulp build;"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.3.6","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"5.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","wrap-ansi":"^2.0.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-runtime":"^6.3.19","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13","babel-plugin-transform-runtime":"^6.4.3"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.10.8.tgz_1456897379233_0.0011843207757920027","host":"packages-13-west.internal.npmjs.com"}},"1.10.9":{"name":"vorpal","version":"1.10.9","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.10.9","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"abb6b9fed3a0a91a91b626d8601f123940d70611","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.10.9.tgz","integrity":"sha512-uxqsGkAwMWqTif0RExTReebMHDqkK6DhcgCm6zPVUn6iElast7dcCzi0ywtqttd1dlp533SrZAaOa0aVyqW0Eg==","signatures":[{"sig":"MEUCIAMmk9rVhuoRytXowPmlfbyvRSAiS8K4ovPRrzi7zLekAiEAtSXHRkcAPeJYzuUIh/3nbt6fHkFtaFE9yIuKzzwDimo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"abb6b9fed3a0a91a91b626d8601f123940d70611","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"ad30ad4d679fe5364421479e99d1c46bcc652e51","scripts":{"test":"gulp build; mocha;","prepublish":"in-publish && gulp build || not-in-publish"},"_npmUser":{"name":"dev","email":"scott.hovestadt@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.3.12","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"5.1.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","wrap-ansi":"^2.0.0","in-publish":"^2.0.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.10.9.tgz_1458755848539_0.06291365111246705","host":"packages-12-west.internal.npmjs.com"}},"1.10.10":{"name":"vorpal","version":"1.10.10","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.10.10","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"ed82c08aa1da1706b2867009c6dc019c33a86ac5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.10.10.tgz","integrity":"sha512-zB8gQLWoIDfuLZQKjtzCRsjwYZuSp4ZtIG+/UhcL/2l9FQWfnlupKvBoCty69mJTTJ/sPTLungduiRJHM+Txhg==","signatures":[{"sig":"MEUCIQDgAdgpXvh77/jjKfhkDCuygRWUtx8xkD7boHcLiSDbIwIgI/dd2NKdF01tvByY8vgrh77VVM3sA8BV1RAW79VuPCk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"ed82c08aa1da1706b2867009c6dc019c33a86ac5","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"5199dc92c97b8db9800c56f99f2d7732365e075d","scripts":{"test":"gulp build; mocha;","prepublish":"in-publish && gulp build || not-in-publish"},"_npmUser":{"name":"dev","email":"scott.hovestadt@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.3.12","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"5.1.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","wrap-ansi":"^2.0.0","in-publish":"^2.0.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.10.10.tgz_1459116778567_0.2814150347840041","host":"packages-12-west.internal.npmjs.com"}},"1.11.0":{"name":"vorpal","version":"1.11.0","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.11.0","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"a1307105b754b773937abb46d9d66d005da58e7d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.11.0.tgz","integrity":"sha512-MXe3ts6HUH4akn/hY25BoAe5L9OHVwb69zPGeYvlBgRAPrF0TFpTTd6d+Sy+u3oOFeGR5AZ0HM3zX5SfjEfkBg==","signatures":[{"sig":"MEQCIF5W3EL1+gnLf8w5aKsjr/uyzy4MzQOsYS1hYAHvo9hLAiBncDlFaN5Lp9dYs6np/GNGq+rLrPnnxUnDsXDST02l0w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"a1307105b754b773937abb46d9d66d005da58e7d","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"21ef2508580b691284f2d84ee8b2db6e43e89c4e","scripts":{"test":"gulp build; mocha;","prepublish":"in-publish && gulp build || not-in-publish"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.8.6","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"6.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","wrap-ansi":"^2.0.0","in-publish":"^2.0.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.11.0.tgz_1464885823686_0.11516174534335732","host":"packages-16-east.internal.npmjs.com"}},"1.11.1":{"name":"vorpal","version":"1.11.1","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.11.1","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"a149bf86701c91161b9154fdf605233890bbb99e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.11.1.tgz","integrity":"sha512-BzXqtOMDEiyZv+E1q376IMnWwqfEo2eqHK5HwHNpE0YVM+JokXsbuOvAbXk/0POSgA0nQ2ZJnx6vY6jsIjQY/g==","signatures":[{"sig":"MEYCIQDLT5iLdsnJOqmZW8JNF6U8a60llFRZBQ9sPeDUp6e7ywIhAJtfVspAg+zOWhoL0G9GLo060Sm5M1MARcJ7FInCpetw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"a149bf86701c91161b9154fdf605233890bbb99e","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"1f1bd5ce95911e88b03e5ba3142aeb6624a1e2c6","scripts":{"test":"gulp build; mocha;","prepublish":"in-publish && gulp build || not-in-publish"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.8.6","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"6.0.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","wrap-ansi":"^2.0.0","in-publish":"^2.0.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.11.1.tgz_1464886447771_0.6244734670035541","host":"packages-16-east.internal.npmjs.com"}},"1.11.2":{"name":"vorpal","version":"1.11.2","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.11.2","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"8817d7274a46e0a1a0cb14278e494ed613bafe52","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.11.2.tgz","integrity":"sha512-RUAdxt84e+vE5ijEcO3uuq7hFph91Xqlf7OOSZE/bnPHwRkTpDKR3XJd+y7qE6bhYf0Ldnzp54cYHpq9oFXbAA==","signatures":[{"sig":"MEYCIQCLrYg7SnVjLaRjPv3ejArR2xAV4rvJT9VUQet0Jt6Z9wIhALW5Rs2zep+m8yA3CpblEaB3B/q91MQu6FRaop2OzJU4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"8817d7274a46e0a1a0cb14278e494ed613bafe52","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"f42de0a89535e39282ed005295773620a4661dc2","scripts":{"test":"gulp build; mocha;","prepublish":"in-publish && gulp build || not-in-publish"},"_npmUser":{"name":"dev","email":"scott.hovestadt@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.8.9","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"6.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","wrap-ansi":"^2.0.0","in-publish":"^2.0.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.11.2.tgz_1465333395355_0.32844167691655457","host":"packages-12-west.internal.npmjs.com"}},"1.11.3":{"name":"vorpal","version":"1.11.3","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.11.3","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"6c971ed9bdfed8fa27232467051fb18d87780f56","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.11.3.tgz","integrity":"sha512-LsA7rSEpTV/0bKjetTyHHgF5nnFSQGV/jTyMGgd9MaDRTgbI4d1KeHKjcxpHTREHTZWb3Lv21i5QQjgkcFSU/w==","signatures":[{"sig":"MEQCICgmrGuwTrzfhUsGMmfxLuB5hgo2uje8zXW3YytPVv/5AiAEL59BDDrQussDzAMgcHw33LYAKKIyccLU9ZtauGECzQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"6c971ed9bdfed8fa27232467051fb18d87780f56","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"4811cd59f4e549e823b29d3cd071b1efd4821ac5","scripts":{"test":"gulp build; mocha;","prepublish":"in-publish && gulp build || not-in-publish"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.7.2","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","wrap-ansi":"^2.0.0","in-publish":"^2.0.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.11.3.tgz_1470171332181_0.6351405214518309","host":"packages-12-west.internal.npmjs.com"}},"1.11.4":{"name":"vorpal","version":"1.11.4","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.11.4","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"fc43989a52e616b61d156e4b8079376c5ca8f226","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.11.4.tgz","integrity":"sha512-KDVVmvyjDDqMgCmpazmEmTyhhF2D8nfZJdFbDxC02atkxjyzbHMUHJHMNRhP8skUMZhOkx61O0HaaSu3p6mTLA==","signatures":[{"sig":"MEYCIQCayBEdfPrdTKTd7DDhDin3K0yy5aD0H6aygbl48ekyYQIhAKYXmoGc4DzysxuioQmbb3mL5I065Fftx8Q0gmvZVd0d","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"fc43989a52e616b61d156e4b8079376c5ca8f226","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"21c3669d77d1a760ed44166dcb274b34cd9377b9","scripts":{"test":"gulp build; mocha;","prepublish":"in-publish && gulp build || not-in-publish"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.7.2","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","wrap-ansi":"^2.0.0","in-publish":"^2.0.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.11.4.tgz_1470358629987_0.13017589296214283","host":"packages-16-east.internal.npmjs.com"}},"1.12.0":{"name":"vorpal","version":"1.12.0","keywords":["api","cli","repl","shell","immersive","framework","app","application","command","commander","automated","prompt","inquirer"],"author":{"name":"dthree"},"license":"MIT","_id":"vorpal@1.12.0","maintainers":[{"name":"dev","email":"threedeecee@gmail.com"},{"name":"dev","email":"scott.hovestadt@gmail.com"}],"homepage":"https://github.com/dthree/vorpal#readme","bugs":{"url":"https://github.com/dthree/vorpal/issues"},"xo":{"rules":{"no-eval":0,"no-proto":0,"no-undef":0,"wrap-iife":0,"no-loop-func":0,"global-require":0,"max-nested-callbacks":0,"no-implicit-coercion":0,"no-negated-condition":0,"no-unused-expressions":0,"no-use-extend-native/no-use-extend-native":0},"space":true},"dist":{"shasum":"4be7b2a4e48f8fcfc9cf3648c419d311c522159d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vorpal/-/vorpal-1.12.0.tgz","integrity":"sha512-lYEhd75l75P3D1LKpm4KqdOSpNyNdDJ9ixEZmC5ZAZUKGy6JNexfMdQ9SNaT5pCHuzuXXRJQedJ+CdqNg/D4Kw==","signatures":[{"sig":"MEQCIFzH+nn23Sv4WQVndTnaM02DaLL+moqV7btPpQuGTQJUAiAyTRs4Nn3sKeI5T1c1auw/0dP+ehINPTuX0yyb2YhijQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/vorpal.js","_from":".","files":["dist"],"_shasum":"4be7b2a4e48f8fcfc9cf3648c419d311c522159d","engines":{"iojs":">= 1.0.0","node":">= 0.10.0"},"gitHead":"d3211623a172a694559063111dd9f7ee430c5be3","scripts":{"test":"gulp build; mocha;","prepublish":"in-publish && gulp build || not-in-publish"},"_npmUser":{"name":"dev","email":"threedeecee@gmail.com"},"repository":{"url":"git+https://github.com/dthree/vorpal.git","type":"git"},"_npmVersion":"3.7.2","description":"Node's first framework for building immersive CLI apps.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"chalk":"^1.1.0","lodash":"^4.5.1","inquirer":"0.11.0","minimist":"^1.2.0","wrap-ansi":"^2.0.0","in-publish":"^2.0.0","log-update":"^1.0.2","strip-ansi":"^3.0.0","babel-polyfill":"^6.3.14","node-localstorage":"^0.6.0"},"devDependencies":{"xo":"^0.9.0","gulp":"^3.9.0","babel":"^6.3.26","mocha":"^2.2.5","moment":"^2.10.3","should":"^6.0.3","gulp-xo":"^0.7.0","request":"^2.58.0","bluebird":"^3.1.1","babel-core":"^6.4.5","gulp-babel":"^6.1.2","gulp-eslint":"^1.1.1","vorpal-less":"0.0.4","vorpal-repl":"^1.1.8","gulp-changed":"^1.3.0","load-plugins":"^2.1.0","babel-preset-es2015":"^6.3.13"},"_npmOperationalInternal":{"tmp":"tmp/vorpal-1.12.0.tgz_1491758127385_0.5540205927100033","host":"packages-12-west.internal.npmjs.com"}}},"name":"vorpal","time":{"created":"2015-08-23T17:11:35.156Z","modified":"2024-10-22T17:26:28.933Z","1.0.0":"2015-08-23T17:11:35.156Z","1.0.1":"2015-08-24T23:29:32.748Z","1.0.2":"2015-08-29T19:44:21.127Z","1.0.3":"2015-08-29T23:49:44.529Z","1.0.4":"2015-08-30T21:33:06.995Z","1.0.5":"2015-08-30T21:48:15.154Z","1.0.7":"2015-08-30T22:26:42.582Z","1.0.8":"2015-09-16T00:44:21.752Z","1.0.9":"2015-09-16T01:38:17.522Z","1.1.0":"2015-09-22T18:49:52.596Z","1.1.1":"2015-09-22T21:00:34.534Z","1.1.2":"2015-09-23T00:20:27.260Z","1.1.3":"2015-09-23T00:25:29.392Z","1.1.4":"2015-09-23T00:53:18.648Z","1.1.5":"2015-09-23T00:56:27.381Z","1.1.6":"2015-09-25T02:50:24.593Z","1.1.7":"2015-09-25T03:31:35.840Z","1.1.8":"2015-09-25T03:33:01.384Z","1.1.9":"2015-09-25T21:54:51.264Z","1.1.10":"2015-09-26T19:57:53.781Z","1.2.0":"2015-09-27T19:06:51.980Z","1.2.1":"2015-09-27T22:49:25.025Z","1.2.3":"2015-09-28T17:10:01.813Z","1.2.4":"2015-09-28T17:39:03.698Z","1.2.5":"2015-09-29T18:06:45.776Z","1.2.6":"2015-09-29T18:31:53.495Z","1.3.0":"2015-10-03T01:42:18.801Z","1.3.1":"2015-10-03T01:49:54.267Z","1.3.2":"2015-10-03T01:56:56.089Z","1.3.3":"2015-10-03T03:53:57.993Z","1.3.4":"2015-10-04T05:32:01.121Z","1.3.5":"2015-10-04T05:41:42.826Z","1.3.6":"2015-10-09T18:27:03.780Z","1.3.7":"2015-10-09T18:51:10.947Z","1.3.8":"2015-10-09T19:10:36.821Z","1.3.9":"2015-10-09T19:14:22.237Z","1.3.10":"2015-10-12T00:49:41.743Z","1.3.11":"2015-10-12T04:36:00.282Z","1.3.12":"2015-10-12T18:59:31.285Z","1.3.13":"2015-10-12T23:22:15.892Z","1.3.14":"2015-10-13T00:27:07.521Z","1.3.15":"2015-10-13T00:49:42.609Z","1.3.16":"2015-10-13T07:23:24.996Z","1.3.17":"2015-10-13T07:34:46.730Z","1.3.18":"2015-10-13T19:08:38.653Z","1.3.19":"2015-10-13T23:33:20.637Z","1.3.20":"2015-10-13T23:54:06.442Z","1.3.21":"2015-10-14T07:14:48.557Z","1.3.22":"2015-10-18T16:25:32.581Z","1.3.23":"2015-10-18T17:51:56.272Z","1.3.24":"2015-10-19T22:50:19.881Z","1.3.25":"2015-10-20T02:02:14.950Z","1.3.26":"2015-10-22T17:58:26.590Z","1.3.27":"2015-10-28T16:41:44.558Z","1.3.29":"2015-10-31T01:50:10.777Z","1.3.30":"2015-10-31T02:16:07.358Z","1.3.31":"2015-10-31T02:27:32.146Z","1.3.32":"2015-10-31T03:06:44.052Z","1.3.33":"2015-10-31T03:36:10.666Z","1.3.34":"2015-10-31T03:49:28.254Z","1.4.0":"2015-12-01T17:33:13.907Z","1.4.1":"2015-12-18T04:15:30.809Z","1.5.0":"2015-12-23T22:46:54.726Z","1.5.1":"2015-12-24T21:09:46.898Z","1.5.2":"2015-12-24T21:37:35.673Z","1.5.3":"2015-12-24T22:17:22.551Z","1.5.4":"2015-12-24T23:08:35.556Z","1.5.5":"2015-12-29T17:32:07.878Z","1.5.6":"2016-01-20T22:55:12.750Z","1.5.7":"2016-01-21T22:22:49.013Z","1.5.8":"2016-01-22T19:16:51.445Z","1.6.0":"2016-01-23T20:01:19.383Z","1.6.1":"2016-01-24T00:12:52.720Z","1.6.2":"2016-01-24T06:03:18.885Z","1.6.3":"2016-01-24T06:05:37.768Z","1.7.0":"2016-01-26T04:32:38.027Z","1.7.1":"2016-01-28T04:26:32.158Z","1.7.2":"2016-01-28T06:29:56.111Z","1.7.3":"2016-01-28T19:13:17.036Z","1.7.4":"2016-01-29T00:29:16.725Z","1.7.5":"2016-01-29T01:06:35.556Z","1.7.6":"2016-01-29T02:55:36.006Z","1.7.7":"2016-01-29T22:07:35.692Z","1.8.0":"2016-02-09T03:03:30.275Z","1.8.1":"2016-02-09T03:49:49.827Z","1.8.2":"2016-02-09T04:40:07.585Z","1.8.3":"2016-02-09T04:50:00.504Z","1.8.4":"2016-02-09T05:07:23.650Z","1.8.5":"2016-02-09T05:20:02.195Z","1.8.6":"2016-02-09T06:33:22.340Z","1.8.8":"2016-02-09T17:40:38.994Z","1.8.9":"2016-02-09T22:46:06.758Z","1.9.0":"2016-02-11T06:21:46.927Z","1.9.1":"2016-02-16T07:28:36.687Z","1.9.2":"2016-02-16T07:30:58.694Z","1.9.3":"2016-02-20T06:02:03.065Z","1.9.4":"2016-02-21T01:19:51.666Z","1.9.5":"2016-02-21T03:40:34.148Z","1.9.6":"2016-02-27T04:28:14.790Z","1.9.7":"2016-02-27T04:31:53.197Z","1.10.0":"2016-03-01T06:05:17.565Z","1.10.1":"2016-03-02T03:55:14.362Z","1.10.2":"2016-03-02T03:57:30.825Z","1.10.3":"2016-03-02T04:09:03.007Z","1.10.4":"2016-03-02T04:38:31.354Z","1.10.5":"2016-03-02T05:13:59.784Z","1.10.6":"2016-03-02T05:18:07.974Z","1.10.7":"2016-03-02T05:37:54.192Z","1.10.8":"2016-03-02T05:42:59.736Z","1.10.9":"2016-03-23T17:57:29.124Z","1.10.10":"2016-03-27T22:12:58.999Z","1.11.0":"2016-06-02T16:43:45.027Z","1.11.1":"2016-06-02T16:54:09.161Z","1.11.2":"2016-06-07T21:03:15.838Z","1.11.3":"2016-08-02T20:55:32.448Z","1.11.4":"2016-08-05T00:57:12.680Z","1.12.0":"2017-04-09T17:15:27.655Z"},"readmeFilename":"README.md","homepage":"https://github.com/dthree/vorpal#readme"}