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 | "rimraf": "^2.2.6" |
---|
39 | }, |
---|
40 | "peerDependencies": { |
---|
41 | "grunt": "~0.4.0" |
---|
42 | }, |
---|
43 | "keywords": [ |
---|
44 | "gruntplugin" |
---|
45 | ], |
---|
46 | "contributors": [ |
---|
47 | { |
---|
48 | "name": "Tim Branyen", |
---|
49 | "url": "http://tbranyen.com/" |
---|
50 | }, |
---|
51 | { |
---|
52 | "name": "Tyler Kellen", |
---|
53 | "url": "http://goingslowly.com/" |
---|
54 | }, |
---|
55 | { |
---|
56 | "name": "Chris Talkington", |
---|
57 | "url": "http://christalkington.com/" |
---|
58 | }, |
---|
59 | { |
---|
60 | "name": "Sebastian Golasch", |
---|
61 | "url": "http://www.asciidisco.com/" |
---|
62 | }, |
---|
63 | { |
---|
64 | "name": "Vlad Filippov", |
---|
65 | "url": "http://vf.io" |
---|
66 | }, |
---|
67 | { |
---|
68 | "name": "\"Cowboy\" Ben Alman", |
---|
69 | "url": "http://benalman.com/" |
---|
70 | } |
---|
71 | ], |
---|
72 | "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", |
---|
73 | "readmeFilename": "README.md", |
---|
74 | "_id": "grunt-contrib-clean@0.5.0", |
---|
75 | "dist": { |
---|
76 | "shasum": "05633c18a2954ad5b1739c53d1801e574ae90289" |
---|
77 | }, |
---|
78 | "_from": "grunt-contrib-clean@~0.5.0", |
---|
79 | "_resolved": "https://registry.npmjs.org/grunt-contrib-clean/-/grunt-contrib-clean-0.5.0.tgz" |
---|
80 | } |
---|