{"_id":"base-questions","maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"keywords":["api","app","application","ask","base","baseplugin","building-blocks","choice","choices","cli","command","command-line","console","create","framework","line","plugin","plugins","prompt","question","questions","terminal","tool","toolkit","tools"],"dist-tags":{"latest":"0.9.1"},"author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","readme":"# base-questions [![NPM version](https://img.shields.io/npm/v/base-questions.svg?style=flat)](https://www.npmjs.com/package/base-questions) [![NPM downloads](https://img.shields.io/npm/dm/base-questions.svg?style=flat)](https://npmjs.org/package/base-questions) [![Build Status](https://img.shields.io/travis/node-base/base-questions.svg?style=flat)](https://travis-ci.org/node-base/base-questions)\n\n> Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.\n\nYou might also be interested in [data-store](https://github.com/jonschlinkert/data-store).\n\n## Table of Contents\n\n- [Install](#install)\n- [Usage](#usage)\n- [API](#api)\n- [About](#about)\n  * [Related projects](#related-projects)\n  * [Contributing](#contributing)\n  * [Contributors](#contributors)\n  * [Building docs](#building-docs)\n  * [Running tests](#running-tests)\n  * [Author](#author)\n  * [License](#license)\n\n_(TOC generated by [verb](https://github.com/verbose/verb) using [markdown-toc](https://github.com/jonschlinkert/markdown-toc))_\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/):\n\n```sh\n$ npm install --save base-questions\n```\n\n## Usage\n\nTry running the [actual examples](./example.js) if it helps to see the following example in action.\n\n```js\nvar questions = require('base-questions');\nvar assemble = require('assemble-core');\nvar store = require('base-store');\nvar argv = require('base-argv');\n\nvar app = assemble();\napp.use(store());\napp.use(argv());\n\nvar argv = app.argv(process.argv.slice(2));\napp.use(questions(app, argv.options));\n\napp.task('ask', function (cb) {\n  app.ask(function (err, answers) {\n    if (err) return cb(err);\n    console.log(answers);\n    cb();\n  });\n});\n\napp.task('a', function (cb) {\n  console.log('task > a!');\n  cb();\n});\n\napp.task('b', function (cb) {\n  console.log('task > b!');\n  cb();\n});\n\napp.task('c', function (cb) {\n  console.log('task > c!');\n  cb();\n});\n\napp.task('choices', function (cb) {\n  app.choices('run', ['a', 'b', 'c'], function (err, answers) {\n    if (err) return cb(err);\n    if (!answers.run.length) return cb();\n    app.build(answers.run, cb);\n  });\n});\n\napp.build('choices', function(err) {\n  if (err) return console.log(err);\n  console.log('done!');\n});\n```\n\n## API\n\n### [.confirm](index.js#L108)\n\nCreate a `confirm` question.\n\n**Params**\n\n* `name` **{String}**: Question name\n* `msg` **{String}**: Question message\n* `queue` **{String|Array}**: Name or array of question names.\n* `options` **{Object|Function}**: Question options or callback function\n* `callback` **{Function}**: callback function\n\n**Example**\n\n```js\napp.confirm('file', 'Want to generate a file?');\n\n// equivalent to\napp.question({\n  name: 'file',\n  message: 'Want to generate a file?',\n  type: 'confirm'\n});\n```\n\n### [.choices](index.js#L142)\n\nCreate a \"choices\" question from an array.\n\n**Params**\n\n* `name` **{String}**: Question name\n* `msg` **{String}**: Question message\n* `choices` **{Array}**: Choice items\n* `queue` **{String|Array}**: Name or array of question names.\n* `options` **{Object|Function}**: Question options or callback function\n* `callback` **{Function}**: callback function\n\n**Example**\n\n```js\napp.choices('color', 'Favorite color?', ['blue', 'orange', 'green']);\n\n// or\napp.choices('color', {\n  message: 'Favorite color?',\n  choices: ['blue', 'orange', 'green']\n});\n\n// or\napp.choices({\n  name: 'color',\n  message: 'Favorite color?',\n  choices: ['blue', 'orange', 'green']\n});\n```\n\n### [.question](index.js#L175)\n\nAdd a question to be asked by the `.ask` method.\n\n**Params**\n\n* `name` **{String}**: Question name\n* `msg` **{String}**: Question message\n* `value` **{Object|String}**: Question object, message (string), or options object.\n* `locale` **{String}**: Optionally pass the locale to use, otherwise the default locale is used.\n* `returns` **{Object}**: Returns the `this.questions` object, for chaining\n\n**Example**\n\n```js\napp.question('beverage', 'What is your favorite beverage?');\n\n// or\napp.question('beverage', {\n  type: 'input',\n  message: 'What is your favorite beverage?'\n});\n\n// or\napp.question({\n  name: 'beverage'\n  type: 'input',\n  message: 'What is your favorite beverage?'\n});\n```\n\n### [.ask](index.js#L200)\n\nAsk one or more questions, with the given `options` and callback.\n\n**Params**\n\n* `queue` **{String|Array}**: Name or array of question names.\n* `options` **{Object|Function}**: Question options or callback function\n* `callback` **{Function}**: callback function\n\n**Example**\n\n```js\n// ask all questions\napp.ask(function(err, answers) {\n  console.log(answers);\n});\n\n// ask the specified questions\napp.ask(['name', 'description'], function(err, answers) {\n  console.log(answers);\n});\n```\n\n## About\n\n### Related projects\n\n* [answer-store](https://www.npmjs.com/package/answer-store): Store answers to user prompts, based on locale and/or current working directory. | [homepage](https://github.com/jonschlinkert/answer-store \"Store answers to user prompts, based on locale and/or current working directory.\")\n* [common-questions](https://www.npmjs.com/package/common-questions): An object of questions commonly used by project generators or when initializing projects. Questions can… [more](https://github.com/generate/common-questions) | [homepage](https://github.com/generate/common-questions \"An object of questions commonly used by project generators or when initializing projects. Questions can be overridden, updated or extended.\")\n* [question-store](https://www.npmjs.com/package/question-store): Ask questions, persist the answers. Basic support for i18n and storing answers based on current… [more](https://github.com/jonschlinkert/question-store) | [homepage](https://github.com/jonschlinkert/question-store \"Ask questions, persist the answers. Basic support for i18n and storing answers based on current working directory.\")\n* [to-choices](https://www.npmjs.com/package/to-choices): Easily create a normalized inquirer choices question. Supports all of the `choices` question types: checkbox… [more](https://github.com/generate/to-choices) | [homepage](https://github.com/generate/to-choices \"Easily create a normalized inquirer choices question. Supports all of the `choices` question types: checkbox, list, rawlist, expand\")\n\n### Contributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).\n\n### Building docs\n\n_(This document was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme) (a [verb](https://github.com/verbose/verb) generator), please don't edit the readme directly. Any changes to the readme must be made in [.verb.md](.verb.md).)_\n\nTo generate the readme and API documentation with [verb](https://github.com/verbose/verb):\n\n```sh\n$ npm install -g verb verb-generate-readme && verb\n```\n\n### Running tests\n\nInstall dev dependencies:\n\n```sh\n$ npm install -d && npm test\n```\n\n### Author\n\n**Jon Schlinkert**\n\n* [github/jonschlinkert](https://github.com/jonschlinkert)\n* [twitter/jonschlinkert](http://twitter.com/jonschlinkert)\n\n### License\n\nCopyright © 2016, [Jon Schlinkert](https://github.com/jonschlinkert).\nReleased under the [MIT license](https://github.com/node-base/base-questions/blob/master/LICENSE).\n\n***\n\n_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.1.31, on October 01, 2016._","repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"users":{"rbecheras":true},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","versions":{"0.5.1":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.5.1","homepage":"https://github.com/jonschlinkert/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-questions.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"define-property":"^0.2.5","is-valid-glob":"^0.3.0","lazy-cache":"^1.0.3","micromatch":"^2.3.7","mixin-deep":"^1.1.3","question-store":"^0.8.3","to-choices":"^0.2.0"},"devDependencies":{"arr-union":"^3.1.0","assemble-core":"^0.12.1","base":"^0.7.8","base-argv":"^0.4.2","base-config":"^0.4.2","base-data":"^0.3.7","base-options":"^0.6.0","base-store":"^0.4.1","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","matched":"^0.4.1","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb"],"lint":{"reflinks":true}},"gitHead":"a9de1319f37833317fe6dc4435d564eaf0d5e6a5","_id":"base-questions@0.5.1","_shasum":"f2d6f2c767fae8c7872e2c26a1389ab18fd2d25a","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"f2d6f2c767fae8c7872e2c26a1389ab18fd2d25a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.5.1.tgz","integrity":"sha512-M+p8rX+rAtI/Wca5MCJ/M7uq6b0LKlcgB9JxqlBuv/o679kpq4KMFwCSrO48uOHTpP3SMjwh1hRm7dLKF1h69w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEanV68Tmo74fZf2qE/JrU5QTazJLbLmSh/RlJbkRt5AAiEAikYTuU34EkwJ1+KnVuZ1sq/+iLm5Qpxyf9LzeKZRHQg="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-questions-0.5.1.tgz_1457056898159_0.845731945708394"}},"0.6.0":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.6.0","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"define-property":"^0.2.5","lazy-cache":"^1.0.3","mixin-deep":"^1.1.3","question-store":"^0.9.1"},"devDependencies":{"assemble-core":"^0.16.1","base":"^0.8.1","base-argv":"^0.4.2","base-config-process":"^0.1.1","base-data":"^0.4.0","base-option":"^0.7.0","base-store":"^0.4.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb"],"lint":{"reflinks":true}},"gitHead":"580c01482edc24355f8e0e8256b728aa441a2451","_id":"base-questions@0.6.0","_shasum":"437f504c39736d05e0f8f8b9bca18e82191493ae","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"437f504c39736d05e0f8f8b9bca18e82191493ae","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.6.0.tgz","integrity":"sha512-bN9isMzoFEbhgQ9LdETXn1BXopkuRsTg9KuX0oSTO5D0Z4Cp7G5DCKY2/RK2od4G2YKmMK81NYd0oetkKB+U/w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC+A9S5T+jA9nDolwDbEV11HTxbR329rekHmg8wDpAzSgIgddKxG8mBI86gPUn+J0ZzltK0aBgJUBZicRVXTcxdDnQ="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-questions-0.6.0.tgz_1460560315788_0.9564739014022052"}},"0.2.5":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.2.5","homepage":"https://github.com/jonschlinkert/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-questions.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"common-questions":"^0.1.1","for-own":"^0.1.3","get-value":"^2.0.2","lazy-cache":"^1.0.3","micromatch":"^2.3.7","mixin-deep":"^1.1.3","question-store":"^0.4.0","set-value":"^0.3.2","to-choices":"^0.1.1"},"devDependencies":{"arr-union":"^3.0.0","assemble-core":"^0.8.1","base":"^0.6.3","base-argv":"^0.3.0","base-config":"^0.3.3","base-data":"^0.3.5","base-options":"^0.5.4","base-store":"^0.3.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","matched":"^0.4.1","minimist":"^1.2.0","mocha":"*"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"related":{"list":["answer-store","common-questions","question-store","to-choices"]},"layout":"default","plugins":["gulp-format-md"],"reflinks":["answer-store","common-questions","question-cache","question-store"]},"gitHead":"3a194353aaf4bba344c3eb8e5c8f4b92c46a3599","_id":"base-questions@0.2.5","_shasum":"f2a0e8343e9945a3e1fed5eab03d6917cf82e384","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"f2a0e8343e9945a3e1fed5eab03d6917cf82e384","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.2.5.tgz","integrity":"sha512-RGq+aKFWNwgKiw/iR8ieSj2LC1QyHUVsKUhfvNa1qyLWcz87trnpyx3sL15jW6My+9mFqxecCzaRr+O5lDNRxQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDjol7ydKF6CTmRdCoXF1WnLr+i8DlZCzUXWM//qTqrGwIhAL8nw+VBw5nWDqIV7e0usbdkdcy6hvBGqlcO2AWv9gS5"}]}},"0.5.2":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.5.2","homepage":"https://github.com/jonschlinkert/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-questions.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"define-property":"^0.2.5","lazy-cache":"^1.0.3","mixin-deep":"^1.1.3","question-store":"^0.8.3"},"devDependencies":{"arr-union":"^3.1.0","assemble-core":"^0.12.1","base":"^0.7.8","base-argv":"^0.4.2","base-config":"^0.4.2","base-data":"^0.3.7","base-options":"^0.6.0","base-store":"^0.4.1","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","matched":"^0.4.1","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb"],"lint":{"reflinks":true}},"gitHead":"32ba795d2629defbc33a90243019bf2fdb4025cd","_id":"base-questions@0.5.2","_shasum":"e792eb9685c841f36ce8423b309ea6161be91bad","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"e792eb9685c841f36ce8423b309ea6161be91bad","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.5.2.tgz","integrity":"sha512-VLO+ooP+Ce6umU5fN0HgtP8/2OnBj+DgHjx+Vh1NBazH21epPuOTRPU5eiWWnrr+DpuoMOyLjP+ATzM7Gl2bLQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAZlWmkyCmAhwr70HioHC/yPArq6COIpVVkgINcxM1rNAiEA3N8ehmzzhfSY/XaKBgMozMFIXeVf4VaEvHFEJWTAE9U="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-questions-0.5.2.tgz_1457495146624_0.2218553521670401"}},"0.6.1":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.6.1","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"define-property":"^0.2.5","isobject":"^2.1.0","lazy-cache":"^2.0.1","mixin-deep":"^1.1.3","question-store":"^0.9.2"},"devDependencies":{"assemble-core":"^0.16.1","base":"^0.8.1","base-argv":"^0.4.2","base-config-process":"^0.1.1","base-data":"^0.4.0","base-option":"^0.7.0","base-store":"^0.4.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb"],"lint":{"reflinks":true}},"gitHead":"81c086071e33cbbdfb797cf36adb035b7fc2b93e","_id":"base-questions@0.6.1","_shasum":"31d1e5656133d6deda8480bec80dc5a90cb6b70f","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"31d1e5656133d6deda8480bec80dc5a90cb6b70f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.6.1.tgz","integrity":"sha512-OUMeOher2RDKVHudKoeNiplghm7oyZdEVF2e2l5mnJZXEMigDTTerEtMAgBPVkhqivHGF0qV+xrTiBAJjEpudQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDHGK8rzZ1fMskcmmPA8q/Gx5oJB7k7/1GOBBq9AqDUOgIgWGtPnmQIqFND1TNH2BBbN0YszXRudIlgRMYAspLyPf0="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-questions-0.6.1.tgz_1463065036150_0.04452869505621493"}},"0.7.0":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.7.0","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base-store":"^0.4.4","define-property":"^0.2.5","is-valid-app":"^0.2.0","isobject":"^2.1.0","lazy-cache":"^2.0.1","mixin-deep":"^1.1.3","question-store":"^0.10.0"},"devDependencies":{"assemble-core":"^0.16.1","base":"^0.8.1","base-argv":"^0.4.2","base-config-process":"^0.1.1","base-data":"^0.4.0","base-option":"^0.7.0","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb","verb-generate-readme"],"lint":{"reflinks":true}},"gitHead":"4bf6a4c9af057da62a90b0b1d9c613798dfadd05","_id":"base-questions@0.7.0","_shasum":"d5c30c58285d59e40274c8c6f889e1f756bf469d","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"d5c30c58285d59e40274c8c6f889e1f756bf469d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.7.0.tgz","integrity":"sha512-xdom+evdGjXtnnGAiCfIDLVdJVle6mlZfPT3p9MviNnPOvBAznVJPrh1zjddsXo1P0X9c4yfQghbVwUFMZ9P0w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBCueQwJnwhsFZg26Yuk75/ZsTJhaGzIIKrj2KnGxKjVAiAICHRdiAkYGblMzAm1PuCNZb94n0fSAP1ziYBnYEcQBA=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-questions-0.7.0.tgz_1468269918507_0.23202755209058523"}},"0.1.3":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.1.3","homepage":"https://github.com/jonschlinkert/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-questions.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"common-questions":"^0.1.1","extend-shallow":"^2.0.1","get-value":"^2.0.0","lazy-cache":"^0.2.4","question-store":"^0.2.2","to-choices":"^0.1.1"},"devDependencies":{"assemble-core":"^0.3.0","base-argv":"^0.1.3","base-methods":"^0.5.0","base-store":"^0.2.0","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","mocha":"*"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"related":{"list":["to-choices","common-questions","question-store","answer-store"]}},"gitHead":"ea3769d0ac5940954e8d63c2f04ee047e1846b7c","_id":"base-questions@0.1.3","_shasum":"daa85b6316518171f4d5a36cf17cc815668c9a9d","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"daa85b6316518171f4d5a36cf17cc815668c9a9d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.1.3.tgz","integrity":"sha512-uojvfMnnUNd8bvhSgCCZYeBzPEX/CerSZe4v5/3k1iaot5sXiKUqA7KYTerzKwF1/66oPzVcMWDoGnorZFItoQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCHmF1oM4o9xH3q0pL8oVOJH+YAPpG9ZKpP5OOPKktNnQIhAINzLahEMNdAMRYWFrufH90OQZuikBhbVLlCwk0rFClo"}]}},"0.2.2":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.2.2","homepage":"https://github.com/jonschlinkert/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-questions.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"common-questions":"^0.1.1","extend-shallow":"^2.0.1","for-own":"^0.1.3","get-value":"^2.0.0","lazy-cache":"^0.2.4","micromatch":"^2.3.5","question-store":"^0.3.0","set-value":"^0.3.1","to-choices":"^0.1.1"},"devDependencies":{"assemble-core":"^0.3.0","base-argv":"^0.1.3","base-config":"^0.3.2","base-data":"^0.3.3","base-methods":"^0.6.1","base-options":"^0.5.4","base-store":"^0.2.0","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","minimist":"^1.2.0","mocha":"*"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"related":{"list":["to-choices","common-questions","question-store","answer-store"]},"layout":"default","plugins":["gulp-format-md"],"reflinks":["common-questions","question-cache","question-store","answer-store"]},"gitHead":"9c45502cdbf4bd8dc859a40fe97138b3a7246fbd","_id":"base-questions@0.2.2","_shasum":"420bfa62620750da23446a728de4677d4e5f84e5","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"420bfa62620750da23446a728de4677d4e5f84e5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.2.2.tgz","integrity":"sha512-Ju5OG7dvxzeUncv9wUGPZdo23C9Nnprivf1WFj0HdsMaJQ0QevfwG92Itd7W4KtkAvdwo4YsZfZlc1WV6+fxng==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCTtiMVgsx/8hN3c2cuaGRSYm1zfcjMIgdEPU+ZbYgpGAIgY6/fyEttQmzuPCcwVlNQzK2jSTqXw9vO64julpH6tIU="}]}},"0.4.0":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.4.0","homepage":"https://github.com/jonschlinkert/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-questions.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"define-property":"^0.2.5","is-valid-glob":"^0.3.0","lazy-cache":"^1.0.3","micromatch":"^2.3.7","mixin-deep":"^1.1.3","question-store":"^0.7.0","to-choices":"^0.1.1"},"devDependencies":{"arr-union":"^3.1.0","assemble-core":"^0.12.1","base":"^0.7.8","base-argv":"^0.4.2","base-config":"^0.4.2","base-data":"^0.3.7","base-options":"^0.6.0","base-store":"^0.3.6","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","matched":"^0.4.1","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb"],"lint":{"reflinks":true}},"gitHead":"32cdb14c23490e899d3ac0ba5efc999d4de6b991","_id":"base-questions@0.4.0","_shasum":"b1bda0782b76d0b1188aa05a0392547a84360e6a","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"b1bda0782b76d0b1188aa05a0392547a84360e6a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.4.0.tgz","integrity":"sha512-JEHYBiq58Q8fVe8r9lFd4eshdm+VtovKBdrdBJZA8k0A8xYk7rRYnhM8jtR+hXr+/+SF0TVYmpPJZIvDPcotWA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCGTCv6rFaDN91rWJQmfzE3DagvkPutGlBffTenfpLZ8QIgUKgQmYjuKG50ejp0bk9RzwJJT2W8aqyIYRYP8LhFFv8="}]},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/base-questions-0.4.0.tgz_1456264162962_0.13891571294516325"}},"0.2.3":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.2.3","homepage":"https://github.com/jonschlinkert/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-questions.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"common-questions":"^0.1.1","for-own":"^0.1.3","get-value":"^2.0.2","lazy-cache":"^1.0.2","micromatch":"^2.3.5","mixin-deep":"^1.1.3","question-store":"^0.3.2","set-value":"^0.3.2","to-choices":"^0.1.1"},"devDependencies":{"assemble-core":"^0.3.0","base-argv":"^0.1.3","base-config":"^0.3.2","base-data":"^0.3.3","base-methods":"^0.6.1","base-options":"^0.5.4","base-store":"^0.2.0","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","minimist":"^1.2.0","mocha":"*"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"related":{"list":["to-choices","common-questions","question-store","answer-store"]},"layout":"default","plugins":["gulp-format-md"],"reflinks":["common-questions","question-cache","question-store","answer-store"]},"gitHead":"7367b8713b63fa22b2b2962d0ade7b79685cde32","_id":"base-questions@0.2.3","_shasum":"e2f05e915b4a54aae525fde919cb25b55f3158fb","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"e2f05e915b4a54aae525fde919cb25b55f3158fb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.2.3.tgz","integrity":"sha512-FKFyit7+BCXyxJFQvXvJ5egMlzlvCa/d5iLhzwVz+7byuKJwcY58SY+20xpM6Apn2M2MQfSfDxWG7lAzzoaXVQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCLy6/EwlvgZ+VLLLeuSmII0YTuDQTg1HX6GU+KpthQaQIhAJBr6hchk2AkQwahW81/ItppcWV12GdQpKYZ2PYzuukv"}]}},"0.3.2":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.3.2","homepage":"https://github.com/jonschlinkert/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-questions.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"common-questions":"^0.1.2","for-own":"^0.1.3","get-value":"^2.0.3","is-valid-glob":"^0.3.0","lazy-cache":"^1.0.3","micromatch":"^2.3.7","mixin-deep":"^1.1.3","question-store":"^0.6.0","set-value":"^0.3.3","to-choices":"^0.1.1"},"devDependencies":{"arr-union":"^3.0.0","assemble-core":"^0.10.0","base":"^0.6.7","base-argv":"^0.3.0","base-config":"^0.3.6","base-data":"^0.3.6","base-options":"^0.5.5","base-store":"^0.3.4","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","matched":"^0.4.1","minimist":"^1.2.0","mocha":"^2.4.4"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"layout":"default","plugins":["gulp-format-md"],"reflinks":["answer-store","common-questions","question-cache","question-store"]},"gitHead":"7c03c3d6a1e8e87c9f8cda5cab2ced180c547e24","_id":"base-questions@0.3.2","_shasum":"d6255d707127d9dfd7f5281194013f51747feec2","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"d6255d707127d9dfd7f5281194013f51747feec2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.3.2.tgz","integrity":"sha512-LS7GsBZIMGxKkahcW9BlpmCGvEYLxqEQP1fzABiRE4eRgbPOfAUhpexQJZCH+NNdurwewWy2UHwVT+9Jw+3Zvw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDZ4GXQFo0V12t/hSAc2XS08Pnkeu07tf/McepQ0C8XhAiEAt1KuhPI98psdI7C5WRLb56j9Tniq7HuU3zeqNi6ggj4="}]},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/base-questions-0.3.2.tgz_1454768612916_0.8248151626903564"}},"0.4.1":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.4.1","homepage":"https://github.com/jonschlinkert/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-questions.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"define-property":"^0.2.5","is-valid-glob":"^0.3.0","lazy-cache":"^1.0.3","micromatch":"^2.3.7","mixin-deep":"^1.1.3","question-store":"^0.7.0","to-choices":"^0.1.1"},"devDependencies":{"arr-union":"^3.1.0","assemble-core":"^0.12.1","base":"^0.7.8","base-argv":"^0.4.2","base-config":"^0.4.2","base-data":"^0.3.7","base-options":"^0.6.0","base-store":"^0.3.6","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","matched":"^0.4.1","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb"],"lint":{"reflinks":true}},"gitHead":"f65ee696c3c9c070c0ac8c8b4876875902bac780","_id":"base-questions@0.4.1","_shasum":"31f2787f3c2dc7040b42764ad241fe77d2afcd7e","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"31f2787f3c2dc7040b42764ad241fe77d2afcd7e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.4.1.tgz","integrity":"sha512-nIoThwUMeLbSKpKQ7S5SadbhCDqkpDFcBb6J+kOsvm3ux2UbOuWzHw1+O7jt9qRBHh46Kegf1vgXz/U6t7tAwQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEQ6oT52xtMQCNIoDaLNnjl90xEN1Gm9bTGBPYiKQekvAiEA56W5M9IXcVOBTrGEnBR1p7rLnjmCIzQXF+0EerqHnoU="}]},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/base-questions-0.4.1.tgz_1456266681898_0.9712654736358672"}},"0.5.0":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.5.0","homepage":"https://github.com/jonschlinkert/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-questions.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"define-property":"^0.2.5","is-valid-glob":"^0.3.0","lazy-cache":"^1.0.3","micromatch":"^2.3.7","mixin-deep":"^1.1.3","question-store":"^0.8.1","to-choices":"^0.2.0"},"devDependencies":{"arr-union":"^3.1.0","assemble-core":"^0.12.1","base":"^0.7.8","base-argv":"^0.4.2","base-config":"^0.4.2","base-data":"^0.3.7","base-options":"^0.6.0","base-store":"^0.4.1","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","matched":"^0.4.1","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb"],"lint":{"reflinks":true}},"gitHead":"52e2a179223893677378ebaa3ffc60a32d5890d5","_id":"base-questions@0.5.0","_shasum":"6ddcca0f1d5e82636e4f4561577b6dc5dcf2fb47","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"6ddcca0f1d5e82636e4f4561577b6dc5dcf2fb47","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.5.0.tgz","integrity":"sha512-v7usbL16eaEx/FBuDJyVZ9yJtBbs1aYTkp1Z3WlXygd4WGDC21262gfCIgxhPBikGVd6DErIkEze11/tK4i8Vg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCE4bOUFhD50ISpmC5KzseWNkyoYndouj0yFqhXjeO9WgIgfdnS5lEJW0scTF+VjsR/Fd4FcOG2iVdCh8nd/jQJJgM="}]},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/base-questions-0.5.0.tgz_1456611790919_0.7591956376563758"}},"0.5.5":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.5.5","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"define-property":"^0.2.5","lazy-cache":"^1.0.3","mixin-deep":"^1.1.3","question-store":"^0.8.3"},"devDependencies":{"arr-union":"^3.1.0","assemble-core":"^0.12.1","base":"^0.7.8","base-argv":"^0.4.2","base-config":"^0.4.2","base-data":"^0.3.7","base-options":"^0.6.0","base-store":"^0.4.1","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","matched":"^0.4.1","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb"],"lint":{"reflinks":true}},"gitHead":"38263f75631708e31aa14db71573ac6bb3d1a0fb","_id":"base-questions@0.5.5","_shasum":"9552f34e60816018ca9ddd2cf82712e986b3edd5","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"9552f34e60816018ca9ddd2cf82712e986b3edd5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.5.5.tgz","integrity":"sha512-fszmUjfrgD0B03rdXBRQzTd8aShCYFV3uWz1nw0jvvzKg9NykhOCdzDMXX++7lQNzpKAzrk+dq9fPQ2BcUetlQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCXCzmMog81h0dVASQkGV28uKaoXtjx57qBGAFuN8jnSwIhAMISgNPrN6cAjXzkQCnr0MvqQWTWdEDoULSyIIy+LRF4"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-questions-0.5.5.tgz_1460015667747_0.46376587566919625"}},"0.6.4":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.6.4","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"define-property":"^0.2.5","is-registered":"^0.1.3","is-valid-instance":"^0.1.0","isobject":"^2.1.0","lazy-cache":"^2.0.1","mixin-deep":"^1.1.3","question-store":"^0.9.2"},"devDependencies":{"assemble-core":"^0.16.1","base":"^0.8.1","base-argv":"^0.4.2","base-config-process":"^0.1.1","base-data":"^0.4.0","base-option":"^0.7.0","base-store":"^0.4.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb"],"lint":{"reflinks":true}},"gitHead":"90e7e8ba45f50217dec0c64e0a2b30462c89f873","_id":"base-questions@0.6.4","_shasum":"e2715b40ce143b7f2c1e5ff525e0f5ffb4cdf1d1","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"e2715b40ce143b7f2c1e5ff525e0f5ffb4cdf1d1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.6.4.tgz","integrity":"sha512-lvc0J/Viu3IwSOfuvRJiwxQ/w9E6hMnqhZIGVTihsj3V2qei05EBDvvUPXVdnh2ww/p7h/2Y6nARO18kboAP6Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDP5MfJ4FKVCeSnZ0palNeZ0JNYrT5I3fxWRUJ2C7iu3AiEA79g2HGT0/mB27n+z5aIHwdrF3rbQOHkaCdzAp4J5W1s="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-questions-0.6.4.tgz_1463640925033_0.4529274571686983"}},"0.7.3":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.7.3","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","LICENSE","README.md","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base-store":"^0.4.4","clone-deep":"^0.2.4","define-property":"^0.2.5","is-valid-app":"^0.2.0","isobject":"^2.1.0","lazy-cache":"^2.0.1","mixin-deep":"^1.1.3","question-store":"^0.11.0"},"devDependencies":{"assemble-core":"^0.25.0","base":"^0.11.1","base-argv":"^0.5.0","base-config-process":"^0.1.9","base-data":"^0.6.0","base-option":"^0.8.4","bdd-stdin":"^0.2.0","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.9","gulp-istanbul":"^1.0.0","gulp-mocha":"^2.2.0","intercept-stdout":"^0.1.2","minimist":"^1.2.0","mocha":"^2.5.3"},"keywords":["api","app","application","ask","base","baseplugin","building-blocks","choice","choices","cli","command","command-line","console","create","framework","line","plugin","plugins","prompt","question","questions","terminal","tool","toolkit","tools"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb","verb-generate-readme"],"lint":{"reflinks":true}},"gitHead":"39d8b426e79425de0bce199549168b5c03554c3f","_id":"base-questions@0.7.3","_shasum":"4419b93389305a576c1bb5b8014bbd1c694b3d10","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"4419b93389305a576c1bb5b8014bbd1c694b3d10","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.7.3.tgz","integrity":"sha512-NgQca0WGsRWGijY0VAz8ru0DJs19y31eHcVKhhWcv8qlU+B28A/rvuuqJ2u5Jobb2eOr4HQO+Q0jC5/RbG4hCQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFQthfcuw6p+R6BHyXPZdDumDdg+3+0JFd0WtMklAqJ4AiEAsU7XRX5kMBCMiEyWpyyC85bWl3zHVUbz8UHLvg7DYwc="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-questions-0.7.3.tgz_1468771864961_0.04883337765932083"}},"0.9.1":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.9.1","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base-store":"^0.4.4","clone-deep":"^0.2.4","debug":"^2.2.0","define-property":"^0.2.5","extend-shallow":"^2.0.1","get-value":"^2.0.6","is-valid-app":"^0.2.1","isobject":"^2.1.0","lazy-cache":"^2.0.1","mixin-deep":"^1.1.3","question-store":"^0.13.0","set-value":"^0.4.0"},"devDependencies":{"assemble-core":"^0.26.0","base":"^0.11.1","base-argv":"^0.5.0","base-config-process":"^0.1.9","base-data":"^0.6.0","base-option":"^0.8.4","bdd-stdin":"^0.2.0","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.10","gulp-istanbul":"^1.1.0","gulp-mocha":"^3.0.1","intercept-stdout":"^0.1.2","minimist":"^1.2.0","mocha":"^3.0.2"},"keywords":["api","app","application","ask","base","baseplugin","building-blocks","choice","choices","cli","command","command-line","console","create","framework","line","plugin","plugins","prompt","question","questions","terminal","tool","toolkit","tools"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["verb","verb-generate-readme"],"lint":{"reflinks":true}},"gitHead":"1150c2b3d3a8ac73de23c27bb3a720b0e660bb3d","_id":"base-questions@0.9.1","_shasum":"8ff417f608625767be802927f1fb11e5d691432e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"8ff417f608625767be802927f1fb11e5d691432e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.9.1.tgz","integrity":"sha512-J+RUEFzy3pct7q1oNNrZI2feeeZeFnoC9p8IAEgpJz21oT8GSeihql8F0CjEUiwOPox9qDzjsKPB/a2M2qzkgw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBmq73gSoRP713LRzvaFag1ISpVGqq6u4nJjWnSeZvwJAiEAielht5CDvNQ348AVc8+5ppqjwDSX0afXWzaROL+Fgfo="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/base-questions-0.9.1.tgz_1480575318287_0.9511731234379113"}},"0.5.6":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.5.6","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"define-property":"^0.2.5","lazy-cache":"^1.0.3","mixin-deep":"^1.1.3","question-store":"^0.8.3"},"devDependencies":{"arr-union":"^3.1.0","assemble-core":"^0.12.1","base":"^0.7.8","base-argv":"^0.4.2","base-config":"^0.4.2","base-data":"^0.3.7","base-options":"^0.6.0","base-store":"^0.4.1","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","matched":"^0.4.1","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb"],"lint":{"reflinks":true}},"gitHead":"3eac34995b468d5d63e138ecdf18d91502a11b5d","_id":"base-questions@0.5.6","_shasum":"05e96f0957eeac8d1e66ec5db43203998a6360d3","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"05e96f0957eeac8d1e66ec5db43203998a6360d3","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.5.6.tgz","integrity":"sha512-R2i3q2EysQbqzPmT7Q/HekXnvv1qi7Yccq1EvSJGx+PsxQprubw2hvlsHH1W5XpmSMgmLyOs+e60dEYWX8HXjg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD59DreeaSaQmEnnTD5hAX6Zu2W3oAyM/P/JyVgL06PTQIgFL/wqR5ez8qpytekmvcZxOZ+OYdGR/suzcxKN9UIvDY="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-questions-0.5.6.tgz_1460531321830_0.27453663223423064"}},"0.6.5":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.6.5","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"define-property":"^0.2.5","is-registered":"^0.1.3","is-valid-instance":"^0.1.0","isobject":"^2.1.0","lazy-cache":"^2.0.1","mixin-deep":"^1.1.3","question-store":"^0.9.2"},"devDependencies":{"assemble-core":"^0.16.1","base":"^0.8.1","base-argv":"^0.4.2","base-config-process":"^0.1.1","base-data":"^0.4.0","base-option":"^0.7.0","base-store":"^0.4.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb"],"lint":{"reflinks":true}},"gitHead":"b360bfd41d4f011cc3f74fb0c4303a0c5a15bb68","_id":"base-questions@0.6.5","_shasum":"f62786e9db7dff7e26c9f49154824877ea10122b","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"f62786e9db7dff7e26c9f49154824877ea10122b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.6.5.tgz","integrity":"sha512-fHJWOyy4cxuPOydKgM0TK6RMg7DdasVtD3nT6OsZrnZw5KXYpU90Mz5C3TytS5opFGZ3cUngWAX+ldBteLjHsg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBbW5RIPZhPRAZHg912JFuRht+NnnlnsrqFztrmrv51mAiEAoUjlkRdZq1FfCROYFpwMjBr3fVklm5MvIgKXhLhU93Y="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/base-questions-0.6.5.tgz_1463874315076_0.3891081924084574"}},"0.7.4":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.7.4","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","LICENSE","README.md","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base-store":"^0.4.4","clone-deep":"^0.2.4","debug":"^2.2.0","define-property":"^0.2.5","is-valid-app":"^0.2.0","isobject":"^2.1.0","lazy-cache":"^2.0.1","mixin-deep":"^1.1.3","question-store":"^0.11.0"},"devDependencies":{"assemble-core":"^0.25.0","base":"^0.11.1","base-argv":"^0.5.0","base-config-process":"^0.1.9","base-data":"^0.6.0","base-option":"^0.8.4","bdd-stdin":"^0.2.0","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.9","gulp-istanbul":"^1.0.0","gulp-mocha":"^2.2.0","intercept-stdout":"^0.1.2","minimist":"^1.2.0","mocha":"^2.5.3"},"keywords":["api","app","application","ask","base","baseplugin","building-blocks","choice","choices","cli","command","command-line","console","create","framework","line","plugin","plugins","prompt","question","questions","terminal","tool","toolkit","tools"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb","verb-generate-readme"],"lint":{"reflinks":true}},"gitHead":"6b7c3a8a03ebf63778f22927c9dbdc838908d668","_id":"base-questions@0.7.4","_shasum":"f64f848261ed6c828f4983d7812f40d303782146","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"f64f848261ed6c828f4983d7812f40d303782146","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.7.4.tgz","integrity":"sha512-uHRp5ZM2MFXUhDOPK09lroJdDe3lrXTHtg2x7pC1x4RdimVZcsX+hvQuxNqyAUN62EHfFuaK+FIFjMiA4AoiQg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID4Di57tjNl5P+gGBThbEI8gvYElsy9ONvfpMK0gbvpkAiEAtd9PgBWpWc0KPHH8lOZu3SWfDAESPVdsnur2ow9Vkno="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/base-questions-0.7.4.tgz_1469833859680_0.09160524909384549"}},"0.2.6":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.2.6","homepage":"https://github.com/jonschlinkert/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-questions.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"common-questions":"^0.1.1","for-own":"^0.1.3","get-value":"^2.0.2","lazy-cache":"^1.0.3","micromatch":"^2.3.7","mixin-deep":"^1.1.3","question-store":"^0.4.2","set-value":"^0.3.2","to-choices":"^0.1.1"},"devDependencies":{"arr-union":"^3.0.0","assemble-core":"^0.8.1","base":"^0.6.3","base-argv":"^0.3.0","base-config":"^0.3.3","base-data":"^0.3.5","base-options":"^0.5.4","base-store":"^0.3.2","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","matched":"^0.4.1","minimist":"^1.2.0","mocha":"*"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"related":{"list":["answer-store","common-questions","question-store","to-choices"]},"layout":"default","plugins":["gulp-format-md"],"reflinks":["answer-store","common-questions","question-cache","question-store"]},"gitHead":"179d92d634f364cf29ab98938ef0470156b12cbd","_id":"base-questions@0.2.6","_shasum":"2c909b7e70e3bd83042f6a599b2d70834ebcc54d","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"2c909b7e70e3bd83042f6a599b2d70834ebcc54d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.2.6.tgz","integrity":"sha512-3z7I4VinBiFKiaqH/Xj7uLErcRcTLL4MPMsaMD7TU8Y+/TLHHGv7KZ6uIs/6fsd/xSt8755W/wDX963Q40W34Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDqoS6n3HRCRJ3SptutQZFoVxK2UjbpVihd8+9tUlw1mgIhAOaMBLZqdP/Raw71xjFW6yffWx1LM/0AyyQrJnUyS0wQ"}]}},"0.5.3":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.5.3","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"define-property":"^0.2.5","lazy-cache":"^1.0.3","mixin-deep":"^1.1.3","question-store":"^0.8.3"},"devDependencies":{"arr-union":"^3.1.0","assemble-core":"^0.12.1","base":"^0.7.8","base-argv":"^0.4.2","base-config":"^0.4.2","base-data":"^0.3.7","base-options":"^0.6.0","base-store":"^0.4.1","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","matched":"^0.4.1","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb"],"lint":{"reflinks":true}},"gitHead":"1c22c93a78555e9bb60ab668c5cd6a0858fdde2f","_id":"base-questions@0.5.3","_shasum":"c590826ad16ae1725b50bba1fded97f5a1e1bcf1","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"c590826ad16ae1725b50bba1fded97f5a1e1bcf1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.5.3.tgz","integrity":"sha512-2C/3BXzw15wy/5ImX4SAUIPPfAlQD7cHtUEcK/GrLqEcq9WiLc4Z1f3sRLr9NVdk2zThH1gsvHZ5+lgTAq17DQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGSN9vkBBdeBVvdZUzt6lhX9Xubma0XSXKGNrzo0L7JrAiEA2HOEutHz3OG530J6awT3YwuU8WkA211QqwLeb6UEewM="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-questions-0.5.3.tgz_1458218989369_0.994634942850098"}},"0.6.2":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.6.2","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"define-property":"^0.2.5","isobject":"^2.1.0","lazy-cache":"^2.0.1","mixin-deep":"^1.1.3","question-store":"^0.9.2"},"devDependencies":{"assemble-core":"^0.16.1","base":"^0.8.1","base-argv":"^0.4.2","base-config-process":"^0.1.1","base-data":"^0.4.0","base-option":"^0.7.0","base-store":"^0.4.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb"],"lint":{"reflinks":true}},"gitHead":"062a4eaf585610a7c3eddf356d8eb5fd2ee6768c","_id":"base-questions@0.6.2","_shasum":"0abfc69890588c04422c1c00ca5af84aadc1843a","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"0abfc69890588c04422c1c00ca5af84aadc1843a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.6.2.tgz","integrity":"sha512-IVrIaDyfOerV6lcg5r3mwZNOejEgy6xMqFwaNpIWqPOV4g1sC9vYZnIYnJQMk43X4XJS23CY06Xj3MDPrJFLMg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDG8zbIeq5oX/P/kMExd9gpyMpa2azvdeP1qAbV6Mbu4QIhAKB2zKf5sqPOP6qbILUJvfp6mdDhpG56ZhsXo0a2B2XI"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-questions-0.6.2.tgz_1463254429615_0.21952201495878398"}},"0.7.1":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.7.1","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","LICENSE","README.md","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base-store":"^0.4.4","define-property":"^0.2.5","is-valid-app":"^0.2.0","isobject":"^2.1.0","lazy-cache":"^2.0.1","mixin-deep":"^1.1.3","question-store":"^0.10.0"},"devDependencies":{"assemble-core":"^0.16.1","base":"^0.8.1","base-argv":"^0.4.2","base-config-process":"^0.1.1","base-data":"^0.4.0","base-option":"^0.7.0","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["api","app","application","ask","base","baseplugin","building-blocks","choice","choices","cli","command","command-line","console","create","framework","line","plugin","plugins","prompt","question","questions","terminal","tool","toolkit","tools"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb","verb-generate-readme"],"lint":{"reflinks":true}},"gitHead":"fc8c933b207894045e65786c7caa8dde32a0b69b","_id":"base-questions@0.7.1","_shasum":"3e4bc594c80efde4fdfbbcb9b5b1a174546dad79","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"3e4bc594c80efde4fdfbbcb9b5b1a174546dad79","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.7.1.tgz","integrity":"sha512-blQJ2yPJ1QIEogQiFcy0IQs5QljVpt6pZpo+wcaSsFCIgMl3OJwzkt+1nQpAGCk1Qy0WynHNwQRt0p0QySmGZA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDITQH+txWFvRARaXdG82sj1HEybcNBA3GlThD0aw9ktQIgGTmSuWceTGr/vlkVu9UIKCS6kmCGnpJA/a8TCWbRqMU="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/base-questions-0.7.1.tgz_1468275606168_0.004099122015759349"}},"0.8.0":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.8.0","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","LICENSE","README.md","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base-store":"^0.4.4","clone-deep":"^0.2.4","debug":"^2.2.0","define-property":"^0.2.5","get-value":"^2.0.6","is-valid-app":"^0.2.0","isobject":"^2.1.0","lazy-cache":"^2.0.1","mixin-deep":"^1.1.3","question-store":"^0.12.1","set-value":"^0.3.3"},"devDependencies":{"assemble-core":"^0.26.0","base":"^0.11.1","base-argv":"^0.5.0","base-config-process":"^0.1.9","base-data":"^0.6.0","base-option":"^0.8.4","bdd-stdin":"^0.2.0","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.10","gulp-istanbul":"^1.1.0","gulp-mocha":"^3.0.1","intercept-stdout":"^0.1.2","minimist":"^1.2.0","mocha":"^3.0.2"},"keywords":["api","app","application","ask","base","baseplugin","building-blocks","choice","choices","cli","command","command-line","console","create","framework","line","plugin","plugins","prompt","question","questions","terminal","tool","toolkit","tools"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb","verb-generate-readme"],"lint":{"reflinks":true}},"gitHead":"ace3dbd9a6dc42e355c50e26c45e7c87ee30bf84","_id":"base-questions@0.8.0","_shasum":"19feebbaaa102a42d2b7650a3111b56699e6e4ee","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"19feebbaaa102a42d2b7650a3111b56699e6e4ee","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.8.0.tgz","integrity":"sha512-t3j27+C23ReLx8WDWmk6AekON03aSPHWOnfB3lRh5MGVibP4G5gEqVGRw1Ndx6MSY+mw+aYrl5iAX0xPgrYc4g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFc+WJ+0JrTCmSXIs0f9Qs7DK2qqDO9XKL4rUa6iCX41AiB5jwiuRDUlZK8O336ELMrqsdBUE+gkC+EbIsimyaNhPg=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/base-questions-0.8.0.tgz_1471422612459_0.04034247901290655"}},"0.5.4":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.5.4","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"define-property":"^0.2.5","lazy-cache":"^1.0.3","mixin-deep":"^1.1.3","question-store":"^0.8.3"},"devDependencies":{"arr-union":"^3.1.0","assemble-core":"^0.12.1","base":"^0.7.8","base-argv":"^0.4.2","base-config":"^0.4.2","base-data":"^0.3.7","base-options":"^0.6.0","base-store":"^0.4.1","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","matched":"^0.4.1","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb"],"lint":{"reflinks":true}},"gitHead":"82c229cf45a8a44900f01573f4b882af99011896","_id":"base-questions@0.5.4","_shasum":"e7d656489e2857a22dd47d9e23c9f13ea099dada","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"e7d656489e2857a22dd47d9e23c9f13ea099dada","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.5.4.tgz","integrity":"sha512-y3s+6UdiRtJc6EiI7lvII9/FQ07CFu5wiZG5ot0Rl/TUQFsAOKDA9VNbZazcy08QC3sJ8Bi8vVttkKPQvzuuPA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCXC5mQlK9gjc9nx0RLJg6+AH4J/I+WAfmWUflk+6Ws+gIhAJxO3VGT2vlKayY8eTnbut7VmQKmTrW4+boOoWNNZRwP"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-questions-0.5.4.tgz_1459858351900_0.5157710192725062"}},"0.6.3":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.6.3","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"define-property":"^0.2.5","is-registered":"^0.1.3","isobject":"^2.1.0","lazy-cache":"^2.0.1","mixin-deep":"^1.1.3","question-store":"^0.9.2"},"devDependencies":{"assemble-core":"^0.16.1","base":"^0.8.1","base-argv":"^0.4.2","base-config-process":"^0.1.1","base-data":"^0.4.0","base-option":"^0.7.0","base-store":"^0.4.2","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb"],"lint":{"reflinks":true}},"gitHead":"90e7e8ba45f50217dec0c64e0a2b30462c89f873","_id":"base-questions@0.6.3","_shasum":"bdf16d51aa6d463cbd5b4d1028625c40e1ffb4f5","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"bdf16d51aa6d463cbd5b4d1028625c40e1ffb4f5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.6.3.tgz","integrity":"sha512-WlNRk/VRkXr3Ua21JsNDRAt0zXskXVznW4uzc4mTFv06YL66kTxgiimmTF4rq/qz5cyuH0bUSL0HNN13Vn/hIg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD8oGLWHaQtVZx+inTK1uH3WTut+rnWQKRs64x21WETMAIgUTcGB21S5fSqVqv1LG8pviLtBCdYtpS7FWYeMJiUCn0="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-questions-0.6.3.tgz_1463296307331_0.8887467652093619"}},"0.7.2":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.7.2","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","LICENSE","README.md","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base-store":"^0.4.4","clone-deep":"^0.2.4","define-property":"^0.2.5","is-valid-app":"^0.2.0","isobject":"^2.1.0","lazy-cache":"^2.0.1","mixin-deep":"^1.1.3","question-store":"^0.10.0"},"devDependencies":{"assemble-core":"^0.25.0","base":"^0.11.1","base-argv":"^0.5.0","base-config-process":"^0.1.9","base-data":"^0.6.0","base-option":"^0.8.4","bdd-stdin":"^0.2.0","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.9","gulp-istanbul":"^1.0.0","gulp-mocha":"^2.2.0","intercept-stdout":"^0.1.2","minimist":"^1.2.0","mocha":"^2.5.3"},"keywords":["api","app","application","ask","base","baseplugin","building-blocks","choice","choices","cli","command","command-line","console","create","framework","line","plugin","plugins","prompt","question","questions","terminal","tool","toolkit","tools"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb","verb-generate-readme"],"lint":{"reflinks":true}},"gitHead":"5fdbbbc01a68c7d3fe46ffb9616c80b377d7a544","_id":"base-questions@0.7.2","_shasum":"2e7b5648de7ac8ccbb2b601dd7861c843c9616b0","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"2e7b5648de7ac8ccbb2b601dd7861c843c9616b0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.7.2.tgz","integrity":"sha512-Zt5oxsga46DpNdHrQ3O3cBCwAGuRbUXByQEpXRGYRQBNYuGfarRB93dYHSl3tPBbaXn/3EBgB5B02CTR9+m9cA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHM9lt4LmD6L3tydqqnHtBPrRbDKRpfaC/k9Lux+V0kvAiEAngT7/o74JHk6nD8r1aXPr4r1SscG65HZdHhy1qtfxF8="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-questions-0.7.2.tgz_1468769243471_0.13882780354470015"}},"0.8.1":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.8.1","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","LICENSE","README.md","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base-store":"^0.4.4","clone-deep":"^0.2.4","debug":"^2.2.0","define-property":"^0.2.5","get-value":"^2.0.6","is-valid-app":"^0.2.0","isobject":"^2.1.0","lazy-cache":"^2.0.1","mixin-deep":"^1.1.3","question-store":"^0.12.1","set-value":"^0.3.3"},"devDependencies":{"assemble-core":"^0.26.0","base":"^0.11.1","base-argv":"^0.5.0","base-config-process":"^0.1.9","base-data":"^0.6.0","base-option":"^0.8.4","bdd-stdin":"^0.2.0","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.10","gulp-istanbul":"^1.1.0","gulp-mocha":"^3.0.1","intercept-stdout":"^0.1.2","minimist":"^1.2.0","mocha":"^3.0.2"},"keywords":["api","app","application","ask","base","baseplugin","building-blocks","choice","choices","cli","command","command-line","console","create","framework","line","plugin","plugins","prompt","question","questions","terminal","tool","toolkit","tools"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb","verb-generate-readme"],"lint":{"reflinks":true}},"gitHead":"ace3dbd9a6dc42e355c50e26c45e7c87ee30bf84","_id":"base-questions@0.8.1","_shasum":"c4573e752f7b5007aabcdbe669a69da0dc4cdecc","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"c4573e752f7b5007aabcdbe669a69da0dc4cdecc","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.8.1.tgz","integrity":"sha512-D0G3tJvHv2WJvE1iDF63cl5uW7Pe89FT8zFr9JP91gioIAuZK8Ss8MLEPF/B+a3QyUN+E6geer8h92wSMmWCsA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEC+gg0UgOMIf3bPzri0/+sN+I+QDcagC0m7U4hN45PpAiB/RUz4QhwIVM3OnN4rHEV9bSakjAiDwZiThP6uWAqGGg=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/base-questions-0.8.1.tgz_1471424828203_0.7171648375224322"}},"0.9.0":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.9.0","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base-store":"^0.4.4","clone-deep":"^0.2.4","debug":"^2.2.0","define-property":"^0.2.5","extend-shallow":"^2.0.1","get-value":"^2.0.6","is-valid-app":"^0.2.1","isobject":"^2.1.0","lazy-cache":"^2.0.1","mixin-deep":"^1.1.3","question-store":"^0.13.0","set-value":"^0.4.0"},"devDependencies":{"assemble-core":"^0.26.0","base":"^0.11.1","base-argv":"^0.5.0","base-config-process":"^0.1.9","base-data":"^0.6.0","base-option":"^0.8.4","bdd-stdin":"^0.2.0","gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.10","gulp-istanbul":"^1.1.0","gulp-mocha":"^3.0.1","intercept-stdout":"^0.1.2","minimist":"^1.2.0","mocha":"^3.0.2"},"keywords":["api","app","application","ask","base","baseplugin","building-blocks","choice","choices","cli","command","command-line","console","create","framework","line","plugin","plugins","prompt","question","questions","terminal","tool","toolkit","tools"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["verb","verb-generate-readme"],"lint":{"reflinks":true}},"gitHead":"e7e90c0cab5621dd8e96dae3ba1790cab8d1776d","_id":"base-questions@0.9.0","_shasum":"15824041760fab7dd99a9d1d71fb2f0359e17be9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"15824041760fab7dd99a9d1d71fb2f0359e17be9","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.9.0.tgz","integrity":"sha512-Wgfd59Aa9lGL499FSDdYs8Te2Od0zjK6lSn6BHxBr4CUAR2ObOPyUr/oJVwm/xW0du12KzJwvCvTCN6xb2oExg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFFx9ohCjMvT5m082vRbKKMboAinYNNPMV5ZQiuiD7yGAiEA8GyBANY6IoefpEmv7kSP93SmHb2yxPPgyc/gCODV1rw="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/base-questions-0.9.0.tgz_1475319222542_0.43868545279838145"}},"0.1.1":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.1.1","homepage":"https://github.com/jonschlinkert/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-questions.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-questions/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"common-questions":"^0.1.1","extend-shallow":"^2.0.1","lazy-cache":"^0.2.4","question-store":"^0.2.2","to-choices":"^0.1.1"},"devDependencies":{"assemble-core":"^0.3.0","base-argv":"^0.1.3","base-methods":"^0.5.0","base-store":"^0.2.0","mocha":"*"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"related":{"list":["to-choices","common-questions","question-store","answer-store"]}},"gitHead":"3ddeb06d63bca159c34b51edda2ab7d13340e765","_id":"base-questions@0.1.1","_shasum":"de127073a928da741e5ab5bc1c595b8e7e08b3e0","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"de127073a928da741e5ab5bc1c595b8e7e08b3e0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.1.1.tgz","integrity":"sha512-qyKlN7h6dCj1fwt076k5TqXEa5Y4pOdKJVpm3Pl5/unHAU46cLDrOB1ZKAtHYRRef7aUfnz7Yr6t8bwuWr+3tQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDLV/Ufz96QL7jOZj5ZSdTOJsaqOXsUe0x4tXHqbS+ZTgIhAMFQP3YLMW9DqEV1JxliZ0k/8vXhRhIQgtUqwckJ3KDx"}]}},"0.2.0":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.2.0","homepage":"https://github.com/jonschlinkert/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-questions.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"common-questions":"^0.1.1","extend-shallow":"^2.0.1","for-own":"^0.1.3","get-value":"^2.0.0","lazy-cache":"^0.2.4","micromatch":"^2.3.5","question-store":"^0.3.0","set-value":"^0.3.1","to-choices":"^0.1.1"},"devDependencies":{"assemble-core":"^0.3.0","base-argv":"^0.1.3","base-config":"^0.3.2","base-data":"^0.3.3","base-methods":"^0.6.1","base-options":"^0.5.4","base-store":"^0.2.0","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","minimist":"^1.2.0","mocha":"*"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"related":{"list":["to-choices","common-questions","question-store","answer-store"]}},"gitHead":"ea3769d0ac5940954e8d63c2f04ee047e1846b7c","_id":"base-questions@0.2.0","_shasum":"a7984840b10fd2134a0c861318ce7ee2f527c086","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"a7984840b10fd2134a0c861318ce7ee2f527c086","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.2.0.tgz","integrity":"sha512-LnzBj84Ou99ZHmLEQumdfHXyoIlKRo/wakikCrEF9q1dOB9sMbPG3S+GUUb2hcqGRGguZdfA3nGSMRPJwuf+bA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDOmXschtqxosDw7QYFLSSmPZybXmI0ybo4w0QtzTbxBAIhAMRTIvqprJXNHhnaSXJD+mXRaWxCKivz8EnBpb55gNLP"}]}},"0.1.2":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.1.2","homepage":"https://github.com/jonschlinkert/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-questions.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"common-questions":"^0.1.1","extend-shallow":"^2.0.1","lazy-cache":"^0.2.4","question-store":"^0.2.2","to-choices":"^0.1.1"},"devDependencies":{"assemble-core":"^0.3.0","base-argv":"^0.1.3","base-methods":"^0.5.0","base-store":"^0.2.0","mocha":"*"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"related":{"list":["to-choices","common-questions","question-store","answer-store"]}},"gitHead":"ad19baa740b48b3dbb80ace5e64fadf753ef9ba3","_id":"base-questions@0.1.2","_shasum":"32e79a637b4314fa83baa0c0113c9711ff926aa1","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"32e79a637b4314fa83baa0c0113c9711ff926aa1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.1.2.tgz","integrity":"sha512-t4nrUwu/L/YXDDRj3qJQEFh3NYdc4Y12V7v/Lzomyw73zncNT37UrRD+uWLlYrQQML7Su8zP88tY67zfMv41IQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCgPHPexYP1aaKAgkYaNcH7KVB//5ze+terYfJpuUffDQIgawfE5u2RtPUSwfofrsRfTX5WjIQfhBd35TdNKN8En6g="}]}},"0.2.1":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.2.1","homepage":"https://github.com/jonschlinkert/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-questions.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"common-questions":"^0.1.1","extend-shallow":"^2.0.1","for-own":"^0.1.3","get-value":"^2.0.0","lazy-cache":"^0.2.4","micromatch":"^2.3.5","question-store":"^0.3.0","set-value":"^0.3.1","to-choices":"^0.1.1"},"devDependencies":{"assemble-core":"^0.3.0","base-argv":"^0.1.3","base-config":"^0.3.2","base-data":"^0.3.3","base-methods":"^0.6.1","base-options":"^0.5.4","base-store":"^0.2.0","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","minimist":"^1.2.0","mocha":"*"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"related":{"list":["to-choices","common-questions","question-store","answer-store"]}},"gitHead":"bc7d1128920c0122cc14e51da43372b19597fbf2","_id":"base-questions@0.2.1","_shasum":"7fdbd13258bc54b3bfb4bfd1c3019cf861330527","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"7fdbd13258bc54b3bfb4bfd1c3019cf861330527","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.2.1.tgz","integrity":"sha512-w5BWSlrRxiq1HE7PWHtw1D3y8Pl2KoAhUW+LfZ4FxYKWd03aHwCxaMrhWF9/AWuZlna6nDi2TNb2+t0mneDjKg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCnSv7eUPkEtlzaJyvrrWUvPWsEPx/Z1/QuPyh2MXZpsgIgLSj+lz9fn+C26VVC483F4TgflHOhCWWE9xeUXUY6nVw="}]}},"0.3.0":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.3.0","homepage":"https://github.com/jonschlinkert/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-questions.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"common-questions":"^0.1.2","for-own":"^0.1.3","get-value":"^2.0.3","is-valid-glob":"^0.3.0","lazy-cache":"^1.0.3","micromatch":"^2.3.7","mixin-deep":"^1.1.3","question-store":"^0.6.0","set-value":"^0.3.3","to-choices":"^0.1.1"},"devDependencies":{"arr-union":"^3.0.0","assemble-core":"^0.10.0","base":"^0.6.7","base-argv":"^0.3.0","base-config":"^0.3.6","base-data":"^0.3.6","base-options":"^0.5.5","base-store":"^0.3.4","gulp":"^3.9.0","gulp-eslint":"^1.1.1","gulp-format-md":"^0.1.5","gulp-istanbul":"^0.10.3","gulp-mocha":"^2.2.0","matched":"^0.4.1","minimist":"^1.2.0","mocha":"^2.4.4"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"related":{"list":["answer-store","common-questions","question-store","to-choices"]},"layout":"default","plugins":["gulp-format-md"],"reflinks":["answer-store","common-questions","question-cache","question-store"]},"gitHead":"d625345f44d7f42e1ed3c7d61f10f201d57614e2","_id":"base-questions@0.3.0","_shasum":"32a20d2b59ac6606a21936842a74dd79399ee393","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"32a20d2b59ac6606a21936842a74dd79399ee393","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.3.0.tgz","integrity":"sha512-gJi/06cDKRPVchfdbEh8+18MTBWXujopANi5bcP3BkCXS1UtPEKhGavoTA8sXmJ6Cveojc5nxnaThH1qIfazjA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGerhgcXlwnXjtbRys3z5ADpq1Xo18wDryRCXX7dB6BPAiAizzmnGeDS8KcbqjUPb7MsR9LeMIhMOZL9Q0tl1rhcOg=="}]},"_npmOperationalInternal":{"host":"packages-8-eu.internal.npmjs.com","tmp":"tmp/base-questions-0.3.0.tgz_1454364104905_0.6792165192309767"}},"0.1.0":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.1.0","homepage":"https://github.com/jonschlinkert/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/base-questions.git"},"bugs":{"url":"https://github.com/jonschlinkert/base-questions/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"common-questions":"^0.1.1","extend-shallow":"^2.0.1","lazy-cache":"^0.2.4","question-store":"^0.2.2","to-choices":"^0.1.1"},"devDependencies":{"assemble-core":"^0.3.0","base-argv":"^0.1.3","base-methods":"^0.5.0","base-store":"^0.2.0","mocha":"*"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"related":{"list":["to-choices","common-questions","question-store","answer-store"]}},"gitHead":"a4c93229289c05b7a560f140bc1f4855e005f27e","_id":"base-questions@0.1.0","_shasum":"9bbcce39ee5ca887df252fab7aca642ba87fa0ef","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"9bbcce39ee5ca887df252fab7aca642ba87fa0ef","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.1.0.tgz","integrity":"sha512-O5M+izn0WAoI5QdGlKA0kP/FpN6xqUZ8QNlAXrBnypaX3/mWpiWf5k+D+FM6l8AK6wfeFQUvooPG0yxn/ktpIQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDH6HaZtalKDnZta8UaUSyqG7EZZwQxVFUF1L2m/cPM9QIgW10lGMY+71TxJNCILbfWSeEGvgZeapEMOUaBhCXtcp0="}]}},"0.6.6":{"name":"base-questions","description":"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.","version":"0.6.6","homepage":"https://github.com/node-base/base-questions","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/node-base/base-questions.git"},"bugs":{"url":"https://github.com/node-base/base-questions/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base-store":"^0.4.4","define-property":"^0.2.5","is-registered":"^0.1.3","is-valid-instance":"^0.1.0","isobject":"^2.1.0","lazy-cache":"^2.0.1","mixin-deep":"^1.1.3","question-store":"^0.9.2"},"devDependencies":{"assemble-core":"^0.16.1","base":"^0.8.1","base-argv":"^0.4.2","base-config-process":"^0.1.1","base-data":"^0.4.0","base-option":"^0.7.0","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.4","gulp-mocha":"^2.2.0","minimist":"^1.2.0","mocha":"^2.4.5"},"keywords":["ask","base","baseplugin","choice","choices","cli","command","command-line","console","line","plugin","prompt","question","terminal"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"data-store","list":["answer-store","common-questions","question-store","to-choices"]},"reflinks":["answer-store","common-questions","question-cache","question-store","verb"],"lint":{"reflinks":true}},"gitHead":"b7c8d4b42bb56273ceec7e6261a4ef2ecbaaeef9","_id":"base-questions@0.6.6","_shasum":"c155712d6df14f25299d7d18cb75b0c29596c3e5","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"c155712d6df14f25299d7d18cb75b0c29596c3e5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/base-questions/-/base-questions-0.6.6.tgz","integrity":"sha512-uN+JRjfLHZ0zRsjgOFfq1XEnJlOpO50Z9e8T14CcdXCgQfOe0OMJS281f7+PfO87zmeCGFZYgt3ygzcj/E+qyg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDut2Yl36A0SfsaPvV54M/EXNILB3ilZzAj5JFWlhcUEQIgK+q59bIfYT4AYRtzWcPTQrz31oXDt2ILaYZHt1tiyno="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/base-questions-0.6.6.tgz_1464051499781_0.3290080367587507"}}},"name":"base-questions","time":{"0.5.1":"2016-03-04T02:01:41.528Z","0.6.0":"2016-04-13T15:11:58.104Z","0.2.5":"2016-01-14T05:54:03.652Z","0.5.2":"2016-03-09T03:45:51.063Z","0.6.1":"2016-05-12T14:57:18.735Z","0.7.0":"2016-07-11T20:45:20.883Z","0.1.3":"2015-12-06T22:53:07.203Z","0.2.2":"2015-12-13T13:31:58.584Z","0.4.0":"2016-02-23T21:49:25.660Z","0.2.3":"2015-12-17T23:24:39.232Z","0.3.2":"2016-02-06T14:23:34.058Z","0.4.1":"2016-02-23T22:31:24.511Z","0.5.0":"2016-02-27T22:23:13.959Z","0.5.5":"2016-04-07T07:54:30.394Z","0.6.4":"2016-05-19T06:55:27.737Z","0.7.3":"2016-07-17T16:11:07.460Z","0.9.1":"2016-12-01T06:55:18.987Z","0.5.6":"2016-04-13T07:08:44.052Z","0.6.5":"2016-05-21T23:45:16.105Z","0.7.4":"2016-07-29T23:11:02.778Z","0.2.6":"2016-01-14T07:53:48.113Z","0.5.3":"2016-03-17T12:49:51.626Z","0.6.2":"2016-05-14T19:33:51.861Z","0.7.1":"2016-07-11T22:20:07.662Z","0.8.0":"2016-08-17T08:30:15.287Z","0.5.4":"2016-04-05T12:12:34.471Z","0.6.3":"2016-05-15T07:11:49.630Z","0.7.2":"2016-07-17T15:27:25.870Z","0.8.1":"2016-08-17T09:07:10.260Z","0.9.0":"2016-10-01T10:53:43.972Z","0.1.1":"2015-11-29T21:20:45.248Z","0.2.0":"2015-12-07T10:54:20.849Z","0.1.2":"2015-12-01T03:57:34.938Z","0.2.1":"2015-12-07T12:36:01.724Z","0.3.0":"2016-02-01T22:01:47.477Z","0.1.0":"2015-11-29T21:17:25.231Z","modified":"2025-05-07T15:11:19.907Z","created":"2015-11-29T21:17:25.231Z","0.6.6":"2016-05-24T00:58:20.824Z"},"readmeFilename":"README.md","homepage":"https://github.com/node-base/base-questions"}