{"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":"xhmikosr@gmail.com"}],"keywords":["gruntplugin","compress","zip","tar"],"dist-tags":{"latest":"2.0.0"},"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"description":"Compress files and folders","readme":"# grunt-contrib-compress v2.0.0 [![Build Status](https://github.com/gruntjs/grunt-contrib-compress/workflows/Tests/badge.svg)](https://github.com/gruntjs/grunt-contrib-compress/actions?workflow=Tests)\n\n> Compress 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-compress --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-compress');\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-compress/tree/grunt-0.3-stable).*\n\n\n\n## Compress task\n_Run this task with the `grunt compress` command._\n\nTask targets, files and options may be specified according to the grunt [Configuring tasks](http://gruntjs.com/configuring-tasks) guide.\n\nNode Libraries Used:\n[archiver](https://github.com/ctalkington/node-archiver) (for zip/tar)\n[zlib](https://nodejs.org/api/zlib.html#zlib_options) (for gzip).\n### Options\n\n#### archive\nType: `String` or `Function`  \nModes: `zip` `tar`\n\nThis is used to define where to output the archive. Each target can only have one output file.\nIf the type is a Function it must return a String.\n\n*This option is only appropriate for many-files-to-one compression modes like zip and tar.  For gzip for example, please use grunt's standard src/dest specifications.*\n\n#### mode\nType: `String`\n\nThis is used to define which mode to use, currently supports `gzip`, `deflate`, `deflateRaw`, `tar`, `tgz` (tar gzip),`zip` and `brotli`.\n\nAutomatically detected per `dest:src` pair, but can be overridden per target if desired.\n\n#### level\nType: `Integer`  \nModes: `zip` `gzip`  \nDefault: `1`\n\nSets the level of archive compression.\n\n#### brotli\nConfigure brotli compression settings:\n\nType: `Object`  \nDefault:\n```js\n{\n    [zlib.constants.BROTLI_PARAM_MODE]: 0,\n    [zlib.constants.BROTLI_PARAM_QUALITY]: 11,\n    [zlib.constants.BROTLI_PARAM_LGWIN]: 22,\n    [zlib.constants.BROTLI_PARAM_LGBLOCK]: 0\n}\n```\n\nDo not forget require `zlib` for `zlib.constants`, example:\n```\nconst zlib = require('zlib');\n```\n\n##### mode\nType: `Integer`\n* `0`: generic mode\n* `1`: text mode\n* `2`: font mode\n\nDefault: `0`\n\n##### quality\nControls the compression-speed vs compression-density tradeoffs. The higher the quality, the slower the compression. Range is 0 to 11.\n\nType: `Integer`  \nDefault: `11`\n\n##### lgwin\nBase 2 logarithm of the sliding window size. Range is 10 to 24.\n\nType: `Integer`  \nDefault: `22`\n\n##### lgblock\nBase 2 logarithm of the maximum input block size. Range is 16 to 24. If set to 0, the value will be set based on the quality.  \n\nType: `Integer`  \nDefault: `0`\n\n#### pretty\nType: `Boolean`  \nDefault: `false`\n\nPretty print file sizes when logging.\n\n#### createEmptyArchive\nType: `Boolean`  \nDefault: `true`\n\nThis can be used when you don't want to get an empty archive as a result, if there are no files at the specified paths.\n\nIt may be useful, if you don't clearly know if files exist and you don't need an empty archive as a result.\n\n### File Data\n\nThe following additional keys may be passed as part of a `dest:src` pair when using an Archiver-backed format.\nAll keys can be defined as a `Function` that receives the file name and returns in the type specified below.\n\n#### date\nType: `Date`  \nModes: `zip` `tar` `tgz`\n\nSets the file date.\n\n#### mode\nType: `Integer`  \nModes: `zip` `tar` `tgz`\n\nSets the file permissions.\n\n#### store\nType: `Boolean`  \nDefault: `false`\n\nIf true, file contents will be archived without compression.\n\n#### comment\nType: `String`  \nModes: `zip`\n\nSets the file comment.\n\n#### gid\nType: `Integer`  \nModes: `tar` `tgz`\n\nSets the group of the file in the archive\n\n#### uid\nType: `Integer`  \nModes: `tar` `tgz`\n\nSets the user of the file in the archive\n\n### Usage Examples\n\n```js\n// make a zipfile\ncompress: {\n  main: {\n    options: {\n      archive: 'archive.zip'\n    },\n    files: [\n      {src: ['path/*'], dest: 'internal_folder/', filter: 'isFile'}, // includes files in path\n      {src: ['path/**'], dest: 'internal_folder2/'}, // includes files in path and its subdirs\n      {expand: true, cwd: 'path/', src: ['**'], dest: 'internal_folder3/'}, // makes all src relative to cwd\n      {flatten: true, src: ['path/**'], dest: 'internal_folder4/', filter: 'isFile'} // flattens results to a single level\n    ]\n  }\n}\n```\n\n```js\n// gzip assets 1-to-1 for production\ncompress: {\n  main: {\n    options: {\n      mode: 'gzip'\n    },\n    expand: true,\n    cwd: 'assets/',\n    src: ['**/*'],\n    dest: 'public/'\n  }\n}\n```\n\n```js\n// compress a file to a different location than its source\n// example compresses path/the_file to /the_file inside archive.zip\ncompress: {\n  main: {\n    options: {\n      archive: 'archive.zip'\n    },\n    files: [{\n      expand: true,\n      cwd: 'path/',\n      src: ['the_file'],\n      dest: '/'\n    }]\n  }\n},\n```\n\n```js\n// use custom extension for the output file\ncompress: {\n  main: {\n    options: {\n      mode: 'gzip'\n    },\n    // Each of the files in the src/ folder will be output to\n    // the dist/ folder each with the extension .gz.js\n    files: [{\n      expand: true,\n      src: ['src/*.js'],\n      dest: 'dist/',\n      ext: '.gz.js'\n    }]\n  }\n}\n\n```\n```js\n// use a function to return the output file\ncompress: {\n  main: {\n    options: {\n      archive: function () {\n        // The global value git.tag is set by another task\n        return git.tag + '.zip'\n      }\n    },\n    files: [{\n      expand: true,\n      src: ['src/*.js'],\n      dest: 'dist/'\n    }]\n  }\n}\n```\n\n```js\n// brotlify assets 1-to-1 for production using default options\ncompress: {\n  main: {\n    options: {\n      mode: 'brotli'\n    },\n    expand: true,\n    cwd: 'assets/',\n    src: ['**/*.js'],\n    dest: 'public/',\n    extDot: 'last',\n    ext: '.js.br'\n  }\n}\n```\n\n```js\n// brotlify assets 1-to-1 for production specifying text mode\n// and using default options otherwise\ncompress: {\n  main: {\n    options: {\n      mode: 'brotli',\n      brotli: {\n        mode: 1\n      }\n    },\n    expand: true,\n    cwd: 'assets/',\n    src: ['**/*.js'],\n    dest: 'public/',\n    extDot: 'last',\n    ext: '.js.br'\n  }\n}\n```\n\n\n## Release History\n\n * 2020-12-12   v2.0.0   Remove iltorb dependency, now uses zlib brotli features. Requires node >=10.16. Dependency and test updates.\n * 2019-10-21   v1.6.0   Update iltorb dependency\n * 2018-04-24   v1.5.0   Update to node 4 as minimum version update tar to 4.4.8\n * 2017-05-20   v1.4.3   Update pretty-bytes to v4.0.2. Add option to not to create empty archive.\n * 2017-05-20   v1.4.2   Update archiver to v1.3.0.\n * 2017-01-20   v1.4.1   Make brotli support optional.\n * 2017-01-18   v1.4.0   Add support for brotli.\n * 2016-05-24   v1.3.0   Update archiver to v1.0. Fix node 6 support.\n * 2016-03-24   v1.2.0   Dependency update.\n * 2016-03-08   v1.1.1   Fix verbose output.\n * 2016-03-04   v1.1.0   Add ability to replace file in the same location.\n * 2016-02-15   v1.0.0   Update archiver, chalk and pretty-bytes.\n * 2015-10-23   v0.14.0   Change to verbose output. Dependency updates archiver 0.16.\n * 2014-12-25   v0.13.0   Update archiver to v0.13. Small fixes.\n * 2014-09-23   v0.12.0   Output update. Prevent zipping dot files and allow for forcing through `fail.warn` within loop.\n * 2014-08-26   v0.11.0   Update archiver to v0.11.0.\n * 2014-07-14   v0.10.0   Don't apply extensions automatically (use `ext` or `rename`).\n * 2014-05-20   v0.9.1   Allow directories to pass-through to archiver via filter.\n * 2014-05-20   v0.9.0   Update archiver to v0.9.0.\n * 2014-04-09   v0.8.0   Update archiver to v0.8.0.\n * 2014-02-17   v0.7.0   Update archiver to v0.6.0.\n * 2014-01-12   v0.6.0   Update archiver to v0.5.0.\n * 2013-11-27   v0.5.3   Allow archive option to be a function.\n * 2013-06-03   v0.5.2   Allow custom extensions using the `ext` option.\n * 2013-05-28   v0.5.1   Avoid gzip on folders.\n * 2013-04-23   v0.5.0   Add support for `deflate` and `deflateRaw`.\n * 2013-04-15   v0.4.10   Fix issue where task finished before all data was compressed.\n * 2013-04-09   v0.4.9   Bump Archiver version.\n * 2013-04-07   v0.4.8   Open streams lazily to avoid too many open files.\n * 2013-04-01   v0.4.7   Pipe gzip to fix gzip issues. Add tests that undo compressed files to test.\n * 2013-03-25   v0.4.6   Fix Node.js v0.8 compatibility issue with gzip.\n * 2013-03-20   v0.4.5   Update to archiver 0.4.1 Fix issue with gzip failing intermittently.\n * 2013-03-19   v0.4.4   Fixes for Node.js v0.10. Explicitly call `grunt.file` methods with `map` and `filter`.\n * 2013-03-14   v0.4.3   Fix for gzip; continue iteration on returning early.\n * 2013-03-13   v0.4.2   Refactor task like other contrib tasks. Fix gzip of multiple files. Remove unused dependencies.\n * 2013-02-22   v0.4.1   Pretty print compressed sizes. Logging each addition to a compressed file now only happens in verbose mode.\n * 2013-02-15   v0.4.0   First official release for Grunt 0.4.0.\n * 2013-01-23   v0.4.0rc7   Updating grunt/gruntplugin dependencies to rc7. Changing in-development grunt/gruntplugin dependency versions from tilde version ranges to specific versions.\n * 2013-01-14   v0.4.0rc5   Updating to work with grunt v0.4.0rc5. Conversion to grunt v0.4 conventions. Replace `basePath` with `cwd`.\n * 2012-10-12   v0.3.2   Rename grunt-contrib-lib dep to grunt-lib-contrib.\n * 2012-10-09   v0.3.1   Replace zipstream package with archiver.\n * 2012-09-24   v0.3.0   General cleanup. Options no longer accepted from global config key.\n * 2012-09-18   v0.2.2   Test refactoring. No valid source check. Automatic mode detection.\n * 2012-09-10   v0.2.0   Refactored from grunt-contrib into individual repo.\n\n---\n\nTask submitted by [Chris Talkington](http://christalkington.com/)\n\n*This file was generated on Sat Dec 12 2020 14:15:27.*\n","repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"users":{"duchon":true,"eshinn":true,"cueedee":true,"itonyyo":true,"jnewman":true,"epickris":true,"jkahlina":true,"lsmithx2":true,"niubenjs":true,"tdmalone":true,"vchouhan":true,"ypolosov":true,"grin_zhou":true,"ipelekhan":true,"largepuma":true,"markymark":true,"martinezi":true,"lankinglin":true,"maxime1992":true,"saravananr":true,"shipengyan":true,"karlbateman":true,"davidhalldor":true,"inflowmotion":true,"mswanson1524":true,"webtobesocial":true,"joris-van-der-wel":true},"bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"license":"MIT","versions":{"0.2.0":{"name":"grunt-contrib-compress","version":"0.2.0","keywords":["gruntplugin"],"author":{"url":"http://christalkington.com/","name":"Chris Talkington"},"_id":"grunt-contrib-compress@0.2.0","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"7ee5680ae4b53b0f7d29e677e732ae999ee3902a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.2.0.tgz","integrity":"sha512-YgoxU0bCN1NByR+cqUUXkQSw3/6osaSOa51SWUP/HrmLaR4dq+ACtGa3gnw7u+YxrxBvIl7Wao4lpIRfv+KqXA==","signatures":[{"sig":"MEYCIQDNfifVL/vpV3JA1q+/ivFsHgb9lnSWj56isCNepcUNywIhAJqPHB2D+isblpQj7KFrj0i+bj7CWV/Gq9ZbrGZwpbzP","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-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.1.59","description":"Compress files and folders.","directories":{},"dependencies":{"tar":"~0.1.13","rimraf":"~2.0.2","fstream":"~0.1.18","zipstream":"~0.2.1","grunt-contrib-lib":"~0.1.0","grunt-contrib-clean":"~0.1.0"},"devDependencies":{"grunt":"~0.3.15"}},"0.2.1":{"name":"grunt-contrib-compress","version":"0.2.1","keywords":["gruntplugin"],"author":{"url":"http://christalkington.com/","name":"Chris Talkington"},"_id":"grunt-contrib-compress@0.2.1","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"4e2dab8fa52274c8c097320cc59213ce3c2bd6c1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.2.1.tgz","integrity":"sha512-HduwIhVwz4jxBQ3ElRALinuYNxhClfcu83vstm3SekfWNRrmn+g5Kz/+Iyg2H0C7mEeACgNC3RAAnATiPZVyQw==","signatures":[{"sig":"MEYCIQDtPAug9aaGfJQrg38ZziFmmXhUxXY/InEai5IYAkXU/AIhAO7OTyRlKl4WdViX8/43QjjMk9NkL1WXf+GYZNL1EBNQ","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-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.1.59","description":"Compress files and folders.","directories":{},"dependencies":{"tar":"~0.1.13","rimraf":"~2.0.2","fstream":"~0.1.18","zipstream":"~0.2.1","grunt-contrib-lib":"~0.2.0"},"devDependencies":{"grunt":"~0.3.15","grunt-contrib-clean":"~0.2.0"}},"0.2.2":{"name":"grunt-contrib-compress","version":"0.2.2","keywords":["gruntplugin"],"author":{"url":"http://christalkington.com/","name":"Chris Talkington"},"_id":"grunt-contrib-compress@0.2.2","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"2c1d7b8213b2391bbd163dc7f12c13dd9b68e836","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.2.2.tgz","integrity":"sha512-bcT1eaPYcW+IIUIIjpESPisz5fc/MvnyVWLng0M4m9R5HrrtD6ASeHevLBBxD2HHY4jjqAd2WKGByi2Hbsr6Pg==","signatures":[{"sig":"MEYCIQCTuJe+hOW5VfIdjaN5PMYAP8wzOQSMKOe+DpUFcNrTawIhAJymzEpuk0PjCMRmPTzSkb+Vv1uUH7z6GoTxNI1np3qT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"grunt.js","engines":{"node":">= 0.6.3"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.1.59","description":"Compress files and folders.","directories":{},"dependencies":{"tar":"~0.1.13","rimraf":"~2.0.2","fstream":"~0.1.18","grunt-contrib-lib":"~0.2.0","zipstream-ctalkington":"~0.3.0"},"devDependencies":{"grunt":"~0.3.15","grunt-contrib-clean":"~0.2.0"}},"0.3.0":{"name":"grunt-contrib-compress","version":"0.3.0","keywords":["gruntplugin"],"author":{"url":"http://christalkington.com/","name":"Chris Talkington"},"_id":"grunt-contrib-compress@0.3.0","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"9333c60ce403001e078f4857af954c6f912a1425","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.3.0.tgz","integrity":"sha512-VWHR1zu98f1X1s6gvCdZ2L8PzTFMpOSQAUdw0Zc1eWnFZ0M5/MJ7kM4Hl/bNOMw+u7BSCyRCOncrhjFw4DSSgw==","signatures":[{"sig":"MEQCIBdI4R4TR0+wABu34y86WRwAFutmfG9hTOzazW+uWiv+AiBG58JLNNs1s8w6Wcpxhkj31lHBZmYchW9iuU9y9fRwPQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"grunt.js","engines":{"node":">= 0.6.3"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.1.59","description":"Compress files and folders.","directories":{},"dependencies":{"tar":"~0.1.13","rimraf":"~2.0.2","fstream":"~0.1.18","grunt-contrib-lib":"~0.3.0","zipstream-ctalkington":"~0.3.0"},"devDependencies":{"grunt":"~0.3.15","grunt-contrib-clean":"~0.3.0"}},"0.3.1":{"name":"grunt-contrib-compress","version":"0.3.1","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.3.1","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"696406859a37c8fc404df645caab33f6366f554b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.3.1.tgz","integrity":"sha512-yd17ITR2DbLiWBHLzEeRNw6hKB4nvmSkozsVw0JWnV2Gae52CLLgLNuDDS2kSzKIl3mGViOjaHr3RoXvw2on6g==","signatures":[{"sig":"MEUCIEvVCbQX2yqbnIzB9DTiCOAQcxunlfBTLMSj5HuIWZ3aAiEA3lYB2NEEuOQ/8WCloRvyxzbQotH7Xg4/jPw2ABQ33xE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"grunt.js","engines":{"node":">= 0.6.3"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.1.61","description":"Compress files and folders.","directories":{},"dependencies":{"tar":"~0.1.13","rimraf":"~2.0.2","fstream":"~0.1.18","archiver":"~0.1.0","grunt-contrib-lib":"~0.3.0"},"devDependencies":{"grunt":"~0.3.15","grunt-contrib-clean":"~0.3.0"}},"0.3.2":{"name":"grunt-contrib-compress","version":"0.3.2","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.3.2","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"2972e78a60305c14607f8759d3d1ca3d3ed5d34c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.3.2.tgz","integrity":"sha512-Org+nkxBCr8eBqzYphEEYcfBNiy8M6YuWBJgDiCpy754VREk6wXhSHqxfS0AeKAlNI8dwSqcS8SZPYjhA/fNrg==","signatures":[{"sig":"MEUCIA9+x7DroNtEATzw+G2ByQbGfQda/NhSUccJAVD8orXBAiEA+ptgLWqrTgNETEAS6/HHZ61JLtRFNDr40sENIhgy/Zc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"grunt.js","engines":{"node":">= 0.6.3"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.1.61","description":"Compress files and folders.","directories":{},"dependencies":{"tar":"~0.1.13","rimraf":"~2.0.2","fstream":"~0.1.18","archiver":"~0.1.0","grunt-lib-contrib":"~0.3.0"},"devDependencies":{"grunt":"~0.3.15","grunt-contrib-clean":"~0.3.0"}},"0.3.3":{"name":"grunt-contrib-compress","version":"0.3.3","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.3.3","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"f4420c9d74f5416f2b15772b7d32963744f94423","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.3.3.tgz","integrity":"sha512-sS08OPAc9Vmb9aInzRaAjpbbF7YkSHGCGePTmW5vMvVHe+iCqKUGZ9lI2RoDfX5z1AxItcah3EkASNt7SGVDfw==","signatures":[{"sig":"MEYCIQDIyKBAnojMi8jx/64IT2Di1qefWmB1Pt6gWwKOkJkJBQIhAIA3+lainpaHASwQtI5FCej+oT8u3PNVLlC3HJ+aPlys","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"grunt.js","engines":{"node":">= 0.6.3"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.1.65","description":"Compress files and folders.","directories":{},"dependencies":{"tar":"~0.1.13","rimraf":"~2.0.2","fstream":"~0.1.18","archiver":"~0.1.0","grunt-lib-contrib":"~0.3.0"},"devDependencies":{"grunt":"~0.3.15","grunt-contrib-clean":"~0.3.0"}},"0.4.0":{"name":"grunt-contrib-compress","version":"0.4.0","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@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://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"39fa395bd2b1f0f2261fa46f7490db76e45275c6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.4.0.tgz","integrity":"sha512-7HnzpBJtjxwzT1sVDtsyw5WUoCNyGnI+YD0AOee/RCKtKqNIxsGV4gLg5YFAwtGDmT09rs+mGAhZCRe+YaJDVA==","signatures":[{"sig":"MEUCIQDLoe91R4BoLtLDitcx6tkKtcYLcS8hGiuMgvIdrDcYYAIgbN25+C5/TgBnbQeNZO4STlk2dUpxDKYs7GSp0p4A99s=","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-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.1.70","description":"Compress files and folders.","directories":{},"dependencies":{"rimraf":"~2.0.2","archiver":"~0.3.0","grunt-lib-contrib":"~0.5.1"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-clean":"~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-compress","version":"0.4.1","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@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://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"805275ca1bde35dcc6f01ec3ed8b0a2cba80e363","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.4.1.tgz","integrity":"sha512-D9iAV7P+GDfe8bRkQGtSMw1hBMRTx7v39R//JpensFzjtnrb9sFU3SbBqRdRuevrYpNCBDjYiWbAxZMUoCnZ/g==","signatures":[{"sig":"MEUCIEHTGytkM7FWf2JK0ekXyMGpAssDpWXxS0PdaGllxrJkAiEAmhcZg2/+0Gcf8vLdwlqwYNTxvnCVJTM87cklXVnVbrE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Gruntfile.js","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.1.65","description":"Compress files and folders.","directories":{},"dependencies":{"rimraf":"~2.0.2","archiver":"~0.3.0","prettysize":"~0.0.2","grunt-lib-contrib":"~0.5.1"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-clean":"~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.2":{"name":"grunt-contrib-compress","version":"0.4.2","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.4.2","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"c48435e5928dd9fb6aaad6816020b4b27271263e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.4.2.tgz","integrity":"sha512-eCUux+gfT08Vp9pHK0clMzjhWcZhgGiI/FFBaCqRDlJyBzVsJogtYmli4BLAW26Do/F1/0jjUQw/MBnhZ0u63Q==","signatures":[{"sig":"MEUCIGanwo6iUp9s4Pmp9DVL/ug5keAB3sWFNNhEZnqAh1seAiEAnjw0qa9BnWl13CqTHlBEJGAZBCkLhfu6SGWMOVFHyIg=","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-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.2.11","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.3.0","prettysize":"~0.0.2"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.4.3":{"name":"grunt-contrib-compress","version":"0.4.3","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.4.3","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"0d15d5303dc9c18045d88b9552a676ef62fcba0c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.4.3.tgz","integrity":"sha512-DijIwoNAHSXnffdRAIWx3Qt9gsq8gR71PINuJ1WpZnXYvJw+tUXSjnO8HPv/S3x9Y6h/ZrSUTOC2fN/usa8gcQ==","signatures":[{"sig":"MEYCIQC5uJQojaVf2mJuQF5lIzZA1HC+2qF3xzRzpFX0g6IvXAIhAJWt1DM+cnemlsAKAGREt01PqKsUV5vZ3AE+u2QSwV3S","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-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.2.11","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.3.0","prettysize":"~0.0.2"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.4.4":{"name":"grunt-contrib-compress","version":"0.4.4","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.4.4","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"f0114aa57e343ab11c6cfe5bca110f272fb1dc35","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.4.4.tgz","integrity":"sha512-Y9BzMQDzSLnNoIwIDOS6JMfRuDYEpultfWEuGwSoWwjFJSMvX6KOn0bEE7Y/H6C+wUAY3sVdhd6OEalm+sQbFQ==","signatures":[{"sig":"MEQCIC2ZQzYlCFADbsTMuJzWinpiMXlUzmA5vur4yIPynBNeAiAVNrkh070HKmK+8J3LB9KHmBZaFaN5/yY17E35YsN5vw==","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-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.2.14","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.3.0","prettysize":"~0.0.2"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.4.5":{"name":"grunt-contrib-compress","version":"0.4.5","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.4.5","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"2bbc7e7dac16d78da246914eacee4482b4509230","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.4.5.tgz","integrity":"sha512-XkzRgi6aWpk3iW7DJWKfVfDGVaw0AQ1BTw4qoEmDEq1b2ZAGLi0ERcI8zPmX8sdLRKFQq+mClTKUdZiGNcHYag==","signatures":[{"sig":"MEUCIQC6y9Cbb6fgL8zAmjhEFqENpwygxdY46Zh1lX68UqmnDgIgG8B4Qomfe63XHO35tlsi2dKo+QFMFQvJYjzpkyyal/s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Gruntfile.js","_from":".","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.2.14","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.4.1","prettysize":"~0.0.2"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.4.6":{"name":"grunt-contrib-compress","version":"0.4.6","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.4.6","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"149a7779dbea458202ce0ea0de9ee0fc22e9bae7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.4.6.tgz","integrity":"sha512-g7oQJsLYLPAy/7bIlD/nWvky0yM1/hLOUZKA0d4dXKU+/p/0mEpmCNY5clo3pg+JqKCeBzW9yizO4KVR/0HO1g==","signatures":[{"sig":"MEUCIQC5fFdP0smVAqFYN5VdAzOLu+AFv4BT2Qw0kvECOWwBLwIgaNPL0Kjl2g6ZF15N0OKnIbJ/liSPJYR16YUIurzOkhg=","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-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.2.11","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.4.1","prettysize":"~0.0.2"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.4.7":{"name":"grunt-contrib-compress","version":"0.4.7","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.4.7","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"8cea6289f993e0638b639182db2c0035d74090d6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.4.7.tgz","integrity":"sha512-B2fEsQa8H+l992tNm+ch14k5g4Ik+D+kikoRX8aZTW1jhcPK2IEnzQnpu7aMzKrY1lzUsMP7dmU5fRZ+9Fdd5g==","signatures":[{"sig":"MEUCIDXlH8BugIoPuLUzXQe6LfD0GjUEN+R7MqA7xvBR9Iz7AiEAnZ4MOWGrZSj9q50B1+oW5DY9D+fdxOIGkgC7TwqXukg=","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-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.2.11","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.4.1","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.0","unzip":"~0.1.5","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.4.8":{"name":"grunt-contrib-compress","version":"0.4.8","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.4.8","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"c8e0348c6a6b0ec74f47ba7b3e5d36a81767f671","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.4.8.tgz","integrity":"sha512-3B72hGZfzLn6SRGiOdnxObTTSdhL3bQ0B+vjnW/r4KDr9CROv3NBfz9u7AxvxwwKPAuvNPTt1so20ak7WUf7CA==","signatures":[{"sig":"MEUCIE7FIoUWkU3CWhtWXtkx3y6yh3HWLlGd1vinxZ9JNm0jAiEAmbGyTJFlSR6aKPHB8gEvKBV8hLJOSSFs7u350f8O5JU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Gruntfile.js","_from":".","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test -v"},"_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.2.11","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.4.1","lazystream":"~0.1.0","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.0","unzip":"~0.1.5","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.4.9":{"name":"grunt-contrib-compress","version":"0.4.9","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.4.9","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"80ceea9ed6ab6365411cd1b4ae4758a4800add9f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.4.9.tgz","integrity":"sha512-DjBS3PD4s+rsgVotij50HGv6VZO0C069Y1G9lg0B3vbE+iXRI10g1Ucm0GlHO/5sA58N3/hJdtKX+KkU0VjVBg==","signatures":[{"sig":"MEUCIQDHZxKxKApqXvHQI4LcomlGEp7qQU2yoS6BNwTokkHRCwIgAo4jwWyCWtFtVzF4p0klUbzMsb6l2BYA+Pxht2FJxIA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Gruntfile.js","_from":".","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test -v"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.2.15","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.4.2","lazystream":"~0.1.0","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.0","unzip":"~0.1.5","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.4.10":{"name":"grunt-contrib-compress","version":"0.4.10","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.4.10","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"e70a992581333e5e107f3cf722b4cde4ddae7b29","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.4.10.tgz","integrity":"sha512-zvWwEk6BZq/Cfs6NL+2MtA6JGllZsH8Bw13HEQmcihdfx+NkXWb/we09rGBAPosfu82ipTmrlAN8cP5M66vtOQ==","signatures":[{"sig":"MEUCIFQMmNpgB9RjKVQ/kShzuZfAGUtQGYN4EKFSGUlB2mumAiEA+92+89OA9dzzeOyRS36bWP+iQ7ZVddtGf2lsj/P14kY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Gruntfile.js","_from":".","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test -v"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.2.15","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.4.2","lazystream":"~0.1.0","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.0","unzip":"~0.1.5","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.5.0":{"name":"grunt-contrib-compress","version":"0.5.0","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@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://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"a3d4e6216af6cace6795dc131953849daf32c422","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.5.0.tgz","integrity":"sha512-JyZbi8OQGDXqskiwtbhNhO4EDr/3K5OXsjUJS2/e9cluS26Zg0lMsvVhfnTcwbA3d63GTCi54M8446VdMuevEA==","signatures":[{"sig":"MEYCIQCtOGqiLO4tGt3lMcbv5s1iObKDplsUNtSGPoWjdNjQIgIhAMaGGQlc7PYsHNcmc15IfXsVAlv7u5u/b6V+2kyW2zFq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Gruntfile.js","_from":".","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test -v"},"_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.2.11","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.4.2","lazystream":"~0.1.0","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.0","unzip":"~0.1.5","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.5.1":{"name":"grunt-contrib-compress","version":"0.5.1","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.5.1","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"45266a376656cbe6324d20d7b74dfc8efc3b7cff","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.5.1.tgz","integrity":"sha512-NCDatUHrmMoHmk4qpPOlwsh5nXn1lTtvtvWRwgAvWa4O0nM62PWuZgDcLPqZ5CdsQr8XUFCYflWVhdS95rbO8w==","signatures":[{"sig":"MEUCIG9jV6FvMVXU/1REAufNRWkK3GaF2vdWKjmE/pYBzUBLAiEAqlrM6mXadmSqgiKsnoHE/jM0AoWrHMlOMfI0ySXM0lk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Gruntfile.js","_from":".","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test -v"},"_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.2.23","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.4.2","lazystream":"~0.1.0","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.0","unzip":"~0.1.5","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.5.2":{"name":"grunt-contrib-compress","version":"0.5.2","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.5.2","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"a1e041f328ae4df9ba89df4c8ebec11ef43f2875","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.5.2.tgz","integrity":"sha512-2yKLyOkBdywSa148kqFIgAm8lrPfFyYmRqLVbmaMlteutur5waQd58FhbMGjeituPY7wpdzfgXfkEDxxV1a/qw==","signatures":[{"sig":"MEUCIFehqFsM8NFVAz2pAdYmb0LYtXoEIWxg9Jz7rZBjoIp8AiEAmf/1ejyMmLgxRIn9eiT4dtNySV6s3rWsZqb9ULw5U+U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Gruntfile.js","_from":".","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test -v"},"_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.2.21","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.4.2","lazystream":"~0.1.0","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.0","unzip":"~0.1.5","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.5.3":{"name":"grunt-contrib-compress","version":"0.5.3","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.5.3","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"ba3b5b2ff438c4530579e6962cab80696580ebed","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.5.3.tgz","integrity":"sha512-xVr2iM24o4FoNbCFkHrVcX2wnQUnR5WTCZ5jbthJcRRs1Vk+KkYmIkvUd7pG+yxQXWxxPfx0yJKCeyxG0xcaRQ==","signatures":[{"sig":"MEQCIDM1RbLWotNtPgP/dcr63KQPjUoCBud0tguO1P6CaPlGAiAk9uhyN66bxm4w7NZdfLQ93VP6OzdbKcnJ5AfwqcPNDg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test -v"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.3.14","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.4.2","lazystream":"~0.1.0","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.0","unzip":"~0.1.5","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.6.0":{"name":"grunt-contrib-compress","version":"0.6.0","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.6.0","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"kyle@dontkry.com"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"d5e2d077edfeafabbb1b46413ed056c05aa0761b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.6.0.tgz","integrity":"sha512-84nYXNV/sNrSQTrs4AgOwUTkDpRJta6781IgZIdB/4hrBtDp3QkT+tB0ysFlgmfsEjqAOL4R97jbaBUR0A/4AQ==","signatures":[{"sig":"MEUCID3KCI3JrYPyhGPhKVnAiu7QyCjr/VESi67kvUuxGqAtAiEA+0JYvZ86BPqXs6CAkQFGiK8sNIPECQ8nhY6/rw6JIXw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["tasks","LICENSE-MIT"],"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test -v"},"_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.3.14","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.5.0","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.0","unzip":"~0.1.5","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.6.1":{"name":"grunt-contrib-compress","version":"0.6.1","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.6.1","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"8cc6a51de3caeb87917853c6cb471a8b899cda9d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.6.1.tgz","integrity":"sha512-RR08FWOlspFKxC6pHXBxS6PWctClkmaez3TRacOzpAygsouSbXBxrntf3JcAR+PoJBkn0gnXQ83bDQKMEZQpbg==","signatures":[{"sig":"MEQCIAjym791rRhwCuhnlwlNGeDy3x2FZtaUEzcEJ4Uc8FCsAiBn3zNEOkKf45jupttZIlVZf5S8QQ/EIGgyfhnHaYVTIg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["tasks","LICENSE-MIT"],"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test -v"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.3.26","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.5.0","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.0","unzip":"~0.1.5","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.4.0-rc7":{"name":"grunt-contrib-compress","version":"0.4.0-rc7","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.4.0-rc7","maintainers":[{"name":"anonymous","email":"tyler@sleekcode.net"},{"name":"anonymous","email":"cowboy@rj3.net"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"6a3f33d5ed3581f38e5a7cce0031f435f8d8b0bb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.4.0rc7.tgz","integrity":"sha512-F6bTOL0E9Tnp0Wbiwi8FVlDqNIudpcFq3Z7FZfdCDsnYMgmQPjU5/ejvxUkrvGhNuyeT44LicmWkz3apD5GJhA==","signatures":[{"sig":"MEUCIFv1+RKi7bynWxmSB7MiAmsMwfUe7zY5HnODaneaHnUEAiEA+W8Lgrrnp2scaPQf/tLQn7WZiASWKPPh9sje7/PMRBU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Gruntfile.js","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.1.65","description":"Compress files and folders.","directories":{},"dependencies":{"rimraf":"~2.0.2","archiver":"~0.2.2","grunt-lib-contrib":"~0.5.1"},"devDependencies":{"grunt":"0.4.0rc7","grunt-contrib-clean":"0.4.0rc6","grunt-contrib-jshint":"0.1.1rc6","grunt-contrib-internal":"~0.1.1","grunt-contrib-nodeunit":"0.1.2rc6"}},"0.7.0":{"name":"grunt-contrib-compress","version":"0.7.0","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@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"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"e18b8d2b6255457e675d80f1d1bc6db09f82786e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.7.0.tgz","integrity":"sha512-FKhheMrh+v+jWtZqUKXzc9Uv9fNrcMWZBFM/TNFhBKvK6iltDiSofdr6CIvmJl9PVtANgU/DxGl1G1nCA8qk5Q==","signatures":[{"sig":"MEUCIFLkTsP5bojXm7fOeGK3/q8Sks3SBS+1M11EJKBx2m+YAiEA30MaHNc6yFtr+Js1PNx6mUPJGsPgF/AZNBh+N6eoF1A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["tasks","LICENSE-MIT"],"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test -v"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.3.26","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.6.1","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.0","unzip":"~0.1.5","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.8.0":{"name":"grunt-contrib-compress","version":"0.8.0","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.8.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-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"36f564dcc6512bfada3ceac14e045798e08267aa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.8.0.tgz","integrity":"sha512-0EmxTVn8DVAVzmzGtVlkbYVEgB8ebBuj/kvgu/eHYc1j+8BVC9cfvUJFdmJfiQnSsJQM2Ay9DTo/CZc8nA+oYQ==","signatures":[{"sig":"MEYCIQD0gBoqb0q8eZKVxqljyg9XbOYNeqQWGvOEaEP5qDfJggIhAPVejTatHe2pTi4IRr/OBSWX4FW7IArHc7GyRBw1Myit","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["tasks","LICENSE-MIT"],"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test -v"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.4.3","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.8.0","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.0","unzip":"~0.1.5","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.1.2"},"peerDependencies":{"grunt":"~0.4.0"}},"0.9.0":{"name":"grunt-contrib-compress","version":"0.9.0","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.9.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-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"6c5dc8adeee75fe0816e4122887de9f478f98611","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.9.0.tgz","integrity":"sha512-VrMdVbIsCt58e7ldylrTwlACEH5jJsQekFbc4L8cEBoUAwZPHm8nDaZOldS8HpI0+oi11TkpjnkuBXR0XL2c4Q==","signatures":[{"sig":"MEQCIGixVNaNgLBBMqCIY1SCKRFutCGLl8pzK9X3f/DxYOWzAiAKVOjmc5lOs3VKMB27CGf7F71JB4pWanmgyFgDtcntpw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["tasks","LICENSE-MIT"],"engines":{"node":">= 0.10.0"},"scripts":{"test":"grunt test -v"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.4.3","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.9.0","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.0","unzip":"~0.1.5","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.4.0"},"peerDependencies":{"grunt":"~0.4.0"}},"0.9.1":{"name":"grunt-contrib-compress","version":"0.9.1","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.9.1","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-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"9e962a8108c5bf86970ef4e406726ad9e6b1882d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.9.1.tgz","integrity":"sha512-tV56N9Rd+eBI8Bda1QZMfnZa4ObaqBs2RAWhS3Hlxx+4487ec6MSorZEUPf4T8ET0L+ClArtLKLyrUfbR4RGhQ==","signatures":[{"sig":"MEQCIDiz+YbmRABCMOkDqTWIQNKzPdTKzjoFfqEvOIrQ5JftAiAq+UrHgMS6epy7YZ7JC02tUUHmqY+/XPJg/Li56L2sqw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["tasks","LICENSE-MIT"],"engines":{"node":">= 0.10.0"},"scripts":{"test":"grunt test -v"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.4.3","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.9.0","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.0","unzip":"~0.1.5","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.4.0"},"peerDependencies":{"grunt":"~0.4.0"}},"0.10.0":{"name":"grunt-contrib-compress","version":"0.10.0","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.10.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-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"341b5b9f414390076e807344f017ddbf2702efd2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.10.0.tgz","integrity":"sha512-OqxZ+OunYP1hg6LHwCYm9OHkOwLRUtdlfBps5C+pXkElTgyDTkT0nI5DzCV0vqIfY77vcAAU4fe9//lPb8XiDA==","signatures":[{"sig":"MEUCIQCjHDjuJUcJZ6n3z2zrJYZ0wBXyT1ceNa6DdiN6AKuX/AIgRaL4zIOrFNIEqvi9hmfROvCXB4CQ2tF1/DkF6rLkl/M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["tasks","LICENSE-MIT"],"engines":{"node":">= 0.10.0"},"scripts":{"test":"grunt test -v"},"_npmUser":{"name":"anonymous","email":"tyler@sleekcode.net"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.4.3","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.9.0","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.0","unzip":"~0.1.5","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.4.0"},"peerDependencies":{"grunt":"~0.4.0"}},"0.11.0":{"name":"grunt-contrib-compress","version":"0.11.0","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.11.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-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"9790a29d3a835b5a464a640e4a24d42e20ee4452","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.11.0.tgz","integrity":"sha512-hMBUt6P4M1ItqwIXCJIRQwphUafTL5volRgNqrXPZXveu3dvQw1GUBA5HeqrSiHtrjRBrpdMV7DJj0A05ykWSw==","signatures":[{"sig":"MEUCIQDZ915taORLuu1MZ5pLRj2b/pmks/+2UC7dIpcVJJYS0wIgOSiC4jpLCLbRwsHBaSl4ZNExzOtpEME/iezyB6Wqk28=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["tasks","LICENSE-MIT"],"engines":{"node":">= 0.10.0"},"scripts":{"test":"grunt test -v"},"_npmUser":{"name":"anonymous","email":"vlad@vladikoff.com"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.3.26","description":"Compress files and folders.","directories":{},"dependencies":{"archiver":"~0.11.0","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.0","unzip":"~0.1.5","grunt-contrib-clean":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.4.0"},"peerDependencies":{"grunt":"~0.4.0"}},"0.12.0":{"name":"grunt-contrib-compress","version":"0.12.0","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.12.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://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"7c19f0c4588292ddb21a47bce4d9776f705a79cd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.12.0.tgz","integrity":"sha512-y8ouyXioQwFOYKQ00H8yKPeXrufZ5VRwgqjn0LFzMMu39cPIwEJ8z6ANqnVwfDtzEHaS/TTnXakrboyQby4oCA==","signatures":[{"sig":"MEQCIH1GzwokxAIcpZDRYniLnxTp+rKfVoAm/tTa+wt6C28aAiBWFTXq4c+JZOl6p7sA2Ho7/MX0wn+fY3DEafOr5Uhf9Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["tasks","LICENSE-MIT"],"_shasum":"7c19f0c4588292ddb21a47bce4d9776f705a79cd","engines":{"node":">= 0.10.0"},"gitHead":"e846c42d68b5f58aac469dbadfa1af568d7972ff","scripts":{"test":"grunt test -v"},"_npmUser":{"name":"anonymous","email":"vlad@vladikoff.com"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.4.28","description":"Compress files and folders.","directories":{},"dependencies":{"chalk":"^0.5.1","archiver":"~0.11.0","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.5","unzip":"~0.1.5","grunt-contrib-clean":"~0.6.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.4.1"},"peerDependencies":{"grunt":"~0.4.0"}},"0.13.0":{"name":"grunt-contrib-compress","version":"0.13.0","keywords":["gruntplugin"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"_id":"grunt-contrib-compress@0.13.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://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"c75e95edff7f19fd22b9d9f8bcb1648c73d84d70","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.13.0.tgz","integrity":"sha512-HwhkHTvwABAMODc2A9buioElQ23b5ylQDzan1SwFvPvs6Y/I3ZHReNTtxWQqQKQ66rk0N5JhHj0YsdiD7AOJiQ==","signatures":[{"sig":"MEQCID9nyxzBWynNO+/HgJjyCuHUw+gVRqbodiYnDyW/FT6oAiAN4fhtfPNATC9xcucUbl/kBbYOTpLiWOrgHjTC8jQc3w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["tasks","LICENSE-MIT"],"_shasum":"c75e95edff7f19fd22b9d9f8bcb1648c73d84d70","engines":{"node":">= 0.10.0"},"gitHead":"b17adac3ffd195392d4af28e1089a72bd9862fff","scripts":{"test":"grunt test -v"},"_npmUser":{"name":"anonymous","email":"vlad@vladikoff.com"},"licenses":[{"url":"https://github.com/gruntjs/grunt-contrib-compress/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"1.4.28","appveyor_id":"tiwbi1smm1j8aa5j","description":"Compress files and folders.","directories":{},"dependencies":{"chalk":"^0.5.1","archiver":"~0.13.0","prettysize":"~0.0.2"},"devDependencies":{"tar":"~0.1.17","grunt":"~0.4.5","unzip":"~0.1.5","grunt-contrib-clean":"~0.6.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-internal":"~0.4.2","grunt-contrib-nodeunit":"~0.4.1"},"peerDependencies":{"grunt":"~0.4.0"}},"0.14.0":{"name":"grunt-contrib-compress","version":"0.14.0","keywords":["gruntplugin","compress","zip","tar"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-compress@0.14.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://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress#readme","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"556dae0bed3d8ccd7b4cfcbcc6bbdacdffb2be77","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-0.14.0.tgz","integrity":"sha512-9hq6d6uzgppD8TU8jg6UiRxfGfxO9MIGVYXIqJVvrtGX/zw285ryXdVHF495BnCfFfteOPtNkXrJSZ21U0w8Pw==","signatures":[{"sig":"MEYCIQCK2KegMBLjP26GlwxUxx3OmYUNMKT22l+SIMJuOHpXWQIhAKlNZH8Wb4eU6ffZACx1Eux/5DVYOmr6LHPyUnnv39xv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["tasks"],"_shasum":"556dae0bed3d8ccd7b4cfcbcc6bbdacdffb2be77","engines":{"node":">=0.10.0"},"gitHead":"936dd942858bf0b5532f06833c5f3f32556b8210","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"vlad@vladikoff.com"},"repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"2.14.1","appveyor_id":"tiwbi1smm1j8aa5j","description":"Compress files and folders","directories":{},"_nodeVersion":"0.10.38","dependencies":{"chalk":"^1.0.0","archiver":"^0.16.0","pretty-bytes":"^2.0.1"},"devDependencies":{"tar":"^2.2.1","grunt":"^0.4.5","unzip":"^0.1.5","grunt-cli":"^0.1.13","grunt-contrib-clean":"^0.6.0","grunt-contrib-jshint":"^0.11.0","grunt-contrib-internal":"^0.4.2","grunt-contrib-nodeunit":"^0.4.1"},"peerDependencies":{"grunt":">=0.4.0"}},"1.0.0":{"name":"grunt-contrib-compress","version":"1.0.0","keywords":["gruntplugin","compress","zip","tar"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-compress@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://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"43e5feceef52ef4bad05a7ff8dc27e87d00b89d6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-1.0.0.tgz","integrity":"sha512-ZxHd3XJW82EVLF/wWD4pn/8OI5Z+n9YhsxpD9f+Kd3JpDOwZlwrfb6RQmZqvmyB7jkkNsBIjLjXENOoVwFdOdw==","signatures":[{"sig":"MEYCIQD9testse4E742crtkadMC9o5Ot+ePsBXHsewRphh/LGQIhAOZrVxHibm9aWJio6zKiIyQSKcTcGyOgMLz3/XgQ/ppo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"tasks/compress.js","_from":".","files":["tasks"],"_shasum":"43e5feceef52ef4bad05a7ff8dc27e87d00b89d6","engines":{"node":">=0.10.0"},"gitHead":"bef6a279d7d31dff34cc3807075d2365f36cbde9","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"repository":{"url":"https://github.com/gruntjs/grunt-contrib-compress","type":"git"},"_npmVersion":"2.14.12","appveyor_id":"tiwbi1smm1j8aa5j","description":"Compress files and folders","directories":{},"_nodeVersion":"4.2.6","dependencies":{"chalk":"^1.1.1","archiver":"^0.21.0","pretty-bytes":"^3.0.1"},"devDependencies":{"tar":"^2.2.1","grunt":"^0.4.5","unzip":"^0.1.5","grunt-cli":"^0.1.13","grunt-contrib-clean":"^1.0.0","grunt-contrib-jshint":"^0.11.0","grunt-contrib-internal":"^0.4.2","grunt-contrib-nodeunit":"^0.4.1"},"peerDependencies":{"grunt":">=0.4.5"},"_npmOperationalInternal":{"tmp":"tmp/grunt-contrib-compress-1.0.0.tgz_1455603863690_0.5931575063150376","host":"packages-9-west.internal.npmjs.com"}},"1.1.0":{"name":"grunt-contrib-compress","version":"1.1.0","keywords":["gruntplugin","compress","zip","tar"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-compress@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://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress#readme","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"ad181915d43228f7da787bc857d22ee912bf5597","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-1.1.0.tgz","integrity":"sha512-0BVR00GOFPO24aeHfXUlKYbL9nKv5mQfY0vvIBvGJMCu8uFQXxkM/OF/Gu6ZkNEGkHOTIEy/CtU4WG751HRLYw==","signatures":[{"sig":"MEQCIDX9m4bi7sMRYSINsDJqZfQoaFHgobCbr3FExmM5Gx9VAiBbi6ljvEANtfmqpOFGT/fTquoEPTYcIf7npsjnoPhP1Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"tasks/compress.js","_from":".","files":["tasks"],"_shasum":"ad181915d43228f7da787bc857d22ee912bf5597","engines":{"node":">=0.10.0"},"gitHead":"abcda6075b142445e2b69c077f31ac4c4f334c8d","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"vlad@vladikoff.com"},"repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"2.14.17","appveyor_id":"tiwbi1smm1j8aa5j","description":"Compress files and folders","directories":{},"_nodeVersion":"4.2.3","dependencies":{"chalk":"^1.1.1","archiver":"^0.21.0","pretty-bytes":"^3.0.1","stream-buffers":"^2.1.0"},"devDependencies":{"tar":"^2.2.1","grunt":"^0.4.5","unzip":"^0.1.5","grunt-cli":"^0.1.13","grunt-contrib-copy":"^0.7.0","grunt-contrib-clean":"^1.0.0","grunt-contrib-jshint":"^0.11.0","grunt-contrib-internal":"^0.4.2","grunt-contrib-nodeunit":"^0.4.1"},"_npmOperationalInternal":{"tmp":"tmp/grunt-contrib-compress-1.1.0.tgz_1457128979603_0.7295599463395774","host":"packages-13-west.internal.npmjs.com"}},"1.1.1":{"name":"grunt-contrib-compress","version":"1.1.1","keywords":["gruntplugin","compress","zip","tar"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-compress@1.1.1","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://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress#readme","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"8135f6adf70b27b04e7ddc2092be5fb1598c1454","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-1.1.1.tgz","integrity":"sha512-wQzpamvyFc3LkBJCnEjyA1dQes7Uauiq7OITDGtKqNIH55LRennXEqLfU3npNVfEJzyVaZktwS7Erdv5NHp8Nw==","signatures":[{"sig":"MEUCIQCDcFIG7q8u5VFQcqKBqru8pzpVzLIuaoC6dUfG35NY/gIgcAOGig2RzLcR0gCjGrQLEJlT4xpJlUpIUZeIjEEsDsw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"tasks/compress.js","_from":".","files":["tasks"],"_shasum":"8135f6adf70b27b04e7ddc2092be5fb1598c1454","engines":{"node":">=0.10.0"},"gitHead":"9dffe39a33c467e5e327e89a0b856246381e7b66","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"vlad@vladikoff.com"},"repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"2.14.7","appveyor_id":"tiwbi1smm1j8aa5j","description":"Compress files and folders","directories":{},"_nodeVersion":"4.2.3","dependencies":{"chalk":"^1.1.1","archiver":"^0.21.0","pretty-bytes":"^3.0.1","stream-buffers":"^2.1.0"},"devDependencies":{"tar":"^2.2.1","grunt":"^0.4.5","unzip":"^0.1.5","grunt-cli":"^0.1.13","grunt-contrib-copy":"^0.7.0","grunt-contrib-clean":"^1.0.0","grunt-contrib-jshint":"^0.11.0","grunt-contrib-internal":"^0.4.2","grunt-contrib-nodeunit":"^0.4.1"},"_npmOperationalInternal":{"tmp":"tmp/grunt-contrib-compress-1.1.1.tgz_1457473545295_0.7733194357715547","host":"packages-13-west.internal.npmjs.com"}},"1.2.0":{"name":"grunt-contrib-compress","version":"1.2.0","keywords":["gruntplugin","compress","zip","tar"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-compress@1.2.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://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress#readme","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"6c1212cf773a919190f98acb0bb180758a9abe02","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-1.2.0.tgz","integrity":"sha512-BFHQe8nOU6Rrpw47FFvA6ej/tciSwxbTjIuDqMs0uW+fo22T7y8s1W19Cz00gTbecGJB5Y3MXQmNJWmUCq8+ww==","signatures":[{"sig":"MEQCIHl9neVjFChM/ZxsyU85xT/B1iZaY1u01vHLOqcdinBNAiAKAPTNRIP6Qo5Q7fa581N4iMX+sicv7Nv4iMWA8l/KdQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"tasks/compress.js","_from":".","files":["tasks"],"_shasum":"6c1212cf773a919190f98acb0bb180758a9abe02","engines":{"node":">=0.10.0"},"gitHead":"24e020406bc3701ea0c8ea3f3bbe735433be42d3","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"3.8.3","appveyor_id":"tiwbi1smm1j8aa5j","description":"Compress files and folders","directories":{},"_nodeVersion":"4.4.1","dependencies":{"chalk":"^1.1.1","lodash":"^4.7.0","archiver":"^0.21.0","pretty-bytes":"^3.0.1","stream-buffers":"^2.1.0"},"devDependencies":{"tar":"^2.2.1","grunt":"^0.4.5","unzip":"^0.1.5","grunt-cli":"^1.1.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-clean":"^1.0.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-internal":"^0.4.2","grunt-contrib-nodeunit":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/grunt-contrib-compress-1.2.0.tgz_1459553025151_0.9552407448645681","host":"packages-12-west.internal.npmjs.com"}},"1.3.0":{"name":"grunt-contrib-compress","version":"1.3.0","keywords":["gruntplugin","compress","zip","tar"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-compress@1.3.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://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress#readme","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"5e5c26a200490823c7f77288afd2d7350d95c63d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-1.3.0.tgz","integrity":"sha512-pERsxMY+cORJIK/q448mLkFeBAOBp7BB63tkTxq1fFFIAjUj6QS7thN+TJ20ubK7BoRbYYY1wK8LwHACUpnrQg==","signatures":[{"sig":"MEQCIHcRsQO3of1MjPA9cZmw6tEg7lmF1qim8oE5d0CWOecSAiBbQPxQeqt0DP26Vfd1w8ng3HlLCNCCltIOVmc4ZKoikg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"tasks/compress.js","_from":".","files":["tasks"],"_shasum":"5e5c26a200490823c7f77288afd2d7350d95c63d","engines":{"node":">=0.10.0"},"gitHead":"b0488b44b36a07e22698b25bf2a7190319ecf0eb","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"vlad@vladikoff.com"},"repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"2.15.3","appveyor_id":"tiwbi1smm1j8aa5j","description":"Compress files and folders","directories":{},"_nodeVersion":"4.2.3","dependencies":{"chalk":"^1.1.1","lodash":"^4.7.0","archiver":"^1.0.0","pretty-bytes":"^3.0.1","stream-buffers":"^2.1.0"},"devDependencies":{"tar":"^2.2.1","grunt":"^1.0.0","unzip":"^0.1.5","grunt-contrib-copy":"^1.0.0","grunt-contrib-clean":"^1.0.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-internal":"^1.1.0","grunt-contrib-nodeunit":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/grunt-contrib-compress-1.3.0.tgz_1464112166841_0.6356244964990765","host":"packages-12-west.internal.npmjs.com"}},"1.4.0":{"name":"grunt-contrib-compress","version":"1.4.0","keywords":["gruntplugin","compress","zip","tar"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-compress@1.4.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"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress#readme","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"bdf7e88853724748e153c4ba52173aaef1eb6010","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-1.4.0.tgz","integrity":"sha512-M4wAYeudwLyszvu63knzd9Z8TaErhABUd89D760/mbBwzf/oq/Th4gGLDP/RpSGiXkWOO2L9W5OKXOyjzdpeVQ==","signatures":[{"sig":"MEYCIQDoQOYyVRUSkgt5u3q56iS3GSJdkTfm4mmmEh49XuEGygIhAKXFvqpGtcHd2L+iX+hNAjjy8nsonZpd7UDfQ77EfDiN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"tasks/compress.js","_from":".","files":["tasks"],"_shasum":"bdf7e88853724748e153c4ba52173aaef1eb6010","engines":{"node":">=0.10.0"},"gitHead":"624534416ff80c329178b2d5293dfcf53462cd80","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"3.10.10","appveyor_id":"tiwbi1smm1j8aa5j","description":"Compress files and folders","directories":{},"_nodeVersion":"6.9.4","dependencies":{"chalk":"^1.1.1","iltorb":"^1.0.13","lodash":"^4.7.0","archiver":"^1.0.0","pretty-bytes":"^3.0.1","stream-buffers":"^2.1.0"},"devDependencies":{"tar":"^2.2.1","grunt":"^1.0.0","unzip":"^0.1.5","grunt-contrib-copy":"^1.0.0","grunt-contrib-clean":"^1.0.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-internal":"^1.1.0","grunt-contrib-nodeunit":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/grunt-contrib-compress-1.4.0.tgz_1484771173898_0.6858405950479209","host":"packages-12-west.internal.npmjs.com"}},"1.4.1":{"name":"grunt-contrib-compress","version":"1.4.1","keywords":["gruntplugin","compress","zip","tar"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-compress@1.4.1","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"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress#readme","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"36212e9bbb41e9b41ff6fbe2fc77281c69ab02a0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-1.4.1.tgz","integrity":"sha512-owbdRCQzWwe+mE3dfvd35W7yOIp7KYIwcpkNCsUheB2DbW5NSzuLsAti12SD7uleYVwpdNGX6tGdApQTUrKw0A==","signatures":[{"sig":"MEYCIQDgCXyk6gpbr60QR8jhNNtkt11bgRhMM0BufH+qo7CMFwIhAJm5T4OQBrhX52QsiWilbfxtL93+60izsf61fzp0MgLU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"tasks/compress.js","_from":".","files":["tasks"],"_shasum":"36212e9bbb41e9b41ff6fbe2fc77281c69ab02a0","engines":{"node":">=0.10.0"},"gitHead":"21a55fba21158d02aa004f0d47d904039bb1ee8f","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"3.10.10","appveyor_id":"tiwbi1smm1j8aa5j","description":"Compress files and folders","directories":{},"_nodeVersion":"6.9.4","dependencies":{"chalk":"^1.1.1","iltorb":"^1.0.13","lodash":"^4.7.0","archiver":"^1.0.0","pretty-bytes":"^3.0.1","stream-buffers":"^2.1.0"},"devDependencies":{"tar":"^2.2.1","grunt":"^1.0.0","unzip":"^0.1.5","grunt-contrib-copy":"^1.0.0","grunt-contrib-clean":"^1.0.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-internal":"^1.1.0","grunt-contrib-nodeunit":"^1.0.0"},"optionalDependencies":{"iltorb":"^1.0.13"},"_npmOperationalInternal":{"tmp":"tmp/grunt-contrib-compress-1.4.1.tgz_1484863806824_0.10483125550672412","host":"packages-18-east.internal.npmjs.com"}},"1.4.2":{"name":"grunt-contrib-compress","version":"1.4.2","keywords":["gruntplugin","compress","zip","tar"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-compress@1.4.2","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"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress#readme","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"2aefc6971e76afc1ba04999386e5e74d84c04334","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-1.4.2.tgz","integrity":"sha512-dGcNNwNXJazf/OuQfresHHL5dtahX5uQdQXSLN2+n6K0EaBsEFGXei1y5wvl71eqOL5wqpFEUFln8hrc44nvZA==","signatures":[{"sig":"MEYCIQDDskhQzRSPBfjYF/kyU3W9ch6YpR4p7u4/utfQKpOaUQIhAK/dMWsPdAlSszlV7QXh8byHH5Ny171bbl/YN/AungXt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"tasks/compress.js","_from":".","files":["tasks"],"_shasum":"2aefc6971e76afc1ba04999386e5e74d84c04334","engines":{"node":">=0.10.0"},"gitHead":"7b4ce70b5f856406155b78f44b8e15cbc5418e95","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"3.10.10","appveyor_id":"tiwbi1smm1j8aa5j","description":"Compress files and folders","directories":{},"_nodeVersion":"6.10.3","dependencies":{"chalk":"^1.1.1","iltorb":"^1.0.13","lodash":"^4.7.0","archiver":"^1.3.0","pretty-bytes":"^3.0.1","stream-buffers":"^2.1.0"},"devDependencies":{"tar":"^2.2.1","grunt":"^1.0.0","unzip":"^0.1.5","grunt-contrib-copy":"^1.0.0","grunt-contrib-clean":"^1.0.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-internal":"^1.1.0","grunt-contrib-nodeunit":"^1.0.0"},"optionalDependencies":{"iltorb":"^1.0.13"},"_npmOperationalInternal":{"tmp":"tmp/grunt-contrib-compress-1.4.2.tgz_1495230035824_0.5196215102914721","host":"s3://npm-registry-packages"}},"1.4.3":{"name":"grunt-contrib-compress","version":"1.4.3","keywords":["gruntplugin","compress","zip","tar"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-compress@1.4.3","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"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress#readme","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"01ceffb9c637f52e7081f463750983d0a3b0fa73","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-1.4.3.tgz","integrity":"sha512-w1V++gY9mHJ5qaSEBZnSn2zQ1y/O5t1tYqjdDPpgH8sePcAjrGF7AKwgX1RgEqo6CebiaFBRHF6AvPF8xqbSdg==","signatures":[{"sig":"MEUCIGKVo3iJQn6VLtWd/iWgs8gKhVrl0PdASMPW9Emk6y9wAiEA5ukXV+4cx3Di2ahsmVAiuMFLR3HA46obM7vBK4cepz0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"tasks/compress.js","_from":".","files":["tasks"],"_shasum":"01ceffb9c637f52e7081f463750983d0a3b0fa73","engines":{"node":">=0.10.0"},"gitHead":"3c41adf795d9cbe867f49ef1c2d6027039a98019","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"3.10.10","appveyor_id":"tiwbi1smm1j8aa5j","description":"Compress files and folders","directories":{},"_nodeVersion":"6.10.3","dependencies":{"chalk":"^1.1.1","iltorb":"^1.0.13","lodash":"^4.7.0","archiver":"^1.3.0","pretty-bytes":"^4.0.2","stream-buffers":"^2.1.0"},"devDependencies":{"tar":"^2.2.1","grunt":"^1.0.0","unzip":"^0.1.5","grunt-contrib-copy":"^1.0.0","grunt-contrib-clean":"^1.0.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-internal":"^1.1.0","grunt-contrib-nodeunit":"^1.0.0"},"optionalDependencies":{"iltorb":"^1.0.13"},"_npmOperationalInternal":{"tmp":"tmp/grunt-contrib-compress-1.4.3.tgz_1495278723311_0.18447509710676968","host":"s3://npm-registry-packages"}},"1.5.0":{"name":"grunt-contrib-compress","version":"1.5.0","keywords":["gruntplugin","compress","zip","tar"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-compress@1.5.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"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress#readme","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"ba5f80e22acf192897ce43cb60250cab2cb1f09b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-1.5.0.tgz","fileCount":5,"integrity":"sha512-RcCyetnvTJ7jvnDCSm05wOndAd00HWZTHeVGDVVmCM+K/PEivL0yx8vKyi8uzy0492l2dJgtzR0Ucid7roKg6A==","signatures":[{"sig":"MEUCIDB7k5vBuFynwGiFFlRFnxxAWioG+j0+bC02CVq8IxdGAiEAyDtdFEOJ3YAJC+7GN4Ug2qeDZueYYzUNoaBQRXaV6+M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25558,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcwIOzCRA9TVsSAnZWagAA/9oQAJy9Sv/zlngzL8YBTkcQ\nOfzjOOJWEkYP1jGuNnUKphOqLJG3CT0EBJfWBFi97YKQAR3kVn+I021wO2xN\nmHRftFh3Khejjt5X+EZVld51K2V2IU3klM6HhRn5VlgRTJnao49/xxr5CTgy\nFD5TWckTcVg/87D38J8jyosk7Ww6bUFhggrdU1HsJXp1YUfpYOuwPhQmh4eX\n2bUIK9t3tK2h402FjTf3u3l99Eofm6rmWnbMPcol7PBynfrwbepynrqt7b5X\n0Ah0knscHzpapKSu6Htolj7SGW2liW6Jd/sSVa4xzNHdp/8oyIfqtL0G0XiA\nx/TMcRh9kimze9pHGMQaEl41/z7zFU7pTlM3d7tJt5Mzh5R2oqge73xVu6rI\nnHbcRYsoYxE/WwveNPkqWjKlkj8V/ftSBcxfB0/HDkpcOcUKKkDI6lUCZpY0\nK3XWm5sAkJVfOsa7/BYeC85sroLn+LurBCGiWAFp6z5qMeGcKUbT23fUKNcd\n4bjnlMqA4rJMI7VEGt0jD8cSSilj2maMV6XwRX7SrNg19OhJdX4oWKAQwIAV\n9MYxh/2NaQgXp8OSWXxF5Zi7Rpi8igMB5as9R8fDz2Hc9XdUMHLt67O5DNaL\n/Mtf7dRBSphfh4RQGBsRQYP6V2GcqFCYUd+VuJGEcjPi2/J/gpGOcyRcZrDs\njRrs\r\n=Z5SS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"tasks/compress.js","engines":{"node":">=4.0"},"gitHead":"a8998eca6d717266f9c471ff5938944629bc8471","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"vlad@vladikoff.com"},"repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"6.9.0","appveyor_id":"tiwbi1smm1j8aa5j","description":"Compress files and folders","directories":{},"_nodeVersion":"10.15.3","dependencies":{"chalk":"^1.1.1","iltorb":"^1.3.10","lodash":"^4.7.0","archiver":"^1.3.0","pretty-bytes":"^4.0.2","stream-buffers":"^2.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tar":"^4.4.8","grunt":"^1.0.0","unzip":"^0.1.5","grunt-contrib-copy":"^1.0.0","grunt-contrib-clean":"^1.0.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-internal":"^1.1.0","grunt-contrib-nodeunit":"^1.0.0"},"optionalDependencies":{"iltorb":"^1.3.10"},"_npmOperationalInternal":{"tmp":"tmp/grunt-contrib-compress_1.5.0_1556120498786_0.7586451873799247","host":"s3://npm-registry-packages"}},"1.6.0":{"name":"grunt-contrib-compress","version":"1.6.0","keywords":["gruntplugin","compress","zip","tar"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-compress@1.6.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"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress#readme","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"9708885c738a97a12c5f3072dc97dbc31b4121db","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-1.6.0.tgz","fileCount":5,"integrity":"sha512-wIFuvk+/Ny4E+OgEfJYFZgoH7KcU/nnNFbYasB7gRvrcRyW6vmTp3Pj8a4rFSR3tbFMjrGvTUszdO6fgLajgZQ==","signatures":[{"sig":"MEUCIQD27ra0BwzDhv9ITiOsMT1k9aV0tWGIgqKolmez4r/ThQIgb+jdkoq6RCh+yNittXypohiVVRr8SrmdgVCEHT6yT5M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25784,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdrcAgCRA9TVsSAnZWagAA0DYP/AiZAa0cVqLZZqppvSBD\npF54ljL2HHtihbQYbYzpKN9PfPFwGhFgHBpip4+R9LNSRhAK/9f41p5sZzpW\npMWlN1VcyUZKOINYtfiJ8/WQ61GwB4DiI9w8jr48KixvaQy+0I3TxE7nKMKb\ntPz8EZ5AblcbPDZaoeXaGXCdqWCUJ5767B3SblicSF4zkkXbc/UsGw/s2oJl\ndSzC9hZK1tzSQHJwLKfcHzXpwbhCDhqfYJrQ3t9EHmLfrmpqJN11zfC9/dPw\nfnO9jdf3U1uDl7Eo/a02DOZ8jR9Uie8YSarvSIBMpvAS6R08v8u5wWzZd4I4\n6hal73hzl4BM0WB/Ppa7+bjPYosXroqJC6Jcdb9bLYeXhdDFxd4JTxbTDZk7\nKIbSfniNI3IFAKorHHkoawMgnFQjVd30rOlzritFJKwIWdejRFagpYpCddQ2\nWoyqfEY6b2aLv0bNy3F7ZaWeYYxaEm56Ubi4x4QxFDfGRIPOxGsgzG8t79mK\nKqySYAhUWeg/DlHMSaV8e6YhT1YPMRTSaxw367kMNNP9tshuPeeZnglnFDOC\n9sMrFuZvy8KRgcL4ownp/cjosnQmMGDrNS4Y2ek/Jb0Z0DCrt/XKwWw9pSfd\n2KcyCPIuIBRGAzu6vnunxwOINesPoBrbimAUrfnsebiuAGG5OiomlV/TQ2hL\np6+8\r\n=9VFc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"tasks/compress.js","engines":{"node":">=4.0"},"gitHead":"06038867f8bbca9536ba76f21fb8df1409024c00","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"vlad@vladikoff.com"},"repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"6.9.0","appveyor_id":"tiwbi1smm1j8aa5j","description":"Compress files and folders","directories":{},"_nodeVersion":"10.16.3","dependencies":{"chalk":"^1.1.1","iltorb":"^2.4.3","lodash":"^4.7.0","archiver":"^1.3.0","pretty-bytes":"^4.0.2","stream-buffers":"^2.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tar":"^4.4.8","grunt":"^1.0.0","unzip":"^0.1.5","grunt-contrib-copy":"^1.0.0","grunt-contrib-clean":"^1.0.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-internal":"^4.0.1","grunt-contrib-nodeunit":"^1.0.0"},"optionalDependencies":{"iltorb":"^2.4.3"},"_npmOperationalInternal":{"tmp":"tmp/grunt-contrib-compress_1.6.0_1571667999159_0.09793885672651825","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"grunt-contrib-compress","version":"2.0.0","keywords":["gruntplugin","compress","zip","tar"],"author":{"url":"http://gruntjs.com/","name":"Grunt Team"},"license":"MIT","_id":"grunt-contrib-compress@2.0.0","maintainers":[{"name":"anonymous","email":"cowboy@rj3.net"},{"name":"anonymous","email":"james_account@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"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"},{"url":"https://vladfilippov.com/","name":"Vlad Filippov"}],"homepage":"https://github.com/gruntjs/grunt-contrib-compress#readme","bugs":{"url":"https://github.com/gruntjs/grunt-contrib-compress/issues"},"dist":{"shasum":"c003a1dc5e01c42a244ddb189c01a4396208a335","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/grunt-contrib-compress/-/grunt-contrib-compress-2.0.0.tgz","fileCount":5,"integrity":"sha512-r/dAGx4qG+rmBFF4lb/hTktW2huGMGxkSLf9msh3PPtq0+cdQRQerZJ30UKevX3BLQsohwLzO0p1z/LrH6aKXQ==","signatures":[{"sig":"MEUCIHV3OL/0vXTVdHzyrpm4ix5y67b/xBkQ+kosY2az/aOJAiEAnDSNmoRuAIvz8dZNWVHHcX+iJY/UZcXzzkwpEm1WD6k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25582,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf1RcnCRA9TVsSAnZWagAAIHUP/itOnJUKnc7Qo2GzjLa+\nVeDBEMEis0vIID6RCLA9877XDYmUZz9/DpzrfE3f2Qz0CNtEWf12raHX0wmz\n8L9E0nYob/8IoWp7aLx0xVlSuGR3JjW87DVI9mSBtr+zTFgkcRKwyDLbICut\nUmzvT/4ASH/ud99Z1bhL4WmhsTjFW4ZJZ/Q6juFV37bp73lXA/XDVO7fJ0Wg\nCAWUt9iLwpIBDBE1VzWuEo3zzE9CJrPl5QI2KY3szcSKg02n4RcJwWvg7Yrm\nUD/peMnzjPI7JS2J0g4D2PcyFuv1hu8FpDm3GIswE7Cq4bjvFj02fPy0E8Y+\nlZAbEv4MTKJPhXSx8K2+jEiueElqe5QcTRiPZIXqQ14Qt5/rGfvyszss6S7H\nDn+hb0+JCd0xei3OHefrIIs2Ln67OFe3LRkXcvcDTWu2rkI3znkyYwouyabm\nwqvTRk9wwzkcZ9aegCoH396uuXDCp4cAj5Q4f6IxUdLSMe0AFEO0KKLuHXzR\nF9MAvlo+erA5wHC4eivJyB4Q908MiJokgcOIQv6aqJISNMFBhJpJwYF8CtfM\nBA4vX/TsrAVLox1lhBDRlzC3QphX+vx9P6Ghy0dYLfVvksGUNOD5tlTEl/Zy\nTdiVcHnSlcCtG9pxvGUl3ALiZIRRIM5d8v+R4KvVxVaxX+z8eNCKeFY1ygef\nwEZs\r\n=qy2J\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"modulePathIgnorePatterns":["tmp","test/fixtures"]},"main":"tasks/compress.js","engines":{"node":">=10.16"},"gitHead":"bd9fc8e20bd1b2e844467de86e12f45847a069a9","scripts":{"test":"grunt test"},"_npmUser":{"name":"anonymous","email":"vlad@vladikoff.com"},"repository":{"url":"git+https://github.com/gruntjs/grunt-contrib-compress.git","type":"git"},"_npmVersion":"6.14.9","appveyor_id":"tiwbi1smm1j8aa5j","description":"Compress files and folders","directories":{},"_nodeVersion":"12.18.2","dependencies":{"chalk":"^4.1.0","lodash":"^4.17.20","adm-zip":"^0.5.1","archiver":"^5.1.0","pretty-bytes":"^5.4.1","stream-buffers":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"tar":"^6.0.5","jest":"^26.6.3","grunt":"^1.3.0","grunt-run":"^0.8.1","grunt-contrib-copy":"^1.0.0","grunt-contrib-clean":"^2.0.0","grunt-contrib-jshint":"^3.0.0","grunt-contrib-internal":"^5.0.1"},"_npmOperationalInternal":{"tmp":"tmp/grunt-contrib-compress_2.0.0_1607800615164_0.24174701754995276","host":"s3://npm-registry-packages"}}},"name":"grunt-contrib-compress","time":{"created":"2012-09-07T23:24:58.748Z","modified":"2025-10-17T09:30:28.642Z","0.2.0":"2012-09-07T23:25:00.288Z","0.2.1":"2012-09-11T11:57:10.167Z","0.2.2":"2012-09-18T14:34:07.528Z","0.3.0":"2012-09-24T04:48:56.199Z","0.3.1":"2012-10-10T04:53:31.715Z","0.3.2":"2012-10-12T13:46:14.835Z","0.3.3":"2012-12-05T14:44:19.374Z","0.4.0rc7":"2013-01-23T15:28:26.267Z","0.4.0":"2013-02-18T17:24:14.543Z","0.4.1":"2013-02-22T14:14:14.693Z","0.4.2":"2013-03-13T19:03:24.033Z","0.4.3":"2013-03-14T20:03:02.911Z","0.4.4":"2013-03-19T17:18:32.163Z","0.4.5":"2013-03-21T00:41:22.831Z","0.4.6":"2013-03-25T10:45:45.181Z","0.4.7":"2013-04-01T17:51:27.816Z","0.4.8":"2013-04-08T01:52:57.927Z","0.4.9":"2013-04-09T20:57:40.705Z","0.4.10":"2013-04-15T15:13:19.836Z","0.5.0":"2013-04-23T16:19:40.878Z","0.5.1":"2013-05-28T19:44:17.191Z","0.5.2":"2013-06-03T19:15:22.854Z","0.5.3":"2013-11-28T01:19:20.138Z","0.6.0":"2014-01-13T00:05:38.341Z","0.6.1":"2014-02-06T13:55:09.358Z","0.4.0-rc7":"2014-02-06T13:55:09.358Z","0.7.0":"2014-02-17T19:40:14.434Z","0.8.0":"2014-04-09T04:53:26.473Z","0.9.0":"2014-05-20T04:09:40.457Z","0.9.1":"2014-05-20T04:17:44.641Z","0.10.0":"2014-07-14T12:40:38.316Z","0.11.0":"2014-08-26T18:06:46.199Z","0.12.0":"2014-09-23T20:44:02.653Z","0.13.0":"2014-12-25T17:50:57.788Z","0.14.0":"2015-10-23T17:17:50.916Z","1.0.0":"2016-02-16T06:24:25.797Z","1.1.0":"2016-03-04T22:03:02.572Z","1.1.1":"2016-03-08T21:45:50.146Z","1.2.0":"2016-04-01T23:23:45.603Z","1.3.0":"2016-05-24T17:49:29.322Z","1.4.0":"2017-01-18T20:26:15.870Z","1.4.1":"2017-01-19T22:10:07.482Z","1.4.2":"2017-05-19T21:40:36.961Z","1.4.3":"2017-05-20T11:12:04.254Z","1.5.0":"2019-04-24T15:41:38.929Z","1.6.0":"2019-10-21T14:26:39.326Z","2.0.0":"2020-12-12T19:16:55.348Z"},"contributors":[{"url":"http://christalkington.com/","name":"Chris Talkington"},{"url":"http://goingslowly.com/","name":"Tyler Kellen"},{"url":"http://twitter.com/shamakry","name":"Kyle Robinson Young"},{"url":"http://blog.davglass.com/","name":"Dav Glass"},{"url":"https://vladfilippov.com/","name":"Vlad Filippov"}],"readmeFilename":"README.md","homepage":"https://github.com/gruntjs/grunt-contrib-compress#readme"}