{"maintainers":[{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"roaster.karmic_0r@icloud.com"},{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"vlad@vladikoff.com"},{"name":"anonymous","email":"kyle@dontkry.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"keywords":["gruntplugin","clean","cleanup","remove","delete","del","rm","rmrf","rimraf"],"dist-tags":{"devel":"0.4.0-rc5","latest":"2.0.1"},"author":{"url":"https://gruntjs.com/","name":"Grunt Team"},"description":"Clean files and folders","readme":"# grunt-contrib-clean v2.0.0 [![Build Status](https://github.com/gruntjs/grunt-contrib-clean/workflows/Tests/badge.svg)](https://github.com/gruntjs/grunt-contrib-clean/actions?workflow=Tests)\n\n> Clean files and folders\n\n\n\n## Getting Started\n\nIf you haven't used [Grunt](https://gruntjs.com/) before, be sure to check out the [Getting Started](https://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](https://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](https://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](https://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 not actually delete any files or directories.\nIf the task is run with the `--verbose` flag, the task will log messages of what files would have be deleted.\n\n_Note: As this task property contains a hyphen, you will need to surround it with quotes._\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\"Compact\" and \"Files Array\" formats support a few [additional properties](https://gruntjs.com/configuring-tasks#files)\nwhich help you deal with hidden files, process dynamic mappings and so on.\n\n#### Globbing Patterns\n\nAlthough documented [in the Grunt Docs](https://gruntjs.com/configuring-tasks#globbing-patterns), here are some globbing pattern examples to achieve some common tasks:\n\n```js\nclean: {\n  folder: ['path/to/dir/'],\n  folder_v2: ['path/to/dir/**'],\n  contents: ['path/to/dir/*'],\n  subfolders: ['path/to/dir/*/'],\n  css: ['path/to/dir/*.css'],\n  all_css: ['path/to/dir/**/*.css']\n}\n```\n\n* __`folder`:__ Deletes the `dir/` folder\n* __`folder_v2`:__ Deletes the `dir/` folder\n* __`contents`:__ Keeps the `dir/` folder, but deletes the contents\n* __`subfolders`:__ Keeps the files inside the `dir/` folder, but deletes all subfolders\n* __`css`:__ Deletes all `*.css` files inside the `dir/` folder, excluding subfolders\n* __`all_css`:__ Deletes all `*.css` files inside the `dir/` folder and its subfolders\n\n##### Skipping Files\n\n```js\n// Deletes all .js files, but skips min.js files\nclean: {\n  js: ['path/to/dir/*.js', '!path/to/dir/*.min.js']\n}\n```\n\n###### Options\n\nOptions can be specified for all `clean` tasks and for each `clean:target`.\n\n####### All tasks\n\n```js\n// Prevents all targets from deleting any files\nclean: {\n  options: {\n    'no-write': true\n  },\n  build: ['dev/build'],\n  release: ['dist']\n}\n```\n\n####### Per-target\n\n```js\n// Will delete files for `build` target\n// Will NOT delete files for `release` target\nclean: {\n  build: ['dev/build'],\n  release: {\n    options: {\n      'no-write': true\n    },\n    src: ['dist']\n  }\n}\n```\n\n\n## Release History\n\n * 2022-04-15   v2.0.1   Update all dependencies. Requires node.js > 12.\n * 2018-09-08   v2.0.0   Update all dependencies. Drop Node.js < 6 support.\n * 2017-04-12   v1.1.0   Update grunt to 1.0.0. Updates to docs and changelog. Update internal modules.\n * 2016-02-15   v1.0.0   Drop support for Node.js v0.8. Grunt peer dependency tagged `>= 0.4.5`. Dependency updates.\n * 2015-11-13   v0.7.0   Dependency updates.\n * 2014-07-27   v0.6.0   Less verbose output. README updates.\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.js 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 Fri Apr 15 2022 21:07:19.*\n","repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-clean.git","type":"git"},"users":{"dofy":true,"igxz":true,"jtlr":true,"k12m":true,"csbun":true,"dbpoo":true,"dellc":true,"flozz":true,"jmm23":true,"reamd":true,"ugarz":true,"aholla":true,"applee":true,"cthree":true,"duchon":true,"jjun97":true,"maruel":true,"modest":true,"monjer":true,"mrbgit":true,"nylson":true,"snekse":true,"beyoung":true,"cueedee":true,"drewigg":true,"ghoster":true,"itonyyo":true,"lambidu":true,"mamadoo":true,"mattbob":true,"stefanb":true,"chaotive":true,"epickris":true,"lsmithx2":true,"mjagetia":true,"nohponex":true,"npmlincq":true,"ronchung":true,"royce002":true,"tamer1an":true,"tdmalone":true,"ttian226":true,"ttsvetko":true,"anaumidis":true,"captminty":true,"cascadejs":true,"desmond54":true,"gregmatys":true,"largepuma":true,"markymark":true,"martinezi":true,"mccataldo":true,"pgabronis":true,"rbecheras":true,"timvevida":true,"vladbadea":true,"adammacias":true,"blackmagic":true,"brainuxdev":true,"cfleschhut":true,"diogogomes":true,"lankinglin":true,"lonekorean":true,"mattsexton":true,"seasons521":true,"adrianorosa":true,"ahsanshafiq":true,"bholbrook73":true,"edwinwright":true,"flumpus-dev":true,"giovannipds":true,"karlbateman":true,"masanorinyo":true,"ones.shader":true,"rhinosaurus":true,"sabrinabgbc":true,"davidhalldor":true,"gabrielmaldi":true,"hubertbettan":true,"inflowmotion":true,"joshdoescode":true,"mswanson1524":true,"prabhash1785":true,"ramonfritsch":true,"raphaelchaib":true,"runningtalus":true,"carloscarcamo":true,"fabian.schmid":true,"richellyitalo":true,"shouchen.shan":true,"joshuahamilton":true,"oliversalzburg":true,"paintedbicycle":true,"vignesh14thnov":true,"abrahamwilliams":true,"derothenbergiii":true,"humbertoc_silva":true,"marcobiedermann":true,"mauriciolauffer":true,"jfernandezgersol":true},"bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"license":"MIT","versions":{"0.1.0":{"name":"grunt-contrib-clean","version":"0.1.0","keywords":["gruntplugin"],"author":{"url":"http://tbranyen.com/","name":"Tim Branyen"},"_id":"grunt-contrib-clean@0.1.0","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"}],"homepage":"https://github.com/gruntjs/grunt-contrib-clean","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"dist":{"shasum":"58cce53fcff481f1bfcf95ad456468f60ca08f05","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-clean/-/grunt-contrib-clean-0.1.0.tgz","integrity":"sha512-3eSNzhpnjQaJnqmLeHVj9ohiO268SJnNybA9+7mWcM6BYg93pjVExCjv2c/fPD8VypDLvHr9Wne220Gn9CaKgA==","signatures":[{"sig":"MEQCICzDy4RdYm6whAy09yPyKeGzldntbee9JPnGPo8/t1QtAiBZxRfCa3/ZN+pask1EudIBtQTD1WZCFMuOIdKkssIYzQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"grunt.js","engines":{"node":"*"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-clean/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-clean.git","type":"git"},"_npmVersion":"1.1.59","description":"Clear files and folders.","directories":{},"dependencies":{"rimraf":"~2.0.2","grunt-contrib-lib":"~0.1.0"}},"0.2.0":{"name":"grunt-contrib-clean","version":"0.2.0","keywords":["gruntplugin"],"author":{"url":"http://tbranyen.com/","name":"Tim Branyen"},"_id":"grunt-contrib-clean@0.2.0","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"}],"contributors":[{"url":"http://tbranyen.com/","name":"Tim Branyen"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://www.asciidisco.com/","name":"Sebastian Golasch"}],"homepage":"https://github.com/gruntjs/grunt-contrib-clean","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"dist":{"shasum":"4a27e42339d540be1cbc441ff98295afdad8429e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-clean/-/grunt-contrib-clean-0.2.0.tgz","integrity":"sha512-IvFCjgzU/MXVGhX5rRIiUxAmlvRdOj6BNQE2b/jtSll9NfjaLZPNugKw/whPHjkTghNyAvAnzf+kc4TrVdJgOw==","signatures":[{"sig":"MEUCIF1revk2hmbRKjlLtbjSkLWFJ76rcGClTyPO96qfx15rAiEA66UbPn7ueDaLyCmWI3uaX8a4sw4p+H9W2GhnzbEIa4c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"grunt.js","engines":{"node":"*"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-clean/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-clean.git","type":"git"},"_npmVersion":"1.1.59","description":"Clear files and folders.","directories":{},"dependencies":{"rimraf":"~2.0.2","grunt-contrib-lib":"~0.1.0"}},"0.3.0":{"name":"grunt-contrib-clean","version":"0.3.0","keywords":["gruntplugin"],"author":{"url":"http://tbranyen.com/","name":"Tim Branyen"},"_id":"grunt-contrib-clean@0.3.0","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"}],"contributors":[{"url":"http://tbranyen.com/","name":"Tim Branyen"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://www.asciidisco.com/","name":"Sebastian Golasch"}],"homepage":"https://github.com/gruntjs/grunt-contrib-clean","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"dist":{"shasum":"0de381780f8e96d2d603a315b4c8a1df69379bf9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-clean/-/grunt-contrib-clean-0.3.0.tgz","integrity":"sha512-F8p+ZEYc4ENXEOZl0M7JbFpO3lfgz4mp+TgstVsRTNutNfOdMQ6iPEgkhnaPxkas33xJE21Gxag/pmvBoEcBlg==","signatures":[{"sig":"MEUCIQC0Xljt6Pf7DHJAkp+msBSR8fSR05+Lyclj+YkTcfYn3wIgLJX/Rch1nwIFhWXOcLbkJ+vQ3S+FIE6T025ImFX4ULc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"grunt.js","engines":{"node":"*"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-clean/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-clean.git","type":"git"},"_npmVersion":"1.1.59","description":"Clear files and folders.","directories":{},"dependencies":{"rimraf":"~2.0.2","grunt-contrib-lib":"~0.3.0"}},"0.4.0-a":{"name":"grunt-contrib-clean","version":"0.4.0-a","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-clean@0.4.0-a","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"}],"contributors":[{"url":"http://tbranyen.com/","name":"Tim Branyen"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://www.asciidisco.com/","name":"Sebastian Golasch"},{"url":"http://vf.io","name":"Vlad Filippov"},{"url":"http://benalman.com/","name":"\"Cowboy\" Ben Alman"}],"homepage":"https://github.com/gruntjs/grunt-contrib-clean","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"dist":{"shasum":"ae25ecd9f8fd55aae6f89b1c5522b17f86e8ad1d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-clean/-/grunt-contrib-clean-0.4.0a.tgz","integrity":"sha512-I5DIw3nMft5lfh11EK1jHU1/jSt2me5uGQOxoxWXvKyWw6OyeSqSo5vnr6h84ZcKaZ1tWCyNu7eAmuQkkebRtQ==","signatures":[{"sig":"MEQCIFj4yXI0NbDvJGWqif6A0czRd+QqzE13YS7oRBjiOxxeAiAuWDz/DO5z9vhVah9ON7U+LC+G8N3mWqQl6pBoVckEoQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"grunt.js","engines":{"node":"*"},"scripts":{"test":"./node_modules/.bin/grunt test"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-clean/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-clean.git","type":"git"},"_npmVersion":"1.1.65","description":"Clear files and folders.","directories":{},"dependencies":{},"devDependencies":{"grunt":"~0.4.0a","grunt-cli":"~0.1.1","grunt-contrib-jshint":"~0.1.0","grunt-contrib-internal":"*","grunt-contrib-nodeunit":"~0.1.0"}},"0.4.0-rc5":{"name":"grunt-contrib-clean","version":"0.4.0-rc5","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-clean@0.4.0-rc5","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"}],"contributors":[{"url":"http://tbranyen.com/","name":"Tim Branyen"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://www.asciidisco.com/","name":"Sebastian Golasch"},{"url":"http://vf.io","name":"Vlad Filippov"},{"url":"http://benalman.com/","name":"\"Cowboy\" Ben Alman"}],"homepage":"https://github.com/gruntjs/grunt-contrib-clean","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"dist":{"shasum":"315a501865b9656aafa719e8fd2410692eb5a08b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-clean/-/grunt-contrib-clean-0.4.0rc5.tgz","integrity":"sha512-jLhAhLfULP67oN6i9iHLsxdFoGFNpcdpvD2AkdWQ76hfbVEgolRHKkXGjCEGsdnGy9zQXcyas7dLnFWyBeG2bg==","signatures":[{"sig":"MEUCICEUnauz3ibYYbWp1qUH1UXxqwtO5Kb17QkoeF8xlwDPAiEA1C8EQ6TNCmDYYXQW3xbSV5t+VDy4EJVpvrdHQUlt5rE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Gruntfile.js","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"cowboy@rj3.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-clean/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-clean.git","type":"git"},"_npmVersion":"1.1.62","description":"Clean files and folders.","directories":{},"devDependencies":{"grunt":"~0.4.0rc5","grunt-contrib-clean":"~0.4.0rc5","grunt-contrib-jshint":"~0.1.1rc5","grunt-contrib-internal":"*","grunt-contrib-nodeunit":"~0.1.2rc5"}},"0.4.0-rc6":{"name":"grunt-contrib-clean","version":"0.4.0-rc6","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-clean@0.4.0-rc6","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"}],"contributors":[{"url":"http://tbranyen.com/","name":"Tim Branyen"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://www.asciidisco.com/","name":"Sebastian Golasch"},{"url":"http://vf.io","name":"Vlad Filippov"},{"url":"http://benalman.com/","name":"\"Cowboy\" Ben Alman"}],"homepage":"https://github.com/gruntjs/grunt-contrib-clean","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"dist":{"shasum":"92c4c7a02567a9f4b9d2369c02c3937543914631","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-clean/-/grunt-contrib-clean-0.4.0rc6.tgz","integrity":"sha512-dXc+LGlyUSBZsum78XxvWBYKPFHwDc0A0U+3SihTYBJa4tlEKnx/tnycwXB8Q8g+BqpLOwly66fbuVXtUTwYeQ==","signatures":[{"sig":"MEYCIQDZ6bt/1mIMDWE0nWcq2zz895pJvq0hgXKOggmV0CLBIQIhAKdda2VD5f/aR3nck1W2Bp/jEk5qnLwKEA9gNvNVk0mP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Gruntfile.js","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"cowboy@rj3.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-clean/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-clean.git","type":"git"},"_npmVersion":"1.1.70","description":"Clean files and folders.","directories":{},"devDependencies":{"grunt":"0.4.0rc6","grunt-contrib-jshint":"0.1.1rc6","grunt-contrib-internal":"*","grunt-contrib-nodeunit":"0.1.2rc6"}},"0.3.1":{"name":"grunt-contrib-clean","version":"0.3.1","keywords":["gruntplugin"],"author":{"url":"http://tbranyen.com/","name":"Tim Branyen"},"_id":"grunt-contrib-clean@0.3.1","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"contributors":[{"url":"http://tbranyen.com/","name":"Tim Branyen"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://www.asciidisco.com/","name":"Sebastian Golasch"}],"homepage":"https://github.com/gruntjs/grunt-contrib-clean","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"dist":{"shasum":"b49f2fa3351796ebab7897da4662fca883f95fa2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-clean/-/grunt-contrib-clean-0.3.1.tgz","integrity":"sha512-Np3e83lhPfxoerco0lzG/xDp4k1HyJ94NwPA+YcCT53rjRznvKoU4lKJ+igfOnJvyCF/WOrERSA4vc2besu72g==","signatures":[{"sig":"MEYCIQCTI6bZ9o/NAqRX5+7ZGTbycKFH8PVmC8i3YwJb20YooAIhAJ1pgq26ruFyKi4yGV2OM+3oKAvyNz8uQwDUzK/DOeYt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"grunt.js","engines":{"node":"*"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-clean/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-clean.git","type":"git"},"_npmVersion":"1.1.65","description":"Clear files and folders.","directories":{},"dependencies":{"rimraf":"~2.0.2","grunt-contrib-lib":"~0.3.0"},"devDependencies":{"grunt":"~0.3.15"}},"0.3.2":{"name":"grunt-contrib-clean","version":"0.3.2","keywords":["gruntplugin"],"author":{"url":"http://tbranyen.com/","name":"Tim Branyen"},"_id":"grunt-contrib-clean@0.3.2","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"contributors":[{"url":"http://tbranyen.com/","name":"Tim Branyen"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://www.asciidisco.com/","name":"Sebastian Golasch"}],"homepage":"https://github.com/gruntjs/grunt-contrib-clean","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"dist":{"shasum":"a37adc3ec5c168574e97cc2fa690e3da63771047","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-clean/-/grunt-contrib-clean-0.3.2.tgz","integrity":"sha512-NpgFvDSJKdc+LeGUNFDKRyIwANw8+X8HO2m65Uc2o6u9oMDw1GfXqQbXkGFXZjO1Ma49JS6tuKZKDbM/jEdL+w==","signatures":[{"sig":"MEUCIQCTxq8rodC3EPuZADJc++myJQS+JvQldexBd/PXIBb/wQIgXFhbMVzPgV/CWaD4EwvfjLS56i/R74zUxL9o8l/Jv3w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"grunt.js","engines":{"node":"*"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-clean/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-clean.git","type":"git"},"_npmVersion":"1.1.65","description":"Clear files and folders.","directories":{},"dependencies":{"rimraf":"~2.0.2","grunt-lib-contrib":"~0.3.0"},"devDependencies":{"grunt":"~0.3.15"}},"0.4.0":{"name":"grunt-contrib-clean","version":"0.4.0","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-clean@0.4.0","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"contributors":[{"url":"http://tbranyen.com/","name":"Tim Branyen"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://www.asciidisco.com/","name":"Sebastian Golasch"},{"url":"http://vf.io","name":"Vlad Filippov"},{"url":"http://benalman.com/","name":"\"Cowboy\" Ben Alman"}],"homepage":"https://github.com/gruntjs/grunt-contrib-clean","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"dist":{"shasum":"741dab138f6b6951e0fdafd33ca0b4443bf6e00e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-clean/-/grunt-contrib-clean-0.4.0.tgz","integrity":"sha512-v7qTZ00UkLMdVt5NV9RF/Gub4mOw8X2tGSu+6Wwt0p2IgOpBDPy5V4IuKkMnKh76Wk2UWA7kkjvrEEKA8tYGfw==","signatures":[{"sig":"MEQCIFxOHORv2DcouWhVutE4wNcjHHlErCIjLWDGrJSmMZ8FAiAZseBHlgmzLTgOvTxJwFKRkmC1cr5YC4wiVNEpz7DLmQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Gruntfile.js","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"cowboy@rj3.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-clean/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-clean.git","type":"git"},"_npmVersion":"1.1.70","description":"Clean files and folders.","directories":{},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-jshint":"~0.1.1","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.4.1":{"name":"grunt-contrib-clean","version":"0.4.1","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-clean@0.4.1","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"contributors":[{"url":"http://tbranyen.com/","name":"Tim Branyen"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://www.asciidisco.com/","name":"Sebastian Golasch"},{"url":"http://vf.io","name":"Vlad Filippov"},{"url":"http://benalman.com/","name":"\"Cowboy\" Ben Alman"}],"homepage":"https://github.com/gruntjs/grunt-contrib-clean","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"dist":{"shasum":"7f8f46e2f2a7187e9c2d083ab30262aa6a64e334","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-clean/-/grunt-contrib-clean-0.4.1.tgz","integrity":"sha512-PajoaZgwbJ1QAbY5CemvuCIXUJU8teoA3ABTd3eZA+j0UYTUBW+hlV5m3ZlZLgRxKm3ZrchAEVR85r5uBeKF9w==","signatures":[{"sig":"MEQCIE+EmcEczW+FaV/6qjqAN7RfcgGiJCqOiexNdlBD029CAiAz3s70idyMrA46Hoz+7EJVxoKsU4RCb/MOhAdiH1hlJg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Gruntfile.js","_from":".","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-clean/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-clean.git","type":"git"},"_npmVersion":"1.2.11","description":"Clean files and folders.","directories":{},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.4","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.5.0":{"name":"grunt-contrib-clean","version":"0.5.0","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-clean@0.5.0","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"contributors":[{"url":"http://tbranyen.com/","name":"Tim Branyen"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://www.asciidisco.com/","name":"Sebastian Golasch"},{"url":"http://vf.io","name":"Vlad Filippov"},{"url":"http://benalman.com/","name":"\"Cowboy\" Ben Alman"}],"homepage":"https://github.com/gruntjs/grunt-contrib-clean","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"dist":{"shasum":"f53dfdee0849b1c7b40e9ebbba69f48c4c6079c5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-clean/-/grunt-contrib-clean-0.5.0.tgz","integrity":"sha512-82I+O38BHP4rqxceareiDKnLnrSyGnyn6N9E6sUpBgCtxXgxMbJEBooSC7KtXhLO7im1QhoPp9FdSvTZ+k1bIw==","signatures":[{"sig":"MEQCIDbyUU+UL+oD7uvPyhted1txszki0gFBny46yaNq2l7WAiBK97VDp990ECTfRPqA/lTCJD24UTTuajhxxnXfG18qqA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Gruntfile.js","_from":".","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-clean/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-clean.git","type":"git"},"_npmVersion":"1.3.2","description":"Clean files and folders.","directories":{},"dependencies":{"rimraf":"~2.2.1"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.4","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.6.0":{"name":"grunt-contrib-clean","version":"0.6.0","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-clean@0.6.0","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"},{"name":"anonymous","email":"vlad@vladikoff.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"jellyes2@gmail.com"}],"homepage":"https://github.com/gruntjs/grunt-contrib-clean","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"dist":{"shasum":"f532dba4b8212674c7c013e146bda6638b9048f6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-clean/-/grunt-contrib-clean-0.6.0.tgz","integrity":"sha512-uCUI26rYAufDndSt2rxevuLWhc1opLRQY6lyPnJeLVSDFZgktRAD/xqY9kWB02353LR/CQnQbmK0NwSB53I0Zw==","signatures":[{"sig":"MEUCICqNRkGYLwaIsznZWnDacF/jT5XpSmZw2IKy+p5lDX8NAiEA+rUFafFEwBE0Mi8zVlIMiXVANdhL7Znv7s3xn1GapGQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["tasks","LICENSE-MIT"],"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"vlad@vladikoff.com"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-clean/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-clean.git","type":"git"},"_npmVersion":"1.3.26","description":"Clean files and folders.","directories":{},"dependencies":{"rimraf":"~2.2.1"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-internal":"~0.4.10","grunt-contrib-nodeunit":"~0.3.3"},"peerDependencies":{"grunt":"~0.4.0"}},"0.7.0":{"name":"grunt-contrib-clean","version":"0.7.0","keywords":["gruntplugin","clean","cleanup","remove","delete","del","rm","rmrf","rimraf"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-clean@0.7.0","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"},{"name":"anonymous","email":"vlad@vladikoff.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"jellyes2@gmail.com"}],"contributors":[{"url":"http://tbranyen.com/","name":"Tim Branyen"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://www.asciidisco.com/","name":"Sebastian Golasch"},{"url":"http://vf.io","name":"Vlad Filippov"},{"url":"http://benalman.com/","name":"\"Cowboy\" Ben Alman"}],"homepage":"https://github.com/gruntjs/grunt-contrib-clean#readme","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"dist":{"shasum":"12fca70bbf525b918b73e5ccb1450f43beb629cd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-clean/-/grunt-contrib-clean-0.7.0.tgz","integrity":"sha512-75pIoEcT3aDpdxvRV02v67yymVoLehpe4xHz5GeBV9OK6XkzZ3sCAwpgVxzx7j3cvSh/8jpKhCZNZcBdOskGpg==","signatures":[{"sig":"MEYCIQDaNCVX8KhyuI3vsYRKtwUGE6BQqIC322TR95zGVCQ4DgIhAPfyW2zKFnosVLITFBCVu1N52HscAzaCRl+Ja4JSu3PE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["tasks"],"_shasum":"12fca70bbf525b918b73e5ccb1450f43beb629cd","engines":{"node":">=0.10.0"},"gitHead":"fad22340cb9bcde44acf9841a437d20a78f4f038","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"vlad@vladikoff.com"},"repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-clean.git","type":"git"},"_npmVersion":"3.3.12","appveyor_id":"li28411ceq3n833d","description":"Clean files and folders","directories":{},"_nodeVersion":"0.10.38","dependencies":{"rimraf":"^2.2.1"},"devDependencies":{"grunt":"^0.4.5","grunt-cli":"^0.1.13","grunt-contrib-jshint":"^0.11.0","grunt-contrib-internal":"^0.4.10","grunt-contrib-nodeunit":"^0.4.1"},"peerDependencies":{"grunt":">=0.4.0"}},"1.0.0":{"name":"grunt-contrib-clean","version":"1.0.0","keywords":["gruntplugin","clean","cleanup","remove","delete","del","rm","rmrf","rimraf"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-clean@1.0.0","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"},{"name":"anonymous","email":"vlad@vladikoff.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"jellyes2@gmail.com"}],"contributors":[{"url":"http://tbranyen.com/","name":"Tim Branyen"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://www.asciidisco.com/","name":"Sebastian Golasch"},{"url":"http://vf.io","name":"Vlad Filippov"},{"url":"http://benalman.com/","name":"\"Cowboy\" Ben Alman"}],"homepage":"https://github.com/gruntjs/grunt-contrib-clean","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"dist":{"shasum":"6b2ed94117e2c7ffe32ee04578c96fe4625a9b6d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-clean/-/grunt-contrib-clean-1.0.0.tgz","integrity":"sha512-53igYwhP+AUWdIfO1R+L9r4O48FSnA5ImYPWdXUNU+YQruOpprmMb+N74P7fAZLL3w9lsFin4B234NUrWx/RrQ==","signatures":[{"sig":"MEYCIQDTTxMDpcGK0lioM57OSqILl2/h7GCb2ro117YKE6btrQIhALOizy0Mg8K1yH3yzLnuZwXIDLZ0V/I57fCsmEnRmhBZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"tasks/clean.js","_from":".","files":["tasks"],"_shasum":"6b2ed94117e2c7ffe32ee04578c96fe4625a9b6d","engines":{"node":">= 0.10.0"},"gitHead":"af104010d9e35bc53635cd0bdec16791e009e530","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"repository":{"url":"https://github.com/gruntjs/grunt-contrib-clean","type":"git"},"_npmVersion":"2.14.12","appveyor_id":"li28411ceq3n833d","description":"Clean files and folders","directories":{},"_nodeVersion":"4.2.6","dependencies":{"async":"^1.5.2","rimraf":"^2.5.1"},"devDependencies":{"grunt":"^0.4.5","grunt-cli":"^0.1.13","dir-compare":"0.0.2","grunt-contrib-jshint":"^0.12.0","grunt-contrib-internal":"^0.4.10","grunt-contrib-nodeunit":"^0.4.1"},"peerDependencies":{"grunt":">= 0.4.5"},"_npmOperationalInternal":{"tmp":"tmp/grunt-contrib-clean-1.0.0.tgz_1455572673203_0.19528165156953037","host":"packages-5-east.internal.npmjs.com"}},"1.1.0":{"name":"grunt-contrib-clean","version":"1.1.0","keywords":["gruntplugin","clean","cleanup","remove","delete","del","rm","rmrf","rimraf"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-clean@1.1.0","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"},{"name":"anonymous","email":"vlad@vladikoff.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"jellyes2@gmail.com"}],"contributors":[{"url":"http://tbranyen.com/","name":"Tim Branyen"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://www.asciidisco.com/","name":"Sebastian Golasch"},{"url":"http://vf.io","name":"Vlad Filippov"},{"url":"http://benalman.com/","name":"\"Cowboy\" Ben Alman"}],"homepage":"https://github.com/gruntjs/grunt-contrib-clean#readme","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"dist":{"shasum":"564abf2d0378a983a15b9e3f30ee75b738c40638","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-clean/-/grunt-contrib-clean-1.1.0.tgz","integrity":"sha512-tET+TYTd8vCtKeGwbLjoH8+SdI8ngVzGbPr7vlWkewG7mYYHIccd2Ldxq+PK3DyBp5Www3ugdkfsjoNKUl5MTg==","signatures":[{"sig":"MEQCIHVzLcOqZE5LCM0HRuyx+7iuaskZD9zakOCMeSvAuRflAiAX/aqVXdRlwz6IgPIP5RUyj8b9VH1nD/1zb470dYiPTQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"tasks/clean.js","_from":".","files":["tasks"],"_shasum":"564abf2d0378a983a15b9e3f30ee75b738c40638","engines":{"node":">= 0.10.0"},"gitHead":"d1cd6cab180cd5e4862661e35a87fff8e77cdba6","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"vlad@vladikoff.com"},"repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-clean.git","type":"git"},"_npmVersion":"2.15.11","appveyor_id":"li28411ceq3n833d","description":"Clean files and folders","directories":{},"_nodeVersion":"4.8.1","dependencies":{"async":"^1.5.2","rimraf":"^2.5.1"},"devDependencies":{"grunt":"^1.0.0","dir-compare":"0.0.2","grunt-contrib-jshint":"^1.0.0","grunt-contrib-internal":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0"},"peerDependencies":{"grunt":">=0.4.5"},"_npmOperationalInternal":{"tmp":"tmp/grunt-contrib-clean-1.1.0.tgz_1492043822177_0.8515261318534613","host":"packages-12-west.internal.npmjs.com"}},"2.0.0":{"name":"grunt-contrib-clean","version":"2.0.0","keywords":["gruntplugin","clean","cleanup","remove","delete","del","rm","rmrf","rimraf"],"author":{"url":"https://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-clean@2.0.0","maintainers":[{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"jellyes2@gmail.com"},{"name":"anonymous","email":"kyle@dontkry.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"vlad@vladikoff.com"}],"contributors":[{"url":"http://tbranyen.com/","name":"Tim Branyen"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://www.asciidisco.com/","name":"Sebastian Golasch"},{"url":"http://vf.io","name":"Vlad Filippov"},{"url":"http://benalman.com/","name":"\"Cowboy\" Ben Alman"}],"homepage":"https://github.com/gruntjs/grunt-contrib-clean#readme","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"dist":{"shasum":"3be7ca480da4b740aa5e9d863e2f7e8b24f8a68b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-clean/-/grunt-contrib-clean-2.0.0.tgz","fileCount":4,"integrity":"sha512-g5ZD3ORk6gMa5ugZosLDQl3dZO7cI3R14U75hTM+dVLVxdMNJCPVmwf9OUt4v4eWgpKKWWoVK9DZc1amJp4nQw==","signatures":[{"sig":"MEUCIDkTPe13F1q3xY94He26slIiLHxHUSJZykBHr1YH+g7UAiEA03cc6g2pKeZ7005ThnEFVb061F99bjsKbMoJmlZm7Y4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10180,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJblojbCRA9TVsSAnZWagAATl0P/3EQKLGB8V3xoPawDKVr\nNEO5A3jiYuGhj1daZwsaVBm+vE052NfuPmtMdgJUYORXWy82E3fJn99d+beT\ngq70AZ4NyMN98f+mNK9cq9d1Ckhm2aoN7VIwaC0pLom8ouEZMd7JExf/4PGD\n8xhelGn3ki/9hxT0LBm/INC48UGuXnI8vkVpXmeN3XGHOazMC97LSLheXris\nZMFjQqjG+XFhxOoYk0AUD6+4kUvlCW0bCcGnUnkOhu28dVn9qRqVcIhMRFaR\nseGBRXC4EkY6lQ1zV1m4en16h1IAXwXUI+SFB3VN5mfy8KOkp/SEzTOB/Xxo\npqGLpJ9HotyzUZl6y6nPREB8XAgfrx2wtMhcBmN1MY6HrCqoeKOhDYgLmMVn\nnOHl9DlpBOPVOQ8If7HQ52wlQ7M1I2Ex+oQtlKKqnkCOUUuP42WOjqWtCB08\nHPLRgImRzci1Ruf6aMPPHIOlLX3lhRQojztngu+degGpBE4oij/86lqlOAeU\nrjmwVTFxnvPWtTgqCkiFAnVKvJg2CRq62nuFKqL/05qUu9EUCHgVO8+6vjjU\nEmgqNtHUZnKoeoyVZCleISN0fHahfFmBS5dfCss4ZL/SsH9RwaP1C4MyWaAL\naHdfj2lhr5O6MtlshnuqLtSDJ8hBec0/R4aQaz7kWRs1OdaZaVKz9nC7rfpR\n1khf\r\n=URr9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"tasks/clean.js","engines":{"node":">=6"},"gitHead":"40a65e6f61dfd40939018924255dd5b1dd1506e6","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"vlad@vladikoff.com"},"repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-clean.git","type":"git"},"_npmVersion":"6.2.0","appveyor_id":"li28411ceq3n833d","description":"Clean files and folders","directories":{},"_nodeVersion":"8.11.2","dependencies":{"async":"^2.6.1","rimraf":"^2.6.2"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.3","dir-compare":"^1.4.0","grunt-contrib-jshint":"^1.1.0","grunt-contrib-internal":"^3.1.0","grunt-contrib-nodeunit":"^2.0.0"},"peerDependencies":{"grunt":">=0.4.5"},"_npmOperationalInternal":{"tmp":"tmp/grunt-contrib-clean_2.0.0_1536592090839_0.41351169872869775","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"grunt-contrib-clean","version":"2.0.1","keywords":["gruntplugin","clean","cleanup","remove","delete","del","rm","rmrf","rimraf"],"author":{"url":"https://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-clean@2.0.1","maintainers":[{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"roaster.karmic_0r@icloud.com"},{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"vlad@vladikoff.com"},{"name":"anonymous","email":"kyle@dontkry.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"contributors":[{"url":"http://tbranyen.com/","name":"Tim Branyen"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://www.asciidisco.com/","name":"Sebastian Golasch"},{"url":"http://vf.io","name":"Vlad Filippov"},{"url":"http://benalman.com/","name":"\"Cowboy\" Ben Alman"}],"homepage":"https://github.com/gruntjs/grunt-contrib-clean#readme","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-clean/issues"},"dist":{"shasum":"062e8019d31bfca35af8929a2ee1063c6c46dd2d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-clean/-/grunt-contrib-clean-2.0.1.tgz","fileCount":4,"integrity":"sha512-uRvnXfhiZt8akb/ZRDHJpQQtkkVkqc/opWO4Po/9ehC2hPxgptB9S6JHDC/Nxswo4CJSM0iFPT/Iym3cEMWzKA==","signatures":[{"sig":"MEUCIH781ksW4VzUWo653ql+1i3OZElceZNhst819mwq5M6/AiEA8WyPhDRRVg34/v7AXM2a2qvSuuNkZzf2bxlhfMpedWw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10195,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiWhgkACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpWKQ//YTQqCk+wqX8j5Af1n215XMBuSorQaCOKJhflp2zOkw6Yb8Sr\r\n8QLe5DQTumBwUnwP8W9TzfDADXFswST/FazsHMT4QAlRAMBjnM/5g9/Xgu/P\r\nNO6HWGtrjzRsEytOb0DT9yn6NQC4VLCRMq6nNUxTs0llcOosfi9kYjIffkPf\r\nOh1ZZJ+NnQhTJ4sxsf63DD+V5d+/64/nA20DSgH5cziFs2zBaI4lMcvtTgOS\r\nOcVhI5HR9RKNO1l5ASoILAz7eeps/SPqhY4/wS20RUfXVK96fQTK1H9eeh/j\r\n738nEFfRLWCvjOKD2caisQrpF8oaumsQ0aJ97ngODTNQaQkQUjZTn1Vdx7cG\r\nsV2SVE2g04weEauZHgdLQFvVaQnhv8thLiFL1C39kOeDXe+w7GoMyMvKA4j9\r\nmER2gwC7c4eLotFqLG9+DR0/9mBFyjkXu2NJ3AoUGf5iqBMnjZBoHbP+j1gf\r\nkg73CYeMUhdio4TTau5jVZC56xIZWinRIK/MItijRwNm290UJpR7zcDWCpvq\r\n2C1Y5OApWy5KIb4GKZfmvEBXABvBaUKo7WPkC1oANit7bBG6EA53ntpqxFVt\r\n7tQkjQ7aQReBSOuFHw7uJAxcgvwvESxGAnaH8oWKxkw+zMdmzfFZp1Yirgih\r\nbjVn7mslBZUoSaoW1Sjn1TyPRgx1Js44jvc=\r\n=PGhA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"tasks/clean.js","engines":{"node":">=12"},"gitHead":"9bd20a6effd37c37d892d227812e16c83c679651","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"vlad@vladikoff.com"},"repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-clean.git","type":"git"},"_npmVersion":"6.14.15","appveyor_id":"li28411ceq3n833d","description":"Clean files and folders","directories":{},"_nodeVersion":"12.22.8","dependencies":{"async":"^3.2.3","rimraf":"^2.6.2"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.5.2","dir-compare":"^4.0.0","grunt-contrib-jshint":"^1.1.0","grunt-contrib-internal":"^7.0.0","grunt-contrib-nodeunit":"^4.0.0"},"peerDependencies":{"grunt":">=0.4.5"},"_npmOperationalInternal":{"tmp":"tmp/grunt-contrib-clean_2.0.1_1650071588604_0.987945390610707","host":"s3://npm-registry-packages"}}},"name":"grunt-contrib-clean","time":{"created":"2012-09-06T14:48:16.060Z","modified":"2024-11-18T12:21:24.580Z","0.1.0":"2012-09-06T14:48:17.616Z","0.2.0":"2012-09-10T22:23:40.352Z","0.3.0":"2012-09-24T04:48:22.462Z","0.4.0-a":"2012-11-28T15:14:57.254Z","0.4.0-rc5":"2013-01-09T19:24:51.515Z","0.4.0-rc6":"2013-01-18T15:54:08.958Z","0.3.1":"2013-02-15T22:17:26.677Z","0.3.2":"2013-02-17T12:59:09.074Z","0.4.0":"2013-02-18T17:23:54.219Z","0.4.1":"2013-04-16T20:28:56.734Z","0.5.0":"2013-07-16T03:47:54.816Z","0.6.0":"2014-07-28T00:36:26.222Z","0.7.0":"2015-11-13T19:05:19.581Z","1.0.0":"2016-02-15T21:44:36.353Z","1.1.0":"2017-04-13T00:37:02.438Z","2.0.0":"2018-09-10T15:08:10.954Z","2.0.1":"2022-04-16T01:13:08.746Z"},"contributors":[{"url":"http://tbranyen.com/","name":"Tim Branyen"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://www.asciidisco.com/","name":"Sebastian Golasch"},{"url":"http://vf.io","name":"Vlad Filippov"},{"url":"http://benalman.com/","name":"\"Cowboy\" Ben Alman"}],"readmeFilename":"README.md","homepage":"https://github.com/gruntjs/grunt-contrib-clean#readme"}