[484] | 1 | { |
---|
| 2 | "name": "grunt-contrib-clean", |
---|
| 3 | "description": "Clean files and folders.", |
---|
| 4 | "version": "0.5.0", |
---|
| 5 | "homepage": "https://github.com/gruntjs/grunt-contrib-clean", |
---|
| 6 | "author": { |
---|
| 7 | "name": "Grunt Team", |
---|
| 8 | "url": "http://gruntjs.com/" |
---|
| 9 | }, |
---|
| 10 | "repository": { |
---|
| 11 | "type": "git", |
---|
| 12 | "url": "git://github.com/gruntjs/grunt-contrib-clean.git" |
---|
| 13 | }, |
---|
| 14 | "bugs": { |
---|
| 15 | "url": "https://github.com/gruntjs/grunt-contrib-clean/issues" |
---|
| 16 | }, |
---|
| 17 | "licenses": [ |
---|
| 18 | { |
---|
| 19 | "type": "MIT", |
---|
| 20 | "url": "https://github.com/gruntjs/grunt-contrib-clean/blob/master/LICENSE-MIT" |
---|
| 21 | } |
---|
| 22 | ], |
---|
| 23 | "main": "Gruntfile.js", |
---|
| 24 | "engines": { |
---|
| 25 | "node": ">= 0.8.0" |
---|
| 26 | }, |
---|
| 27 | "scripts": { |
---|
| 28 | "test": "grunt test" |
---|
| 29 | }, |
---|
| 30 | "dependencies": { |
---|
| 31 | "rimraf": "~2.2.1" |
---|
| 32 | }, |
---|
| 33 | "devDependencies": { |
---|
| 34 | "grunt-contrib-jshint": "~0.2.0", |
---|
| 35 | "grunt-contrib-nodeunit": "~0.1.2", |
---|
| 36 | "grunt-contrib-internal": "~0.4.4", |
---|
| 37 | "grunt": "~0.4.0" |
---|
| 38 | }, |
---|
| 39 | "peerDependencies": { |
---|
| 40 | "grunt": "~0.4.0" |
---|
| 41 | }, |
---|
| 42 | "keywords": [ |
---|
| 43 | "gruntplugin" |
---|
| 44 | ], |
---|
| 45 | "contributors": [ |
---|
| 46 | { |
---|
| 47 | "name": "Tim Branyen", |
---|
| 48 | "url": "http://tbranyen.com/" |
---|
| 49 | }, |
---|
| 50 | { |
---|
| 51 | "name": "Tyler Kellen", |
---|
| 52 | "url": "http://goingslowly.com/" |
---|
| 53 | }, |
---|
| 54 | { |
---|
| 55 | "name": "Chris Talkington", |
---|
| 56 | "url": "http://christalkington.com/" |
---|
| 57 | }, |
---|
| 58 | { |
---|
| 59 | "name": "Sebastian Golasch", |
---|
| 60 | "url": "http://www.asciidisco.com/" |
---|
| 61 | }, |
---|
| 62 | { |
---|
| 63 | "name": "Vlad Filippov", |
---|
| 64 | "url": "http://vf.io" |
---|
| 65 | }, |
---|
| 66 | { |
---|
| 67 | "name": "\"Cowboy\" Ben Alman", |
---|
| 68 | "url": "http://benalman.com/" |
---|
| 69 | } |
---|
| 70 | ], |
---|
| 71 | "readme": "# grunt-contrib-clean [](https://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 this task from blocking deletion of folders outside current working dir (CWD). Use with caution.\n\n#### no-write\nType: `Boolean` \nDefault: false\n\nWill log messages of what would happen if the task was ran but doesn't actually delete the files.\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-07-15âââv0.5.0âââUse rimraf directly, version 2.2.1 to fix issue on Windows. Add no-write option to mimic grunt.file.delete behavior.\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 Mon Jul 15 2013 20:45:46.*\n", |
---|
| 72 | "readmeFilename": "README.md", |
---|
| 73 | "_id": "grunt-contrib-clean@0.5.0", |
---|
| 74 | "dist": { |
---|
| 75 | "shasum": "05633c18a2954ad5b1739c53d1801e574ae90289" |
---|
| 76 | }, |
---|
| 77 | "_from": "grunt-contrib-clean@~0.5.0", |
---|
| 78 | "_resolved": "https://registry.npmjs.org/grunt-contrib-clean/-/grunt-contrib-clean-0.5.0.tgz" |
---|
| 79 | } |
---|