12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- {
- "name": "grunt-contrib-clean",
- "description": "Clean files and folders.",
- "version": "0.4.1",
- "homepage": "https://github.com/gruntjs/grunt-contrib-clean",
- "author": {
- "name": "Grunt Team",
- "url": "http://gruntjs.com/"
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/gruntjs/grunt-contrib-clean.git"
- },
- "bugs": {
- "url": "https://github.com/gruntjs/grunt-contrib-clean/issues"
- },
- "licenses": [
- {
- "type": "MIT",
- "url": "https://github.com/gruntjs/grunt-contrib-clean/blob/master/LICENSE-MIT"
- }
- ],
- "main": "Gruntfile.js",
- "engines": {
- "node": ">= 0.8.0"
- },
- "scripts": {
- "test": "grunt test"
- },
- "devDependencies": {
- "grunt-contrib-jshint": "~0.2.0",
- "grunt-contrib-nodeunit": "~0.1.2",
- "grunt-contrib-internal": "~0.4.4",
- "grunt": "~0.4.0"
- },
- "peerDependencies": {
- "grunt": "~0.4.0"
- },
- "keywords": [
- "gruntplugin"
- ],
- "contributors": [
- {
- "name": "Tim Branyen",
- "url": "http://tbranyen.com/"
- },
- {
- "name": "Tyler Kellen",
- "url": "http://goingslowly.com/"
- },
- {
- "name": "Chris Talkington",
- "url": "http://christalkington.com/"
- },
- {
- "name": "Sebastian Golasch",
- "url": "http://www.asciidisco.com/"
- },
- {
- "name": "Vlad Filippov",
- "url": "http://vf.io"
- },
- {
- "name": "\"Cowboy\" Ben Alman",
- "url": "http://benalman.com/"
- }
- ],
- "readme": "# grunt-contrib-clean [](http://travis-ci.org/gruntjs/grunt-contrib-clean)\n\n> Clean files and folders.\n\n\n\n## Getting Started\nThis plugin requires Grunt `~0.4.0`\n\nIf you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:\n\n```shell\nnpm install grunt-contrib-clean --save-dev\n```\n\nOnce the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:\n\n```js\ngrunt.loadNpmTasks('grunt-contrib-clean');\n```\n\n*This plugin was designed to work with Grunt 0.4.x. If you're still using grunt v0.3.x it's strongly recommended that [you upgrade](http://gruntjs.com/upgrading-from-0.3-to-0.4), but in case you can't please use [v0.3.2](https://github.com/gruntjs/grunt-contrib-clean/tree/grunt-0.3-stable).*\n\n\n\n## Clean task\n_Run this task with the `grunt clean` command._\n\nTask targets, files and options may be specified according to the grunt [Configuring tasks](http://gruntjs.com/configuring-tasks) guide.\n\n*Due to the destructive nature of this task, always be cautious of the paths you clean.*\n### Options\n\n#### force\nType: `Boolean` \nDefault: false\n\nThis overrides `grunt.file.delete` from blocking deletion of folders outside current working dir (CWD). Use with caution.\n\n### Usage Examples\n\nThere are three formats you can use to run this task.\n\n#### Short\n\n```js\nclean: [\"path/to/dir/one\", \"path/to/dir/two\"]\n```\n\n#### Medium (specific targets with global options)\n\n```js\nclean: {\n build: [\"path/to/dir/one\", \"path/to/dir/two\"],\n release: [\"path/to/another/dir/one\", \"path/to/another/dir/two\"]\n},\n```\n\n#### Long (specific targets with per target options)\n\n```js\nclean: {\n build: {\n src: [\"path/to/dir/one\", \"path/to/dir/two\"]\n }\n}\n```\n\n## Release History\n\n * 2013-04-16 v0.4.1 Check if file exists to avoid trying to delete a non-existent file.\n * 2013-02-15 v0.4.0 First official release for Grunt 0.4.0.\n * 2013-01-18 v0.4.0rc6 Updating grunt/gruntplugin dependencies to rc6. Changing in-development grunt/gruntplugin dependency versions from tilde version ranges to specific versions.\n * 2013-01-09 v0.4.0rc5 Updating to work with grunt v0.4.0rc5. Switching to this.filesSrc api.\n * 2012-12-07 v0.4.0a Conversion to grunt v0.4 conventions. Remove node v0.6 and grunt v0.3 support. Add force option to bypass CWD check.\n * 2012-09-23 v0.3.0 Options no longer accepted from global config key.\n * 2012-09-10 v0.2.0 Refactored from grunt-contrib into individual repo.\n\n---\n\nTask submitted by [Tim Branyen](http://tbranyen.com/)\n\n*This file was generated on Tue Apr 16 2013 13:28:15.*\n",
- "readmeFilename": "README.md",
- "_id": "[email protected]",
- "dist": {
- "shasum": "7f8f46e2f2a7187e9c2d083ab30262aa6a64e334"
- },
- "_from": "grunt-contrib-clean@~0.4.0",
- "_resolved": "https://registry.npmjs.org/grunt-contrib-clean/-/grunt-contrib-clean-0.4.1.tgz"
- }
|