pax_global_header00006660000000000000000000000064133361455740014525gustar00rootroot0000000000000052 comment=1ada1f068507663921fc897ac9ba79287dba7add grunt-known-options-1.1.1/000077500000000000000000000000001333614557400155075ustar00rootroot00000000000000grunt-known-options-1.1.1/.gitignore000066400000000000000000000000151333614557400174730ustar00rootroot00000000000000node_modules grunt-known-options-1.1.1/LICENSE000066400000000000000000000030711333614557400165150ustar00rootroot00000000000000Copyright jQuery Foundation and other contributors, https://jquery.org/ This software consists of voluntary contributions made by many individuals. For exact contribution history, see the revision history available at https://github.com/gruntjs/grunt . The following license applies to all parts of this software except as documented below: ==== Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ==== All files located in the node_modules directory are externally maintained libraries used by this software which have their own licenses; we recommend you read them, as their terms may differ from the terms above. grunt-known-options-1.1.1/README.md000066400000000000000000000004001333614557400167600ustar00rootroot00000000000000# grunt-known-options These are the known options used in Grunt. ## Installing ```shell npm install grunt-known-options --save ``` ## Usage ```js var knownOptions = require('grunt-known-options'); // You now have an object of known Grunt options. ``` grunt-known-options-1.1.1/index.js000066400000000000000000000040301333614557400171510ustar00rootroot00000000000000var path = require('path'); module.exports = { help: { short: 'h', info: 'Display this help text.', type: Boolean }, base: { short: 'b', info: 'Specify an alternate base path. By default, all file paths are relative to the Gruntfile. ' + '(grunt.file.setBase) *', type: path }, color: { info: 'Disable colored output.', type: Boolean, negate: true }, gruntfile: { info: 'Specify an alternate Gruntfile. By default, grunt looks in the current or parent directories ' + 'for the nearest Gruntfile.js or Gruntfile.coffee file.', type: path }, debug: { short: 'd', info: 'Enable debugging mode for tasks that support it.', type: [Number, Boolean] }, stack: { info: 'Print a stack trace when exiting with a warning or fatal error.', type: Boolean }, force: { short: 'f', info: 'A way to force your way past warnings. Want a suggestion? Don\'t use this option, fix your code.', type: Boolean }, tasks: { info: 'Additional directory paths to scan for task and "extra" files. (grunt.loadTasks) *', type: Array }, npm: { info: 'Npm-installed grunt plugins to scan for task and "extra" files. (grunt.loadNpmTasks) *', type: Array }, write: { info: 'Disable writing files (dry run).', type: Boolean, negate: true }, verbose: { short: 'v', info: 'Verbose mode. A lot more information output.', type: Boolean }, version: { short: 'V', info: 'Print the grunt version. Combine with --verbose for more info.', type: Boolean }, // Even though shell auto-completion is now handled by grunt-cli, leave this // option here for display in the --help screen. completion: { info: 'Output shell auto-completion rules. See the grunt-cli documentation for more information.', type: String }, require: { info: 'Specify a language interpreter to require first if you are writing your Gruntfile in ' + 'a language Grunt doesn\'t support by default.', type: String }, }; grunt-known-options-1.1.1/package.json000066400000000000000000000006711333614557400200010ustar00rootroot00000000000000{ "name": "grunt-known-options", "description": "The known options used in Grunt", "version": "1.1.1", "author": "Grunt Development Team (http://gruntjs.com/development-team)", "homepage": "http://gruntjs.com/", "repository": "gruntjs/grunt-known-options", "license": "MIT", "engines": { "node": ">=0.10.0" }, "main": "index.js", "dependencies": { }, "devDependencies": { }, "files": [ "index.js" ] }