pax_global_header00006660000000000000000000000064126763640550014530gustar00rootroot0000000000000052 comment=587d4d6b31923d3d6afb4919e5e3b9cf4db30440 grunt-known-options-master/000077500000000000000000000000001267636405500163475ustar00rootroot00000000000000grunt-known-options-master/.gitignore000066400000000000000000000000151267636405500203330ustar00rootroot00000000000000node_modules grunt-known-options-master/LICENSE000066400000000000000000000030711267636405500173550ustar00rootroot00000000000000Copyright 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-master/README.md000066400000000000000000000004001267636405500176200ustar00rootroot00000000000000# 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-master/index.js000066400000000000000000000035321267636405500200170ustar00rootroot00000000000000var 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 }, }; grunt-known-options-master/package.json000066400000000000000000000006711267636405500206410ustar00rootroot00000000000000{ "name": "grunt-known-options", "description": "The known options used in Grunt", "version": "1.1.0", "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" ] }