├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── package.json ├── tasks └── prompt.js ├── templates ├── grunt-prompt.md └── readme │ ├── changelog.md │ ├── examples.md │ ├── options.md │ ├── overview.md │ ├── results.md │ ├── screenshots.md │ └── tests.md └── test └── prompt.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp 4 | .idea -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-prompt/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /templates/ 2 | /test/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-prompt/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-prompt/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-prompt/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-prompt/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-prompt/HEAD/package.json -------------------------------------------------------------------------------- /tasks/prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-prompt/HEAD/tasks/prompt.js -------------------------------------------------------------------------------- /templates/grunt-prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-prompt/HEAD/templates/grunt-prompt.md -------------------------------------------------------------------------------- /templates/readme/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-prompt/HEAD/templates/readme/changelog.md -------------------------------------------------------------------------------- /templates/readme/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-prompt/HEAD/templates/readme/examples.md -------------------------------------------------------------------------------- /templates/readme/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-prompt/HEAD/templates/readme/options.md -------------------------------------------------------------------------------- /templates/readme/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-prompt/HEAD/templates/readme/overview.md -------------------------------------------------------------------------------- /templates/readme/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-prompt/HEAD/templates/readme/results.md -------------------------------------------------------------------------------- /templates/readme/screenshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-prompt/HEAD/templates/readme/screenshots.md -------------------------------------------------------------------------------- /templates/readme/tests.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/prompt.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-prompt/HEAD/test/prompt.test.js --------------------------------------------------------------------------------