{"maintainers":[{"name":"stnvh","email":"stanhutcheon@me.com"}],"keywords":["gulpplugin","tinypng","image","img","picture","photo","minify","minifier","compress","png"],"dist-tags":{"latest":"1.2.1"},"author":{"name":"Stan Hutcheon","email":"stanutcheon@me.com","url":"https://github.com/stnvh"},"description":"TinyPNG API wrapper for compressing PNG & JPG images","readme":"[![Version](https://img.shields.io/npm/v/gulp-tinypng-compress.svg)][npm]\n[![Downloaded](https://img.shields.io/npm/dm/gulp-tinypng-compress.svg)][npm]\n[![Build](https://img.shields.io/travis/stnvh/gulp-tinypng-compress.svg)][travis]\n\n# gulp-tinypng-compress\n\n> [TinyPNG](https://tinypng.com) API wrapper for compressing PNG & JPG images\n\nAn actively maintained & developed fork of [gulp-tinypng](https://github.com/creativeaura/gulp-tinypng).\n\n*Main differences from gulp-tinypng:*\n- File signature checking (to minimise unnecessary API calls, optional)\n- No temporary files/folders are created on compressed image download - fed straight from tinypng to the pipe\n- Maintained with the intention of standardising the tinypng featureset across gulp & grunt (and others too!)\n\n## Install\n*Requires node `0.10.x` or above*\n\nInstall with [npm](https://npmjs.org/package/gulp-tinypng-compress) - In your project folder, run:\n\n```\nnpm install gulp-tinypng-compress\n```\n\nTo run tests:\n\n```\nnpm test\n```\n\n## Example\n\n```js\nvar gulp = require('gulp');\nvar tinypng = require('gulp-tinypng-compress');\n\ngulp.task('tinypng', function () {\n\tgulp.src('images/src/**/*.{png,jpg,jpeg}')\n\t\t.pipe(tinypng({\n\t\t\tkey: 'API_KEY',\n\t\t\tsigFile: 'images/.tinypng-sigs',\n\t\t\tlog: true\n\t\t}))\n\t\t.pipe(gulp.dest('images'));\n});\n```\n\n## API\n\n### tinypng([options])\n\nReturns Stream containing compressed images\n\n#### options\nType: `Object` / `String`\nDefault: `false`\n\nSets options described below from its properties. If type is not object, string presumed (the API key)\n\n#### options.key\nType: `String`\nDefault: `''`\n\nYour TinyPNG API key to use for requests\n\n#### options.sigFile\nType: `String`\nDefault: `''`\n\nIf set to a filename, it will compare existing source file md5 signatures against those found in the file's json data. When the signatures match, the file is skipped from being minified again, allowing you to better stay within your API request limits. When an image is minified, the md5 signature is determined from the unminified source image and written to the file at options.sigFile (a suggested location would be somewhere under your source control).\n\nSignatures are based off the unminified source image, so that when the source changes it will be re-minified and re-written to the destination file.\n\n#### options.sameDest\nType: `Boolean`\nDefault `false`\n\nIf your source is the same as your destination (images are written over themselves), and you want to use the signature checking feature, set this to true\n\n>**Note:** If your source and destination are the same, it's recommended you use this, and `options.sigFile`, as it prevents you from continually uploading already compressed images each time you run the task\n\n#### options.summarize/summarise\nType: `Boolean`\nDefault: `false`\n\nOutputs statistics once all images have been handled.\n```bash\n[09:47:43] gulp-tinypng-compress Skipped: 0 images, Compressed: 1 image, Savings: 3.98 KB (ratio: 0.4109)\n```\n\n#### options.log\nType: `Boolean`\nDefault: `false`\n\nSet to true to log errors & messages to the console. Errors are dispatched via events anyway, so plugins like `gulp-plumber` can handle these for you.\n\n#### options.parallel\nType: `Boolean`\nDefault: `true`\n\nEnables concurrent uploads to the TinyPNG server to speed up total compression time.\n\n<sub>(thanks [HugoHeneault](https://github.com/HugoHeneault) for this feature suggestion)</sub>\n\n#### options.parallelMax\nType: `Integer`\nDefault: `5`\n\nThe amount of concurrent uploads allowed at one time, increase if you/your request limits can handle it - very easy to max out your monthly requests, use with caution!\n\n#### options.force\nType: `Boolean` / `String`\nDefault: `false`\n\nForce compress images regardless of signature. Value can either be `true` to force all images, or a glob pattern string to match against the filename(s).\n\nCan also be performed from the **command line**:\n```bash\n$ gulp png --force 'icon-*.png'\n```\n\nThis feature was added as it's impossible to know where the files are being written to at this point in the stream, unless the directory is directly passed into the config (pretty ugly). So the option was added to force certain (or all) files to be compressed when required.\n\n#### options.ignore\nType: `Boolean` / `String`\nDefault: `false`\n\nSame as `options.force` except ignores files if the glob is matched\n\n`--ignore` flag on the command line\n\n### Deprecated/non-functional options\n\n**options.checkSigs** - Removed in favor of `options.sigFile`\n\n\n## License\n\nMIT © Stan Hutcheon - Bigfork Ltd.\n\n**Original license:**\n\n>MIT © [Gaurav Jassal](http://gaurav.jassal.me)\n\n[npm]: https://www.npmjs.com/package/gulp-tinypng-compress\n[travis]: https://travis-ci.org/stnvh/gulp-tinypng-compress\n","repository":{"type":"git","url":"git+https://github.com/stnvh/gulp-tinypng-compress.git"},"users":{"nguyenmanh1507":true,"irj":true,"yuaptx4869":true,"jgeorgea":true,"rubiadias":true,"denisdov":true,"snowdream":true,"ackolla":true,"agplan":true},"bugs":{"url":"https://github.com/stnvh/gulp-tinypng-compress/issues"},"license":"MIT","versions":{"1.1.0":{"name":"gulp-tinypng-compress","version":"1.1.0","description":"TinyPNG API wrapper for compressing PNG & JPG images","main":"index.js","repository":{"type":"git","url":"https://github.com/stnvh/gulp-tinypng-compress"},"scripts":{"test":"mocha"},"files":["index.js"],"author":{"name":"Stan Hutcheon","email":"stanutcheon@me.com","url":"https://github.com/stnvh"},"contributors":[{"name":"Gaurav Jassal","email":"gaurav@jassal.me","url":"http://gaurav.jassal.me"}],"keywords":["gulpplugin","tinypng","image","img","picture","photo","minify","minifier","compress","png"],"engines":{"node":">=0.10.0"},"license":"MIT","dependencies":{"gulp-util":"~2.2.14","request":"~2.31.0","vinyl":"~0.2.3","through2":"~0.4.1"},"devDependencies":{"mocha":"*"},"gitHead":"f503ff7f93663463f74c229483cc9e8521e03aaa","bugs":{"url":"https://github.com/stnvh/gulp-tinypng-compress/issues"},"homepage":"https://github.com/stnvh/gulp-tinypng-compress","_id":"gulp-tinypng-compress@1.1.0","_shasum":"23d8c4639bc87fb44548c9c042752df4ecf2cc48","_from":".","_npmVersion":"2.7.6","_nodeVersion":"0.10.38","_npmUser":{"name":"stnvh","email":"stanhutcheon@me.com"},"dist":{"shasum":"23d8c4639bc87fb44548c9c042752df4ecf2cc48","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-tinypng-compress/-/gulp-tinypng-compress-1.1.0.tgz"},"maintainers":[{"name":"stnvh","email":"stanhutcheon@me.com"}],"deprecated":"Use a newer version, this had publishing issues","directories":{}},"1.1.1":{"name":"gulp-tinypng-compress","version":"1.1.1","description":"TinyPNG API wrapper for compressing PNG & JPG images","main":"index.js","repository":{"type":"git","url":"https://github.com/stnvh/gulp-tinypng-compress"},"scripts":{"test":"mocha"},"files":["index.js"],"author":{"name":"Stan Hutcheon","email":"stanutcheon@me.com","url":"https://github.com/stnvh"},"contributors":[{"name":"Gaurav Jassal","email":"gaurav@jassal.me","url":"http://gaurav.jassal.me"}],"keywords":["gulpplugin","tinypng","image","img","picture","photo","minify","minifier","compress","png"],"engines":{"node":">=0.10.0"},"license":"MIT","dependencies":{"gulp-util":"~3.0.0","request":"~2.55.0","through2":"~0.6.0"},"devDependencies":{"mocha":"*"},"gitHead":"0a248253a629d68e100350535c46b5684dc74d65","bugs":{"url":"https://github.com/stnvh/gulp-tinypng-compress/issues"},"homepage":"https://github.com/stnvh/gulp-tinypng-compress","_id":"gulp-tinypng-compress@1.1.1","_shasum":"990e9c77379cc106340c72a757b871046bb9d63c","_from":".","_npmVersion":"2.7.6","_nodeVersion":"0.10.38","_npmUser":{"name":"stnvh","email":"stanhutcheon@me.com"},"dist":{"shasum":"990e9c77379cc106340c72a757b871046bb9d63c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-tinypng-compress/-/gulp-tinypng-compress-1.1.1.tgz"},"maintainers":[{"name":"stnvh","email":"stanhutcheon@me.com"}],"directories":{}},"1.1.2":{"name":"gulp-tinypng-compress","version":"1.1.2","description":"TinyPNG API wrapper for compressing PNG & JPG images","main":"index.js","repository":{"type":"git","url":"https://github.com/stnvh/gulp-tinypng-compress"},"scripts":{"test":"mocha"},"files":["index.js"],"author":{"name":"Stan Hutcheon","email":"stanutcheon@me.com","url":"https://github.com/stnvh"},"contributors":[{"name":"Gaurav Jassal","email":"gaurav@jassal.me","url":"http://gaurav.jassal.me"}],"keywords":["gulpplugin","tinypng","image","img","picture","photo","minify","minifier","compress","png"],"engines":{"node":">=0.10.0"},"license":"MIT","dependencies":{"gulp-util":"~3.0.0","request":"~2.55.0","through2":"~0.6.0"},"devDependencies":{"mocha":"*"},"gitHead":"e4d9895e8a87f1322e55a447ca813d0544f3357f","bugs":{"url":"https://github.com/stnvh/gulp-tinypng-compress/issues"},"homepage":"https://github.com/stnvh/gulp-tinypng-compress","_id":"gulp-tinypng-compress@1.1.2","_shasum":"c940fc50fac084b64e2ced77c0594938c17ab248","_from":".","_npmVersion":"2.7.6","_nodeVersion":"0.10.38","_npmUser":{"name":"stnvh","email":"stanhutcheon@me.com"},"dist":{"shasum":"c940fc50fac084b64e2ced77c0594938c17ab248","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-tinypng-compress/-/gulp-tinypng-compress-1.1.2.tgz"},"maintainers":[{"name":"stnvh","email":"stanhutcheon@me.com"}],"directories":{}},"1.1.3":{"name":"gulp-tinypng-compress","version":"1.1.3","description":"TinyPNG API wrapper for compressing PNG & JPG images","main":"index.js","repository":{"type":"git","url":"https://github.com/stnvh/gulp-tinypng-compress"},"scripts":{"test":"mocha"},"author":{"name":"Stan Hutcheon","email":"stanutcheon@me.com","url":"https://github.com/stnvh"},"contributors":[{"name":"Gaurav Jassal","email":"gaurav@jassal.me","url":"http://gaurav.jassal.me"}],"keywords":["gulpplugin","tinypng","image","img","picture","photo","minify","minifier","compress","png"],"engines":{"node":">=0.10.0"},"license":"MIT","dependencies":{"gulp-util":"~3.0.0","request":"~2.55.0","through2":"~0.6.0","minimatch":"^2.0.0"},"devDependencies":{"mocha":"*"},"gitHead":"7025667660eae2584b17b80fb393a51841c2f244","bugs":{"url":"https://github.com/stnvh/gulp-tinypng-compress/issues"},"homepage":"https://github.com/stnvh/gulp-tinypng-compress","_id":"gulp-tinypng-compress@1.1.3","_shasum":"45a543ba4e167e1bbf82fd92fde3db89af2776a6","_from":".","_npmVersion":"2.7.6","_nodeVersion":"0.10.38","_npmUser":{"name":"stnvh","email":"stanhutcheon@me.com"},"dist":{"shasum":"45a543ba4e167e1bbf82fd92fde3db89af2776a6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-tinypng-compress/-/gulp-tinypng-compress-1.1.3.tgz"},"maintainers":[{"name":"stnvh","email":"stanhutcheon@me.com"}],"directories":{}},"1.1.4":{"name":"gulp-tinypng-compress","version":"1.1.4","description":"TinyPNG API wrapper for compressing PNG & JPG images","main":"index.js","repository":{"type":"git","url":"https://github.com/stnvh/gulp-tinypng-compress"},"scripts":{"test":"mocha"},"author":{"name":"Stan Hutcheon","email":"stanutcheon@me.com","url":"https://github.com/stnvh"},"contributors":[{"name":"Gaurav Jassal","email":"gaurav@jassal.me","url":"http://gaurav.jassal.me"}],"keywords":["gulpplugin","tinypng","image","img","picture","photo","minify","minifier","compress","png"],"engines":{"node":">=0.10.0"},"license":"MIT","dependencies":{"gulp-util":"~3.0.0","request":"~2.55.0","through2":"~0.6.0","minimatch":"^2.0.0"},"devDependencies":{"mocha":"*"},"gitHead":"843a283217913e8071110ddfca5bde0d5bb0e96f","bugs":{"url":"https://github.com/stnvh/gulp-tinypng-compress/issues"},"homepage":"https://github.com/stnvh/gulp-tinypng-compress","_id":"gulp-tinypng-compress@1.1.4","_shasum":"635e985a2ab9b052d9c7a58717e2a1d2e6fd2995","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"stnvh","email":"stanhutcheon@me.com"},"dist":{"shasum":"635e985a2ab9b052d9c7a58717e2a1d2e6fd2995","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-tinypng-compress/-/gulp-tinypng-compress-1.1.4.tgz"},"maintainers":[{"name":"stnvh","email":"stanhutcheon@me.com"}],"directories":{}},"1.1.5":{"name":"gulp-tinypng-compress","version":"1.1.5","description":"TinyPNG API wrapper for compressing PNG & JPG images","main":"index.js","repository":{"type":"git","url":"https://github.com/stnvh/gulp-tinypng-compress"},"scripts":{"test":"mocha"},"files":["index.js","gulpfile.js","package.json","test/"],"author":{"name":"Stan Hutcheon","email":"stanutcheon@me.com","url":"https://github.com/stnvh"},"contributors":[{"name":"Gaurav Jassal","email":"gaurav@jassal.me","url":"http://gaurav.jassal.me"}],"keywords":["gulpplugin","tinypng","image","img","picture","photo","minify","minifier","compress","png"],"engines":{"node":">=0.10.0"},"license":"MIT","dependencies":{"gulp-util":"~3.0.0","request":"~2.55.0","through2":"~0.6.0","minimatch":"^2.0.0"},"devDependencies":{"chai":"^2.0.0","gulp":"^3.0.0","mocha":"^2.0.0"},"gitHead":"c6a254849676c61380e12efefaaa3fd700c62679","bugs":{"url":"https://github.com/stnvh/gulp-tinypng-compress/issues"},"homepage":"https://github.com/stnvh/gulp-tinypng-compress","_id":"gulp-tinypng-compress@1.1.5","_shasum":"eadbc0d0336271b8053a5c783bacc05efc71b163","_from":".","_npmVersion":"2.7.6","_nodeVersion":"0.10.38","_npmUser":{"name":"stnvh","email":"stanhutcheon@me.com"},"dist":{"shasum":"eadbc0d0336271b8053a5c783bacc05efc71b163","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-tinypng-compress/-/gulp-tinypng-compress-1.1.5.tgz"},"maintainers":[{"name":"stnvh","email":"stanhutcheon@me.com"}],"directories":{}},"1.1.6":{"name":"gulp-tinypng-compress","version":"1.1.6","description":"TinyPNG API wrapper for compressing PNG & JPG images","main":"index.js","repository":{"type":"git","url":"https://github.com/stnvh/gulp-tinypng-compress"},"scripts":{"test":"mocha"},"author":{"name":"Stan Hutcheon","email":"stanutcheon@me.com","url":"https://github.com/stnvh"},"contributors":[{"name":"Gaurav Jassal","email":"gaurav@jassal.me","url":"http://gaurav.jassal.me"}],"keywords":["gulpplugin","tinypng","image","img","picture","photo","minify","minifier","compress","png"],"engines":{"node":">=0.10.0"},"license":"MIT","dependencies":{"gulp-util":"~3.0.0","request":"~2.55.0","through2":"~0.6.0","minimatch":"^2.0.0"},"devDependencies":{"chai":"^2.0.0","gulp":"^3.0.0","mocha":"^2.0.0"},"gitHead":"db94805b8ef1e7af1ea05437cfbae2fcbf9f4b69","bugs":{"url":"https://github.com/stnvh/gulp-tinypng-compress/issues"},"homepage":"https://github.com/stnvh/gulp-tinypng-compress","_id":"gulp-tinypng-compress@1.1.6","_shasum":"ca88f26787e6d8ed39e8c9181f36ba5115a8b4da","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"stnvh","email":"stanhutcheon@me.com"},"dist":{"shasum":"ca88f26787e6d8ed39e8c9181f36ba5115a8b4da","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-tinypng-compress/-/gulp-tinypng-compress-1.1.6.tgz"},"maintainers":[{"name":"stnvh","email":"stanhutcheon@me.com"}],"directories":{}},"1.1.7":{"name":"gulp-tinypng-compress","version":"1.1.7","description":"TinyPNG API wrapper for compressing PNG & JPG images","main":"index.js","repository":{"type":"git","url":"https://github.com/stnvh/gulp-tinypng-compress"},"scripts":{"test":"mocha"},"author":{"name":"Stan Hutcheon","email":"stanutcheon@me.com","url":"https://github.com/stnvh"},"contributors":[{"name":"Gaurav Jassal","email":"gaurav@jassal.me","url":"http://gaurav.jassal.me"}],"keywords":["gulpplugin","tinypng","image","img","picture","photo","minify","minifier","compress","png"],"engines":{"node":">=0.10.0"},"license":"MIT","dependencies":{"gulp-util":"~3.0.0","request":"~2.55.0","through2":"~0.6.0","minimatch":"^2.0.0"},"devDependencies":{"chai":"^2.0.0","gulp":"^3.0.0","mocha":"^2.0.0"},"gitHead":"d5fc0337aa3c81ace0448699f8936d16af382f3a","bugs":{"url":"https://github.com/stnvh/gulp-tinypng-compress/issues"},"homepage":"https://github.com/stnvh/gulp-tinypng-compress","_id":"gulp-tinypng-compress@1.1.7","_shasum":"adaf251f8f3629274e9322564f01bece0667217d","_from":".","_npmVersion":"2.7.6","_nodeVersion":"0.10.38","_npmUser":{"name":"stnvh","email":"stanhutcheon@me.com"},"dist":{"shasum":"adaf251f8f3629274e9322564f01bece0667217d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-tinypng-compress/-/gulp-tinypng-compress-1.1.7.tgz"},"maintainers":[{"name":"stnvh","email":"stanhutcheon@me.com"}],"directories":{}},"1.1.8":{"name":"gulp-tinypng-compress","version":"1.1.8","description":"TinyPNG API wrapper for compressing PNG & JPG images","main":"index.js","repository":{"type":"git","url":"https://github.com/stnvh/gulp-tinypng-compress"},"scripts":{"test":"mocha"},"author":{"name":"Stan Hutcheon","email":"stanutcheon@me.com","url":"https://github.com/stnvh"},"contributors":[{"name":"Gaurav Jassal","email":"gaurav@jassal.me","url":"http://gaurav.jassal.me"}],"keywords":["gulpplugin","tinypng","image","img","picture","photo","minify","minifier","compress","png"],"engines":{"node":">=0.10.0"},"license":"MIT","dependencies":{"gulp-util":"~3.0.0","request":"~2.55.0","through2":"~0.6.0","minimatch":"^2.0.0"},"devDependencies":{"chai":"^2.0.0","gulp":"^3.0.0","mocha":"^2.0.0"},"gitHead":"6c20d70cb49047800905683ed37be6256d69832b","bugs":{"url":"https://github.com/stnvh/gulp-tinypng-compress/issues"},"homepage":"https://github.com/stnvh/gulp-tinypng-compress","_id":"gulp-tinypng-compress@1.1.8","_shasum":"b2059be46dda38d533b0a422000e31e24765d2d9","_from":".","_npmVersion":"2.7.6","_nodeVersion":"0.10.38","_npmUser":{"name":"stnvh","email":"stanhutcheon@me.com"},"dist":{"shasum":"b2059be46dda38d533b0a422000e31e24765d2d9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-tinypng-compress/-/gulp-tinypng-compress-1.1.8.tgz"},"maintainers":[{"name":"stnvh","email":"stanhutcheon@me.com"}],"directories":{}},"1.2.0":{"name":"gulp-tinypng-compress","version":"1.2.0","description":"TinyPNG API wrapper for compressing PNG & JPG images","main":"index.js","repository":{"type":"git","url":"git+https://github.com/stnvh/gulp-tinypng-compress.git"},"scripts":{"test":"mocha"},"author":{"name":"Stan Hutcheon","email":"stanutcheon@me.com","url":"https://github.com/stnvh"},"contributors":[{"name":"Gaurav Jassal","email":"gaurav@jassal.me","url":"http://gaurav.jassal.me"}],"keywords":["gulpplugin","tinypng","image","img","picture","photo","minify","minifier","compress","png"],"engines":{"node":">=0.10.0"},"license":"MIT","dependencies":{"gulp-util":"~3.0.0","request":"~2.55.0","through2":"^2.0.0","through2-concurrent":"^1.1.0","minimatch":"^2.0.0"},"devDependencies":{"chai":"^2.0.0","gulp":"^3.0.0","mocha":"^2.0.0"},"gitHead":"5cf0062d8612cb0f9bd2978bb3c61ebd596a3639","bugs":{"url":"https://github.com/stnvh/gulp-tinypng-compress/issues"},"homepage":"https://github.com/stnvh/gulp-tinypng-compress#readme","_id":"gulp-tinypng-compress@1.2.0","_shasum":"4c4c6ec6b63dcaa09eaca7eeb2ab14f6a8ec8e9e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"stnvh","email":"stanhutcheon@me.com"},"dist":{"shasum":"4c4c6ec6b63dcaa09eaca7eeb2ab14f6a8ec8e9e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-tinypng-compress/-/gulp-tinypng-compress-1.2.0.tgz"},"maintainers":[{"name":"stnvh","email":"stanhutcheon@me.com"}],"directories":{}},"1.2.1":{"name":"gulp-tinypng-compress","version":"1.2.1","description":"TinyPNG API wrapper for compressing PNG & JPG images","main":"index.js","repository":{"type":"git","url":"git+https://github.com/stnvh/gulp-tinypng-compress.git"},"scripts":{"test":"mocha"},"author":{"name":"Stan Hutcheon","email":"stanutcheon@me.com","url":"https://github.com/stnvh"},"contributors":[{"name":"Gaurav Jassal","email":"gaurav@jassal.me","url":"http://gaurav.jassal.me"}],"keywords":["gulpplugin","tinypng","image","img","picture","photo","minify","minifier","compress","png"],"engines":{"node":">=0.10.0"},"license":"MIT","dependencies":{"gulp-util":"~3.0.0","request":"~2.55.0","through2":"^2.0.0","through2-concurrent":"^1.1.0","minimatch":"^2.0.0"},"devDependencies":{"chai":"^2.0.0","gulp":"^3.0.0","mocha":"^2.0.0"},"gitHead":"31d71834617fa7cc8646d44205e88feba6c13912","bugs":{"url":"https://github.com/stnvh/gulp-tinypng-compress/issues"},"homepage":"https://github.com/stnvh/gulp-tinypng-compress#readme","_id":"gulp-tinypng-compress@1.2.1","_shasum":"8058d515a7e756fcae05f1d0b8a88be1db658297","_from":".","_npmVersion":"3.5.3","_nodeVersion":"5.5.0","_npmUser":{"name":"stnvh","email":"stanhutcheon@me.com"},"dist":{"shasum":"8058d515a7e756fcae05f1d0b8a88be1db658297","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-tinypng-compress/-/gulp-tinypng-compress-1.2.1.tgz"},"maintainers":[{"name":"stnvh","email":"stanhutcheon@me.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gulp-tinypng-compress-1.2.1.tgz_1460734831961_0.966341894119978"},"directories":{}}},"name":"gulp-tinypng-compress","contributors":[{"name":"Gaurav Jassal","email":"gaurav@jassal.me","url":"http://gaurav.jassal.me"}],"time":{"modified":"2017-05-03T06:48:27.161Z","created":"2015-04-10T15:09:05.457Z","1.1.0":"2015-04-10T15:09:05.457Z","1.1.1":"2015-04-13T15:07:00.763Z","1.1.2":"2015-04-14T15:47:05.944Z","1.1.3":"2015-04-24T16:08:15.939Z","1.1.4":"2015-04-25T23:15:23.553Z","1.1.5":"2015-04-27T10:25:35.130Z","1.1.6":"2015-05-08T20:50:38.606Z","1.1.7":"2015-07-03T14:18:33.930Z","1.1.8":"2015-07-06T13:33:00.210Z","1.2.0":"2015-10-29T16:11:58.276Z","1.2.1":"2016-04-15T15:40:34.412Z"},"readmeFilename":"README.md","homepage":"https://github.com/stnvh/gulp-tinypng-compress#readme"}