{"id":20551391,"url":"https://github.com/generate/common-questions","last_synced_at":"2025-04-14T11:19:23.746Z","repository":{"id":57204333,"uuid":"47009892","full_name":"generate/common-questions","owner":"generate","description":"An object of questions commonly used by project generators or when initializing projects. Questions can be overridden, updated or extended.","archived":false,"fork":false,"pushed_at":"2017-09-12T00:32:57.000Z","size":34,"stargazers_count":9,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-28T00:41:08.096Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/generate.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-11-28T04:21:32.000Z","updated_at":"2018-03-12T16:23:47.000Z","dependencies_parsed_at":"2022-09-18T00:21:22.147Z","dependency_job_id":null,"html_url":"https://github.com/generate/common-questions","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/generate%2Fcommon-questions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/generate%2Fcommon-questions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/generate%2Fcommon-questions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/generate%2Fcommon-questions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/generate","download_url":"https://codeload.github.com/generate/common-questions/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248504561,"owners_count":21115170,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-16T02:30:21.330Z","updated_at":"2025-04-14T11:19:23.707Z","avatar_url":"https://github.com/generate.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# common-questions [![NPM version](https://img.shields.io/npm/v/common-questions.svg?style=flat)](https://www.npmjs.com/package/common-questions) [![NPM downloads](https://img.shields.io/npm/dm/common-questions.svg?style=flat)](https://npmjs.org/package/common-questions) [![Build Status](https://img.shields.io/travis/generate/common-questions.svg?style=flat)](https://travis-ci.org/generate/common-questions)\n\nAn object of questions commonly used by project generators or when initializing projects. Questions can be overridden, updated or extended.\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/):\n\n```sh\n$ npm install --save common-questions\n```\n\n**HEADS UP!** as of v0.2.0 this has been refactored to work as a [base](https://github.com/node-base/base) plugin.\n\n## Usage\n\n```js\nvar questions = require('common-questions');\n```\n\n## Questions\n\nAdds the following [questions](https://github.com/node-base/base-questions) and message text:\n\n**Author questions**\n\n* `author.name`: `Author's name?`\n* `author.username`: `Author's GitHub username?`\n* `author.twitter`: `Author's twitter username?`\n* `author.email`: `Author's email address?`\n* `author.url`: `Author's URL?`\n\n**Project questions**\n\n* `project.name`: `Project name?`\n* `project.alias`: `Project alias?`\n* `project.description`: `Project description?`\n* `project.version`: `Project version?`\n* `project.license`: `Project license?`\n* `project.owner`: `Project owner?`\n\nand...\n\n* `name`: `Project name?`\n* `alias`: `Project alias?`\n* `description`: `Project description?`\n* `version`: `Project version?`\n* `license`: `Project license?`\n* `owner`: `Project owner?`\n\n## History\n\n**v0.2.1**\n\nQuestions without a namespace have been deprecated and will be removed in 0.3.0.\n\n**v0.2.0**\n\nRefactored to work as a [base](https://github.com/node-base/base) plugin.\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* [base-questions](https://www.npmjs.com/package/base-questions): Plugin for base-methods that adds methods for prompting the user and storing the answers on… [more](https://github.com/node-base/base-questions) | [homepage](https://github.com/node-base/base-questions \"Plugin for base-methods that adds methods for prompting the user and storing the answers on a project-by-project basis.\")\n* [base](https://www.npmjs.com/package/base): base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting… [more](https://github.com/node-base/base) | [homepage](https://github.com/node-base/base \"base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting with a handful of common methods, like `set`, `get`, `del` and `use`.\")\n* [question-cache](https://www.npmjs.com/package/question-cache): A wrapper around inquirer that makes it easy to create and selectively reuse questions. | [homepage](https://github.com/jonschlinkert/question-cache \"A wrapper around inquirer that makes it easy to create and selectively reuse questions.\")\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\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 \u0026\u0026 verb\n```\n\n### Running tests\n\nInstall dev dependencies:\n\n```sh\n$ npm install -d \u0026\u0026 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/generate/common-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.30, on August 17, 2016._","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgenerate%2Fcommon-questions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgenerate%2Fcommon-questions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgenerate%2Fcommon-questions/lists"}