{"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"keywords":["zlib","deflate","inflate","gzip"],"dist-tags":{"latest":"1.0.5"},"description":"zlib port to javascript - fast, modularized, with browser support","readme":"pako - zlib port to javascript, very fast!\n==========================================\n\n[![Build Status](https://travis-ci.org/nodeca/pako.svg?branch=master)](https://travis-ci.org/nodeca/pako)\n[![NPM version](https://img.shields.io/npm/v/pako.svg)](https://www.npmjs.org/package/pako)\n\n__Why pako is cool:__\n\n- Almost as fast in modern JS engines as C implementation (see benchmarks).\n- Works in browsers, you can browserify any separate component.\n- Chunking support for big blobs.\n- Results are binary equal to well known [zlib](http://www.zlib.net/) (now contains ported zlib v1.2.8).\n\nThis project was done to understand how fast JS can be and is it necessary to\ndevelop native C modules for CPU-intensive tasks. Enjoy the result!\n\n\n__Famous projects, using pako:__\n\n- [browserify](http://browserify.org/) (via [browserify-zlib](https://github.com/devongovett/browserify-zlib))\n- [JSZip](http://stuk.github.io/jszip/)\n- [mincer](https://github.com/nodeca/mincer)\n- [JS-Git](https://github.com/creationix/js-git) and\n  [Tedit](https://chrome.google.com/webstore/detail/tedit-development-environ/ooekdijbnbbjdfjocaiflnjgoohnblgf)\n  by [@creatronix](https://github.com/creationix)\n\n\n__Benchmarks:__\n\n```\nnode v0.10.26, 1mb sample:\n\n   deflate-dankogai x 4.73 ops/sec ±0.82% (15 runs sampled)\n   deflate-gildas x 4.58 ops/sec ±2.33% (15 runs sampled)\n   deflate-imaya x 3.22 ops/sec ±3.95% (12 runs sampled)\n ! deflate-pako x 6.99 ops/sec ±0.51% (21 runs sampled)\n   deflate-pako-string x 5.89 ops/sec ±0.77% (18 runs sampled)\n   deflate-pako-untyped x 4.39 ops/sec ±1.58% (14 runs sampled)\n * deflate-zlib x 14.71 ops/sec ±4.23% (59 runs sampled)\n   inflate-dankogai x 32.16 ops/sec ±0.13% (56 runs sampled)\n   inflate-imaya x 30.35 ops/sec ±0.92% (53 runs sampled)\n ! inflate-pako x 69.89 ops/sec ±1.46% (71 runs sampled)\n   inflate-pako-string x 19.22 ops/sec ±1.86% (49 runs sampled)\n   inflate-pako-untyped x 17.19 ops/sec ±0.85% (32 runs sampled)\n * inflate-zlib x 70.03 ops/sec ±1.64% (81 runs sampled)\n\nnode v0.11.12, 1mb sample:\n\n   deflate-dankogai x 5.60 ops/sec ±0.49% (17 runs sampled)\n   deflate-gildas x 5.06 ops/sec ±6.00% (16 runs sampled)\n   deflate-imaya x 3.52 ops/sec ±3.71% (13 runs sampled)\n ! deflate-pako x 11.52 ops/sec ±0.22% (32 runs sampled)\n   deflate-pako-string x 9.53 ops/sec ±1.12% (27 runs sampled)\n   deflate-pako-untyped x 5.44 ops/sec ±0.72% (17 runs sampled)\n * deflate-zlib x 14.05 ops/sec ±3.34% (63 runs sampled)\n   inflate-dankogai x 42.19 ops/sec ±0.09% (56 runs sampled)\n   inflate-imaya x 79.68 ops/sec ±1.07% (68 runs sampled)\n ! inflate-pako x 97.52 ops/sec ±0.83% (80 runs sampled)\n   inflate-pako-string x 45.19 ops/sec ±1.69% (57 runs sampled)\n   inflate-pako-untyped x 24.35 ops/sec ±2.59% (40 runs sampled)\n * inflate-zlib x 60.32 ops/sec ±1.36% (69 runs sampled)\n```\n\nzlib's test is partialy afferted by marshling (that make sense for inflate only).\nYou can change deflate level to 0 in benchmark source, to investigate details.\nFor deflate level 6 results can be considered as correct.\n\n__Install:__\n\nnode.js:\n\n```\nnpm install pako\n```\n\nbrowser:\n\n```\nbower install pako\n```\n\n\nExample & API\n-------------\n\nFull docs - http://nodeca.github.io/pako/\n\n```javascript\nvar pako = require('pako');\n\n// Deflate\n//\nvar input = new Uint8Array();\n//... fill input data here\nvar output = pako.deflate(input);\n\n// Inflate (simple wrapper can throw exception on broken stream)\n//\nvar compressed = new Uint8Array();\n//... fill data to uncompress here\ntry {\n  var result = pako.inflate(compressed);\n} catch (err) {\n  console.log(err);\n}\n\n//\n// Alternate interface for chunking & without exceptions\n//\n\nvar inflator = new pako.Inflate();\n\ninflator.push(chunk1, false);\ninflator.push(chunk2, false);\n...\ninflator.push(chunkN, true); // true -> last chunk\n\nif (inflator.err) {\n  console.log(inflator.msg);\n}\n\nvar output = inflator.result;\n\n```\n\nSometime you can wish to work with strings. For example, to send\nbig objects as json to server. Pako detects input data type. You can\nforce output to be string with option `{ to: 'string' }`.\n\n```javascript\nvar pako = require('pako');\n\nvar test = { my: 'super', puper: [456, 567], awesome: 'pako' };\n\nvar binaryString = pako.deflate(JSON.stringify(test), { to: 'string' });\n\n//\n// Here you can do base64 encode, make xhr requests and so on.\n//\n\nvar restored = JSON.parse(pako.inflate(binaryString, { to: 'string' }));\n```\n\n\nNotes\n-----\n\nPako does not contain some specific zlib functions:\n\n- __deflate__ -  methods `deflateCopy`, `deflateBound`, `deflateParams`,\n  `deflatePending`, `deflatePrime`, `deflateTune`.\n- __inflate__ - methods `inflateCopy`, `inflateMark`,\n  `inflatePrime`, `inflateGetDictionary`, `inflateSync`, `inflateSyncPoint`, `inflateUndermine`.\n- High level inflate/deflate wrappers (classes) may not support some flush\n  modes. Those should work: Z_NO_FLUSH, Z_FINISH, Z_SYNC_FLUSH.\n\n\nAuthors\n-------\n\n- Andrey Tupitsin [@anrd83](https://github.com/andr83)\n- Vitaly Puzrin [@puzrin](https://github.com/puzrin)\n\nPersonal thanks to:\n\n- Vyacheslav Egorov ([@mraleph](https://github.com/mraleph)) for his awesome\n  tutorials about optimising JS code for v8, [IRHydra](http://mrale.ph/irhydra/)\n  tool and his advices.\n- David Duponchel ([@dduponchel](https://github.com/dduponchel)) for help with\n  testing.\n\nOriginal implementation (in C):\n\n- [zlib](http://zlib.net/) by Jean-loup Gailly and Mark Adler.\n\n\nLicense\n-------\n\nMIT\n","repository":{"type":"git","url":"git+https://github.com/nodeca/pako.git"},"users":{"maxogden":true,"guybrush":true,"devongovett":true,"sidwood":true,"pid":true,"ivansky":true,"vlazar":true,"gudvinr":true,"flozz":true,"moimikey":true,"illuminator":true,"jhuckaby":true,"forresto":true,"monolithed":true,"mhaidarh":true,"zewish":true},"bugs":{"url":"https://github.com/nodeca/pako/issues"},"license":"(MIT AND Zlib)","versions":{"0.0.0":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support.","version":"0.0.0","keywords":["zlib","deflate","inflate"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"bugs":{"url":"https://github.com/nodeca/pako/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/pako/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/pako.git"},"main":"./index.js","devDependencies":{"mocha":"*","benchmark":"*","ansi":"*","lodash":"2.4.1","async":"0.2.10"},"_id":"pako@0.0.0","dist":{"shasum":"9d63e90867d1d1c8d565527a15a671a2666d21d5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-0.0.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"0.1.0":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"0.1.0","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"bugs":{"url":"https://github.com/nodeca/pako/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/pako/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/pako.git"},"main":"./index.js","devDependencies":{"mocha":"*","chai":"*","benchmark":"*","ansi":"*","browserify":"*","uglify-js":"*","jshint":"*","istanbul":"*","ndoc":"*","lodash":"2.4.1","async":"0.2.10","grunt":"~0.4.0","grunt-cli":"~0.1.13","grunt-saucelabs":"~5.0.1","grunt-contrib-connect":"~0.7.1"},"_id":"pako@0.1.0","dist":{"shasum":"c6bc3e165098740ce5409a39269267cb48bb945b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-0.1.0.tgz"},"_from":"https://github.com/nodeca/pako/tarball/0.1.0","_resolved":"https://github.com/nodeca/pako/tarball/0.1.0","scripts":{},"_npmVersion":"1.3.24","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"0.1.1":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"0.1.1","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"bugs":{"url":"https://github.com/nodeca/pako/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/pako/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/pako.git"},"main":"./index.js","devDependencies":{"mocha":"*","chai":"*","benchmark":"*","ansi":"*","browserify":"*","uglify-js":"*","jshint":"*","istanbul":"*","ndoc":"*","lodash":"2.4.1","async":"0.2.10","grunt":"~0.4.0","grunt-cli":"~0.1.13","grunt-saucelabs":"~5.0.1","grunt-contrib-connect":"~0.7.1"},"_id":"pako@0.1.1","dist":{"shasum":"5053d4d5d90b1681e037b3c60e857d4756d5f25f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-0.1.1.tgz"},"_from":"https://github.com/nodeca/pako/tarball/0.1.1","_resolved":"https://github.com/nodeca/pako/tarball/0.1.1","scripts":{},"_npmVersion":"1.4.3","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"0.2.0":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"0.2.0","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"bugs":{"url":"https://github.com/nodeca/pako/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/pako/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/pako.git"},"main":"./index.js","devDependencies":{"mocha":"*","chai":"*","benchmark":"*","ansi":"*","browserify":"*","uglify-js":"*","jshint":"*","istanbul":"*","ndoc":"*","lodash":"2.4.1","async":"0.2.10","grunt":"~0.4.4","grunt-cli":"~0.1.13","grunt-saucelabs":"~5.1.1","grunt-contrib-connect":"~0.7.1"},"_id":"pako@0.2.0","dist":{"shasum":"bb93787e8c60587c8b13cd3cd8802e9d6f5dd8d5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-0.2.0.tgz"},"_from":"https://github.com/nodeca/pako/tarball/0.2.0","_resolved":"https://github.com/nodeca/pako/tarball/0.2.0","scripts":{},"_npmVersion":"1.4.3","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"0.2.1":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"0.2.1","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"bugs":{"url":"https://github.com/nodeca/pako/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/pako/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/pako.git"},"main":"./index.js","devDependencies":{"mocha":"*","chai":"*","benchmark":"*","ansi":"*","browserify":"*","uglify-js":"*","jshint":"*","istanbul":"*","ndoc":"*","lodash":"2.4.1","async":"0.2.10","grunt":"~0.4.4","grunt-cli":"~0.1.13","grunt-saucelabs":"~5.1.1","grunt-contrib-connect":"~0.7.1"},"_id":"pako@0.2.1","dist":{"shasum":"65150277c8447a9e83877f00476d533e1d380ad3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-0.2.1.tgz"},"_from":"https://github.com/nodeca/pako/tarball/0.2.1","_resolved":"https://github.com/nodeca/pako/tarball/0.2.1","scripts":{},"_npmVersion":"1.4.3","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"0.2.2":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"0.2.2","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"bugs":{"url":"https://github.com/nodeca/pako/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/pako/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/pako.git"},"main":"./index.js","devDependencies":{"mocha":"*","chai":"*","benchmark":"*","ansi":"*","browserify":"*","uglify-js":"*","jshint":"*","istanbul":"*","ndoc":"*","lodash":"2.4.1","async":"0.2.10","grunt":"~0.4.4","grunt-cli":"~0.1.13","grunt-saucelabs":"~5.1.1","grunt-contrib-connect":"~0.7.1"},"_id":"pako@0.2.2","dist":{"shasum":"0154fcebb02d53d188827edbdc37d358e3a12cbe","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-0.2.2.tgz"},"_from":"https://github.com/nodeca/pako/tarball/0.2.2","_resolved":"https://github.com/nodeca/pako/tarball/0.2.2","scripts":{},"_npmVersion":"1.4.3","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"0.2.3":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"0.2.3","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"bugs":{"url":"https://github.com/nodeca/pako/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/pako/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/pako.git"},"main":"./index.js","devDependencies":{"mocha":"*","benchmark":"*","ansi":"*","browserify":"*","uglify-js":"*","jshint":"*","istanbul":"*","ndoc":"*","lodash":"*","async":"*","grunt":"~0.4.4","grunt-cli":"~0.1.13","grunt-saucelabs":"~8.0.2","grunt-contrib-connect":"~0.7.1"},"_id":"pako@0.2.3","_shasum":"da97260282d270c43f210d9e9bf9abdf54072641","_from":"https://github.com/nodeca/pako/tarball/0.2.3","_resolved":"https://github.com/nodeca/pako/tarball/0.2.3","scripts":{},"_npmVersion":"1.4.9","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"da97260282d270c43f210d9e9bf9abdf54072641","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-0.2.3.tgz"},"directories":{}},"0.2.4":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"0.2.4","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"bugs":{"url":"https://github.com/nodeca/pako/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/pako/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/pako.git"},"main":"./index.js","devDependencies":{"mocha":"*","benchmark":"*","ansi":"*","browserify":"*","uglify-js":"*","jshint":"*","istanbul":"*","ndoc":"*","lodash":"*","async":"*","grunt":"~0.4.4","grunt-cli":"~0.1.13","grunt-saucelabs":"~8.0.2","grunt-contrib-connect":"~0.7.1"},"_id":"pako@0.2.4","_shasum":"015399af84fc28c6d9ce5abe5874b7dcb968a751","_from":"https://github.com/nodeca/pako/tarball/0.2.4","_resolved":"https://github.com/nodeca/pako/tarball/0.2.4","scripts":{},"_npmVersion":"1.4.9","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"015399af84fc28c6d9ce5abe5874b7dcb968a751","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-0.2.4.tgz"},"directories":{}},"0.2.5":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"0.2.5","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"bugs":{"url":"https://github.com/nodeca/pako/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/pako/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/pako.git"},"main":"./index.js","devDependencies":{"mocha":"*","benchmark":"*","ansi":"*","browserify":"*","uglify-js":"*","jshint":"*","istanbul":"*","ndoc":"*","lodash":"*","async":"*","grunt":"~0.4.4","grunt-cli":"~0.1.13","grunt-saucelabs":"~8.0.2","grunt-contrib-connect":"~0.7.1"},"_id":"pako@0.2.5","_shasum":"36df19467a3879152e9adcc44784f07d0a80c525","_from":"https://github.com/nodeca/pako/tarball/0.2.5","_resolved":"https://github.com/nodeca/pako/tarball/0.2.5","scripts":{},"_npmVersion":"1.4.9","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"36df19467a3879152e9adcc44784f07d0a80c525","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-0.2.5.tgz"},"directories":{}},"0.2.6":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"0.2.6","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"bugs":{"url":"https://github.com/nodeca/pako/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/pako/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/pako.git"},"main":"./index.js","devDependencies":{"mocha":"*","benchmark":"*","ansi":"*","browserify":"*","uglify-js":"*","jshint":"*","istanbul":"*","ndoc":"*","lodash":"*","async":"*","grunt":"~0.4.4","grunt-cli":"~0.1.13","grunt-saucelabs":"~8.6.0","grunt-contrib-connect":"~0.9.0"},"gitHead":"4ace00c10b5f4be0b008c3799fd5b076173f19c2","_id":"pako@0.2.6","scripts":{},"_shasum":"3e0c548353b859ab9c8005fac706bdd6c7af505f","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"3e0c548353b859ab9c8005fac706bdd6c7af505f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-0.2.6.tgz"},"directories":{}},"0.2.7":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"0.2.7","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"bugs":{"url":"https://github.com/nodeca/pako/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/pako/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/pako.git"},"main":"./index.js","devDependencies":{"mocha":"*","benchmark":"*","ansi":"*","browserify":"*","eslint":"0.17.1","eslint-plugin-nodeca":"~1.0.3","uglify-js":"*","istanbul":"*","ndoc":"*","lodash":"*","async":"*","grunt":"~0.4.4","grunt-cli":"~0.1.13","grunt-saucelabs":"~8.6.0","grunt-contrib-connect":"~0.9.0"},"gitHead":"8070869d8cef31f291e02498c28d7f423de34ade","_id":"pako@0.2.7","scripts":{},"_shasum":"90e8917affd5ee2b69dfe943ec16b783c4e0c441","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"90e8917affd5ee2b69dfe943ec16b783c4e0c441","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-0.2.7.tgz"},"directories":{}},"0.2.8":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"0.2.8","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"bugs":{"url":"https://github.com/nodeca/pako/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/pako/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/pako.git"},"main":"./index.js","devDependencies":{"mocha":"1.21.5","benchmark":"*","ansi":"*","browserify":"*","eslint":"0.17.1","eslint-plugin-nodeca":"~1.0.3","uglify-js":"*","istanbul":"*","ndoc":"*","lodash":"*","async":"*","grunt":"~0.4.4","grunt-cli":"~0.1.13","grunt-saucelabs":"~8.6.0","grunt-contrib-connect":"~0.9.0"},"gitHead":"08c5cfb4fe2f744bedbd249be908bba0d8fc0946","_id":"pako@0.2.8","scripts":{},"_shasum":"15ad772915362913f20de4a8a164b4aacc6165d6","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"15ad772915362913f20de4a8a164b4aacc6165d6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-0.2.8.tgz"},"directories":{}},"1.0.0":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"1.0.0","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"files":["index.js","dist/","lib/"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/pako.git"},"devDependencies":{"mocha":"1.21.5","benchmark":"*","ansi":"*","browserify":"*","eslint":"^2.1.0","eslint-plugin-nodeca":"~1.0.3","uglify-js":"*","istanbul":"*","ndoc":"*","lodash":"*","async":"*","grunt":"~0.4.4","grunt-cli":"~0.1.13","grunt-saucelabs":"~8.6.0","grunt-contrib-connect":"~0.9.0"},"gitHead":"c3cf4566da9c443575ac7f447e5404af7f34aa3d","bugs":{"url":"https://github.com/nodeca/pako/issues"},"_id":"pako@1.0.0","scripts":{},"_shasum":"ec8b6f0a7e1512d20a21bd58568db7777bb7ccb1","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.0","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"ec8b6f0a7e1512d20a21bd58568db7777bb7ccb1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-1.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/pako-1.0.0.tgz_1455700678142_0.584279963048175"},"directories":{}},"1.0.1":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"1.0.1","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"files":["index.js","dist/","lib/"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/pako.git"},"devDependencies":{"mocha":"1.21.5","benchmark":"*","ansi":"*","browserify":"*","eslint":"^2.1.0","eslint-plugin-nodeca":"~1.0.3","uglify-js":"*","istanbul":"*","ndoc":"*","lodash":"*","async":"*","grunt":"~0.4.4","grunt-cli":"~0.1.13","grunt-saucelabs":"~8.6.0","grunt-contrib-connect":"~0.9.0"},"gitHead":"78603f42fc4b33393451a9377479d0869886429b","bugs":{"url":"https://github.com/nodeca/pako/issues"},"_id":"pako@1.0.1","scripts":{},"_shasum":"030267fd61934761c70331728ffa59a9a845152e","_from":".","_npmVersion":"2.14.20","_nodeVersion":"4.4.1","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"030267fd61934761c70331728ffa59a9a845152e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-1.0.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/pako-1.0.1.tgz_1459521071752_0.24107903544791043"},"directories":{}},"1.0.2":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"1.0.2","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"files":["index.js","dist/","lib/"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/pako.git"},"devDependencies":{"mocha":"1.21.5","benchmark":"*","ansi":"*","browserify":"*","eslint":"^2.1.0","eslint-plugin-nodeca":"~1.0.3","uglify-js":"*","istanbul":"*","ndoc":"*","lodash":"*","async":"*","grunt":"~0.4.4","grunt-cli":"~0.1.13","grunt-saucelabs":"~8.6.0","grunt-contrib-connect":"~0.9.0"},"gitHead":"d53e2219e3ea14ac5759e5925cfd8d14a29c1da6","bugs":{"url":"https://github.com/nodeca/pako/issues"},"_id":"pako@1.0.2","scripts":{},"_shasum":"ce4ff912366c028a4dbe3f64bf9de8441ba02b75","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.5","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"ce4ff912366c028a4dbe3f64bf9de8441ba02b75","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-1.0.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/pako-1.0.2.tgz_1469133085971_0.8812384714838117"},"directories":{}},"0.2.9":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"0.2.9","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"files":["index.js","dist/","lib/"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/pako.git"},"devDependencies":{"mocha":"1.21.5","benchmark":"*","ansi":"*","browserify":"*","eslint":"^2.1.0","eslint-plugin-nodeca":"~1.0.3","uglify-js":"*","istanbul":"*","ndoc":"*","lodash":"*","async":"*","grunt":"~0.4.4","grunt-cli":"~0.1.13","grunt-saucelabs":"~8.6.0","grunt-contrib-connect":"~0.9.0"},"gitHead":"85d145e616967f3720382f416da530c23c02ad13","bugs":{"url":"https://github.com/nodeca/pako/issues"},"_id":"pako@0.2.9","scripts":{},"_shasum":"f3f7522f4ef782348da8161bad9ecfd51bf83a75","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.5","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"f3f7522f4ef782348da8161bad9ecfd51bf83a75","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-0.2.9.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/pako-0.2.9.tgz_1469133699053_0.013920168625190854"},"directories":{}},"1.0.3":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"1.0.3","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"files":["index.js","dist/","lib/"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/pako.git"},"devDependencies":{"mocha":"1.21.5","benchmark":"*","ansi":"*","browserify":"*","eslint":"^2.1.0","eslint-plugin-nodeca":"~1.0.3","uglify-js":"*","istanbul":"*","ndoc":"*","lodash":"*","async":"*","grunt":"~0.4.4","grunt-cli":"~0.1.13","grunt-saucelabs":"~8.6.0","grunt-contrib-connect":"~0.9.0"},"gitHead":"653c0b00d8941c89d09ed4546d2179001ec44efc","bugs":{"url":"https://github.com/nodeca/pako/issues"},"_id":"pako@1.0.3","scripts":{},"_shasum":"5f515b0c6722e1982920ae8005eacb0b7ca73ccf","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.5","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"5f515b0c6722e1982920ae8005eacb0b7ca73ccf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-1.0.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/pako-1.0.3.tgz_1469476123771_0.3454044258687645"},"directories":{}},"1.0.4":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"1.0.4","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"}],"files":["index.js","dist/","lib/"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/pako.git"},"devDependencies":{"mocha":"^3.2.0","benchmark":"*","ansi":"*","browserify":"*","eslint":"^3.12.2","eslint-plugin-nodeca":"~1.0.3","uglify-js":"*","istanbul":"*","ndoc":"*","lodash":"*","async":"*","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-saucelabs":"^9.0.0","grunt-contrib-connect":"^1.0.2"},"gitHead":"8737672b4146ff5bc510f6552bf30bad500aa4b4","bugs":{"url":"https://github.com/nodeca/pako/issues"},"_id":"pako@1.0.4","scripts":{},"_shasum":"412cc97c3b7ff06dc6c2557fd4f03d06f5e708d4","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.8.1","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"412cc97c3b7ff06dc6c2557fd4f03d06f5e708d4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-1.0.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/pako-1.0.4.tgz_1481762024868_0.25667452113702893"},"directories":{}},"1.0.5":{"name":"pako","description":"zlib port to javascript - fast, modularized, with browser support","version":"1.0.5","keywords":["zlib","deflate","inflate","gzip"],"homepage":"https://github.com/nodeca/pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"},{"name":"Friedel Ziegelmayer","url":"https://github.com/dignifiedquire"},{"name":"Kirill Efimov","url":"https://github.com/Kirill89"},{"name":"Jean-loup Gailly"},{"name":"Mark Adler"}],"files":["index.js","dist/","lib/"],"license":"(MIT AND Zlib)","repository":{"type":"git","url":"git+https://github.com/nodeca/pako.git"},"devDependencies":{"ansi":"*","async":"*","benchmark":"*","bluebird":"^3.5.0","browserify":"*","eslint":"^3.12.2","eslint-plugin-nodeca":"~1.0.3","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-contrib-connect":"^1.0.2","grunt-saucelabs":"^9.0.0","istanbul":"*","lodash":"*","mocha":"^3.2.0","multiparty":"^4.1.3","ndoc":"*","uglify-js":"*","zlibjs":"^0.2.0"},"gitHead":"588a4376d24f24b3bae4167b4a5c8cd43761a5cd","bugs":{"url":"https://github.com/nodeca/pako/issues"},"_id":"pako@1.0.5","scripts":{},"_shasum":"d2205dfe5b9da8af797e7c163db4d1f84e4600bc","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"d2205dfe5b9da8af797e7c163db4d1f84e4600bc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/pako/-/pako-1.0.5.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/pako-1.0.5.tgz_1490543279075_0.5095277389045805"},"directories":{}}},"name":"pako","contributors":[{"name":"Andrei Tuputcyn","url":"https://github.com/andr83"},{"name":"Vitaly Puzrin","url":"https://github.com/puzrin"},{"name":"Friedel Ziegelmayer","url":"https://github.com/dignifiedquire"},{"name":"Kirill Efimov","url":"https://github.com/Kirill89"},{"name":"Jean-loup Gailly"},{"name":"Mark Adler"}],"time":{"modified":"2017-03-26T15:47:59.658Z","created":"2014-02-19T16:02:05.385Z","0.0.0":"2014-02-19T16:02:05.385Z","0.1.0":"2014-03-15T17:36:20.687Z","0.1.1":"2014-03-20T02:31:52.798Z","0.2.0":"2014-04-18T05:44:58.777Z","0.2.1":"2014-05-01T18:14:04.622Z","0.2.2":"2014-06-04T07:31:28.956Z","0.2.3":"2014-06-08T20:46:47.067Z","0.2.4":"2014-07-07T05:50:16.563Z","0.2.5":"2014-07-19T10:08:28.458Z","0.2.6":"2015-03-24T01:51:57.856Z","0.2.7":"2015-06-09T19:58:14.372Z","0.2.8":"2015-09-14T12:21:28.534Z","1.0.0":"2016-02-17T09:18:02.220Z","1.0.1":"2016-04-01T14:31:14.198Z","1.0.2":"2016-07-21T20:31:28.170Z","0.2.9":"2016-07-21T20:41:41.367Z","1.0.3":"2016-07-25T19:48:45.827Z","1.0.4":"2016-12-15T00:33:47.154Z","1.0.5":"2017-03-26T15:47:59.658Z"},"readmeFilename":"README.md","homepage":"https://github.com/nodeca/pako"}