{"maintainers":[{"name":"cthackers","email":"sy@another-d-mention.ro"}],"keywords":["zip","methods","archive","unzip"],"dist-tags":{"latest":"0.4.7"},"author":{"name":"Nasca Iacob","email":"sy@another-d-mention.ro","url":"https://github.com/cthackers"},"description":"A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk","readme":"# ADM-ZIP for NodeJS\r\n\r\nADM-ZIP is a pure JavaScript implementation for zip data compression for [NodeJS](http://nodejs.org/). \r\n\r\n# Installation\r\n\r\nWith [npm](http://npmjs.org) do:\r\n\r\n    $ npm install adm-zip\r\n\t\r\n## What is it good for?\r\nThe library allows you to:\r\n\r\n* decompress zip files directly to disk or in memory buffers\r\n* compress files and store them to disk in .zip format or in compressed buffers\r\n* update content of/add new/delete files from an existing .zip\r\n\r\n# Dependencies\r\nThere are no other nodeJS libraries that ADM-ZIP is dependent of\r\n\r\n# Examples\r\n\r\n## Basic usage\r\n```javascript\r\n\r\n\tvar AdmZip = require('adm-zip');\r\n\r\n\t// reading archives\r\n\tvar zip = new AdmZip(\"./my_file.zip\");\r\n\tvar zipEntries = zip.getEntries(); // an array of ZipEntry records\r\n\r\n\tzipEntries.forEach(function(zipEntry) {\r\n\t    console.log(zipEntry.toString()); // outputs zip entries information\r\n\t\tif (zipEntry.entryName == \"my_file.txt\") {\r\n\t\t     console.log(zipEntry.data.toString('utf8')); \r\n\t\t}\r\n\t});\r\n\t// outputs the content of some_folder/my_file.txt\r\n\tconsole.log(zip.readAsText(\"some_folder/my_file.txt\")); \r\n\t// extracts the specified file to the specified location\r\n\tzip.extractEntryTo(/*entry name*/\"some_folder/my_file.txt\", /*target path*/\"/home/me/tempfolder\", /*maintainEntryPath*/false, /*overwrite*/true);\r\n\t// extracts everything\r\n\tzip.extractAllTo(/*target path*/\"/home/me/zipcontent/\", /*overwrite*/true);\r\n\t\r\n\t\r\n\t// creating archives\r\n\tvar zip = new AdmZip();\r\n\t\r\n\t// add file directly\r\n\tzip.addFile(\"test.txt\", new Buffer(\"inner content of the file\"), \"entry comment goes here\");\r\n\t// add local file\r\n\tzip.addLocalFile(\"/home/me/some_picture.png\");\r\n\t// get everything as a buffer\r\n\tvar willSendthis = zip.toBuffer();\r\n\t// or write everything to disk\r\n\tzip.writeZip(/*target file name*/\"/home/me/files.zip\");\r\n\t\r\n\t\r\n\t// ... more examples in the wiki\r\n```\r\n\r\nFor more detailed information please check out the [wiki](https://github.com/cthackers/adm-zip/wiki).\r\n\r\n[![build status](https://secure.travis-ci.org/cthackers/adm-zip.png)](http://travis-ci.org/cthackers/adm-zip)\r\n","repository":{"type":"git","url":"https://github.com/cthackers/adm-zip.git"},"users":{"jakoubek":true,"bhaveshgohel":true,"oneinme":true,"i-samaryov":true,"cutejs":true,"michaelchance":true,"mp2526":true,"jmshahen":true,"rcastro":true,"jasoncmcg":true,"till":true,"bpatel":true,"mutoo":true,"buzzalderaan":true,"eckberg":true,"mapaiva":true,"igord":true,"samuelrn":true,"snowdream":true,"harryxiang":true,"victorvilla":true,"hain":true,"legionaryu":true,"nsfmc":true,"devonwen":true,"konamgil":true,"kimown":true,"jeremyscalpello":true,"wukaidong":true,"threeputted":true,"ymk":true,"clemo":true,"buckwell":true,"simonjie":true,"faraoman":true,"natarajanmca11":true},"bugs":{"url":"https://github.com/cthackers/adm-zip/issues","email":"sy@another-d-mention.ro"},"versions":{"0.1.1":{"name":"adm-zip","version":"0.1.1","description":"A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk","keywords":["zip","compression","archive","unzip"],"homepage":"http://github.com/cthackers/adm-zip","author":{"name":"Nasca Iacob","email":"sy@another-d-mention.ro","url":"https://github.com/cthackers"},"bugs":{"email":"sy@another-d-mention.ro","url":"https://github.com/cthackers/adm-zip/issues"},"licenses":[{"type":"MIT","url":"http://github.com/kriskowal/zip/raw/master/LICENSE"}],"main":"zip.js","repository":{"type":"git","url":"git://github.com:cthackers/adm-zip.git"},"engines":{"node":">=0.3.0"},"_npmUser":{"name":"cthackers","email":"sy@another-d-mention.ro"},"_id":"adm-zip@0.1.1","dependencies":{},"devDependencies":{},"optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.0-2","_nodeVersion":"v0.6.8","_defaultsLoaded":true,"dist":{"shasum":"1bc02f772c22bbd74790be3764ae2a7741487469","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/adm-zip/-/adm-zip-0.1.1.tgz"},"maintainers":[{"name":"cthackers","email":"sy@another-d-mention.ro"}],"directories":{}},"0.1.2":{"name":"adm-zip","version":"0.1.2","description":"A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk","keywords":["zip","methods","archive","unzip"],"homepage":"http://github.com/cthackers/adm-zip","author":{"name":"Nasca Iacob","email":"sy@another-d-mention.ro","url":"https://github.com/cthackers"},"bugs":{"email":"sy@another-d-mention.ro","url":"https://github.com/cthackers/adm-zip/issues"},"licenses":[{"type":"MIT","url":"http://github.com/kriskowal/zip/raw/master/LICENSE"}],"main":"adm-zip.js","repository":{"type":"git","url":"git://github.com:cthackers/adm-zip.git"},"engines":{"node":">=0.3.0"},"_npmUser":{"name":"cthackers","email":"sy@another-d-mention.ro"},"_id":"adm-zip@0.1.2","dependencies":{},"devDependencies":{},"optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.0-2","_nodeVersion":"v0.6.8","_defaultsLoaded":true,"dist":{"shasum":"37e20f44aed57f76d65f95bcc3821f8ba3904470","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/adm-zip/-/adm-zip-0.1.2.tgz"},"maintainers":[{"name":"cthackers","email":"sy@another-d-mention.ro"}],"directories":{}},"0.1.3":{"name":"adm-zip","version":"0.1.3","description":"A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk","keywords":["zip","methods","archive","unzip"],"homepage":"http://github.com/cthackers/adm-zip","author":{"name":"Nasca Iacob","email":"sy@another-d-mention.ro","url":"https://github.com/cthackers"},"bugs":{"email":"sy@another-d-mention.ro","url":"https://github.com/cthackers/adm-zip/issues"},"licenses":[{"type":"MIT","url":"http://github.com/kriskowal/zip/raw/master/LICENSE"}],"main":"adm-zip.js","repository":{"type":"git","url":"git://github.com:cthackers/adm-zip.git"},"engines":{"node":">=0.3.0"},"_npmUser":{"name":"cthackers","email":"sy@another-d-mention.ro"},"_id":"adm-zip@0.1.3","dependencies":{},"devDependencies":{},"optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.0-2","_nodeVersion":"v0.6.8","_defaultsLoaded":true,"dist":{"shasum":"d3e29a027463f1c915b7247059540edfcbf57568","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/adm-zip/-/adm-zip-0.1.3.tgz"},"maintainers":[{"name":"cthackers","email":"sy@another-d-mention.ro"}],"directories":{}},"0.1.4":{"name":"adm-zip","version":"0.1.4","description":"A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk","keywords":["zip","methods","archive","unzip"],"homepage":"http://github.com/cthackers/adm-zip","author":{"name":"Nasca Iacob","email":"sy@another-d-mention.ro","url":"https://github.com/cthackers"},"bugs":{"email":"sy@another-d-mention.ro","url":"https://github.com/cthackers/adm-zip/issues"},"licenses":[{"type":"MIT","url":"http://github.com/kriskowal/zip/raw/master/LICENSE"}],"main":"adm-zip.js","repository":{"type":"git","url":"git://github.com/git@github.com:cthackers/adm-zip.git"},"engines":{"node":">=0.3.1"},"_id":"adm-zip@0.1.4","dist":{"shasum":"60af872c28d5275ae3a168b613ab7a48ce76cd99","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/adm-zip/-/adm-zip-0.1.4.tgz"},"maintainers":[{"name":"cthackers","email":"sy@another-d-mention.ro"}],"directories":{}},"0.1.5":{"name":"adm-zip","version":"0.1.5","description":"A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk","keywords":["zip","methods","archive","unzip"],"homepage":"http://github.com/cthackers/adm-zip","author":{"name":"Nasca Iacob","email":"sy@another-d-mention.ro","url":"https://github.com/cthackers"},"bugs":{"email":"sy@another-d-mention.ro","url":"https://github.com/cthackers/adm-zip/issues"},"licenses":[{"type":"MIT","url":"http://github.com/kriskowal/zip/raw/master/LICENSE"}],"main":"adm-zip.js","repository":{"type":"git","url":"git://github.com/git@github.com:cthackers/adm-zip.git"},"engines":{"node":">=0.3.0"},"_id":"adm-zip@0.1.5","dist":{"shasum":"0c8e490f06e51f0beef3e6af0e5fdf7ee2553a0b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/adm-zip/-/adm-zip-0.1.5.tgz"},"maintainers":[{"name":"cthackers","email":"sy@another-d-mention.ro"}],"directories":{}},"0.1.6":{"name":"adm-zip","version":"0.1.6","description":"A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk","keywords":["zip","methods","archive","unzip"],"homepage":"http://github.com/cthackers/adm-zip","author":{"name":"Nasca Iacob","email":"sy@another-d-mention.ro","url":"https://github.com/cthackers"},"bugs":{"email":"sy@another-d-mention.ro","url":"https://github.com/cthackers/adm-zip/issues"},"licenses":[{"type":"MIT","url":"http://github.com/kriskowal/zip/raw/master/LICENSE"}],"main":"adm-zip.js","repository":{"type":"git","url":"git://github.com/git@github.com:cthackers/adm-zip.git"},"engines":{"node":">=0.3.0"},"_id":"adm-zip@0.1.6","dist":{"shasum":"234e9f17bbbde3a6dcb2926e26355dcc2b735345","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/adm-zip/-/adm-zip-0.1.6.tgz"},"_from":"adm-zip","_npmVersion":"1.1.59","_npmUser":{"name":"cthackers","email":"iacob.campia@gmail.com"},"maintainers":[{"name":"cthackers","email":"sy@another-d-mention.ro"}],"directories":{}},"0.1.7":{"name":"adm-zip","version":"0.1.7","description":"A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk","keywords":["zip","methods","archive","unzip"],"homepage":"http://github.com/cthackers/adm-zip","author":{"name":"Nasca Iacob","email":"sy@another-d-mention.ro","url":"https://github.com/cthackers"},"bugs":{"email":"sy@another-d-mention.ro","url":"https://github.com/cthackers/adm-zip/issues"},"licenses":[{"type":"MIT","url":"http://github.com/kriskowal/zip/raw/master/LICENSE"}],"main":"adm-zip.js","repository":{"type":"git","url":"git://github.com/git@github.com:cthackers/adm-zip.git"},"engines":{"node":">=0.3.0"},"_id":"adm-zip@0.1.7","dist":{"shasum":"16e5677131f65fb62b48ae8a9e8873c7988518ca","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/adm-zip/-/adm-zip-0.1.7.tgz"},"_npmVersion":"1.1.59","_npmUser":{"name":"cthackers","email":"iacob.campia@gmail.com"},"maintainers":[{"name":"cthackers","email":"sy@another-d-mention.ro"}],"directories":{}},"0.1.8":{"name":"adm-zip","version":"0.1.8","description":"A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk","keywords":["zip","methods","archive","unzip"],"homepage":"http://github.com/cthackers/adm-zip","author":{"name":"Nasca Iacob","email":"sy@another-d-mention.ro","url":"https://github.com/cthackers"},"bugs":{"email":"sy@another-d-mention.ro","url":"https://github.com/cthackers/adm-zip/issues"},"licenses":[{"type":"MIT","url":"http://github.com/kriskowal/zip/raw/master/LICENSE"}],"main":"adm-zip.js","repository":{"type":"git","url":"git://github.com/git@github.com:cthackers/adm-zip.git"},"engines":{"node":">=0.3.0"},"_id":"adm-zip@0.1.8","dist":{"shasum":"bf34a2813b500258b45fafd0229f05050a51cac7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/adm-zip/-/adm-zip-0.1.8.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"cthackers","email":"iacob.campia@gmail.com"},"maintainers":[{"name":"cthackers","email":"sy@another-d-mention.ro"}],"directories":{}},"0.1.9":{"name":"adm-zip","version":"0.1.9","description":"A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk","keywords":["zip","methods","archive","unzip"],"homepage":"http://github.com/cthackers/adm-zip","author":{"name":"Nasca Iacob","email":"sy@another-d-mention.ro","url":"https://github.com/cthackers"},"bugs":{"email":"sy@another-d-mention.ro","url":"https://github.com/cthackers/adm-zip/issues"},"licenses":[{"type":"MIT","url":"http://github.com/kriskowal/zip/raw/master/LICENSE"}],"main":"adm-zip.js","repository":{"type":"git","url":"git://github.com/git@github.com:cthackers/adm-zip.git"},"engines":{"node":">=0.3.0"},"_id":"adm-zip@0.1.9","dist":{"shasum":"22673c055cc217d3a70350aebba91ec068835c84","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/adm-zip/-/adm-zip-0.1.9.tgz"},"_npmVersion":"1.1.59","_npmUser":{"name":"cthackers","email":"sy@another-d-mention.ro"},"maintainers":[{"name":"cthackers","email":"sy@another-d-mention.ro"}],"directories":{}},"0.2.0":{"name":"adm-zip","version":"0.2.0","description":"A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk","keywords":["zip","methods","archive","unzip"],"homepage":"http://github.com/cthackers/adm-zip","author":{"name":"Nasca Iacob","email":"sy@another-d-mention.ro","url":"https://github.com/cthackers"},"bugs":{"email":"sy@another-d-mention.ro","url":"https://github.com/cthackers/adm-zip/issues"},"licenses":[{"type":"MIT","url":"http://github.com/kriskowal/zip/raw/master/LICENSE"}],"main":"adm-zip.js","repository":{"type":"git","url":"git://github.com/git@github.com:cthackers/adm-zip.git"},"engines":{"node":">=0.3.0"},"_id":"adm-zip@0.2.0","dist":{"shasum":"2942ae95b6a141b930664996acbf70e6d13a8ceb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/adm-zip/-/adm-zip-0.2.0.tgz"},"_npmVersion":"1.2.0","_npmUser":{"name":"cthackers","email":"sy@another-d-mention.ro"},"maintainers":[{"name":"cthackers","email":"sy@another-d-mention.ro"}],"directories":{}},"0.2.1":{"name":"adm-zip","version":"0.2.1","description":"A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk","keywords":["zip","methods","archive","unzip"],"homepage":"http://github.com/cthackers/adm-zip","author":{"name":"Nasca Iacob","email":"sy@another-d-mention.ro","url":"https://github.com/cthackers"},"bugs":{"email":"sy@another-d-mention.ro","url":"https://github.com/cthackers/adm-zip/issues"},"licenses":[{"type":"MIT","url":"http://github.com/kriskowal/zip/raw/master/LICENSE"}],"main":"adm-zip.js","repository":{"type":"git","url":"git://github.com/git@github.com:cthackers/adm-zip.git"},"engines":{"node":">=0.3.0"},"_id":"adm-zip@0.2.1","dist":{"shasum":"e801cedeb5bd9a4e98d699c5c0f4239e2731dcbf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/adm-zip/-/adm-zip-0.2.1.tgz"},"_npmVersion":"1.2.0","_npmUser":{"name":"cthackers","email":"sy@another-d-mention.ro"},"maintainers":[{"name":"cthackers","email":"sy@another-d-mention.ro"}],"directories":{}},"0.4.3":{"name":"adm-zip","version":"0.4.3","description":"A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk","keywords":["zip","methods","archive","unzip"],"homepage":"http://github.com/cthackers/adm-zip","author":{"name":"Nasca Iacob","email":"sy@another-d-mention.ro","url":"https://github.com/cthackers"},"bugs":{"email":"sy@another-d-mention.ro","url":"https://github.com/cthackers/adm-zip/issues"},"licenses":[{"type":"MIT","url":"http://github.com/kriskowal/zip/raw/master/LICENSE"}],"main":"adm-zip.js","repository":{"type":"git","url":"https://github.com/cthackers/adm-zip.git"},"engines":{"node":">=0.3.0"},"_id":"adm-zip@0.4.3","dist":{"shasum":"28d6a3809abb7845a0ffa38f9fff455c2c6f6f6c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/adm-zip/-/adm-zip-0.4.3.tgz"},"_from":"adm-zip","_npmVersion":"1.2.14","_npmUser":{"name":"cthackers","email":"sy@another-d-mention.ro"},"maintainers":[{"name":"cthackers","email":"sy@another-d-mention.ro"}],"directories":{}},"0.4.4":{"name":"adm-zip","version":"0.4.4","description":"A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk","keywords":["zip","methods","archive","unzip"],"homepage":"http://github.com/cthackers/adm-zip","author":{"name":"Nasca Iacob","email":"sy@another-d-mention.ro","url":"https://github.com/cthackers"},"bugs":{"url":"https://github.com/cthackers/adm-zip/issues","email":"sy@another-d-mention.ro"},"licenses":[{"type":"MIT","url":"https://raw.github.com/cthackers/adm-zip/master/MIT-LICENSE.txt"}],"main":"adm-zip.js","repository":{"type":"git","url":"https://github.com/cthackers/adm-zip.git"},"engines":{"node":">=0.3.0"},"_id":"adm-zip@0.4.4","dist":{"shasum":"a61ed5ae6905c3aea58b3a657d25033091052736","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/adm-zip/-/adm-zip-0.4.4.tgz"},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"cthackers","email":"iacob.campia@gmail.com"},"maintainers":[{"name":"cthackers","email":"iacob.campia@gmail.com"}],"directories":{}},"0.4.5":{"name":"adm-zip","version":"0.4.5","description":"A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk","keywords":["zip","methods","archive","unzip"],"homepage":"http://github.com/cthackers/adm-zip","author":{"name":"Nasca Iacob","email":"sy@another-d-mention.ro","url":"https://github.com/cthackers"},"bugs":{"url":"https://github.com/cthackers/adm-zip/issues","email":"sy@another-d-mention.ro"},"dependencies":{"fidonet-mailer-binkp-crypt":">0.0.20"},"licenses":[{"type":"MIT","url":"https://raw.github.com/cthackers/adm-zip/master/MIT-LICENSE.txt"}],"files":["adm-zip.js","headers","methods","util","zipEntry.js","zipFile.js"],"main":"adm-zip.js","repository":{"type":"git","url":"https://github.com/cthackers/adm-zip.git"},"engines":{"node":">=0.3.0"},"gitHead":"a15223754b824d2fbc259977a1c75ae5de48612d","_id":"adm-zip@0.4.5","scripts":{},"_shasum":"e0bd339920d440b723ca6bc2af8b30ddcbcb290c","_from":"adm-zip","_npmVersion":"1.4.28","_npmUser":{"name":"cthackers","email":"iacob.campia@gmail.com"},"maintainers":[{"name":"cthackers","email":"sy@another-d-mention.ro"}],"dist":{"shasum":"e0bd339920d440b723ca6bc2af8b30ddcbcb290c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/adm-zip/-/adm-zip-0.4.5.tgz"},"directories":{}},"0.4.6":{"name":"adm-zip","version":"0.4.6","description":"A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk","keywords":["zip","methods","archive","unzip"],"homepage":"http://github.com/cthackers/adm-zip","author":{"name":"Nasca Iacob","email":"sy@another-d-mention.ro","url":"https://github.com/cthackers"},"bugs":{"url":"https://github.com/cthackers/adm-zip/issues","email":"sy@another-d-mention.ro"},"dependencies":{"fidonet-mailer-binkp-crypt":">0.0.20"},"licenses":[{"type":"MIT","url":"https://raw.github.com/cthackers/adm-zip/master/MIT-LICENSE.txt"}],"files":["adm-zip.js","headers","methods","util","zipEntry.js","zipFile.js"],"main":"adm-zip.js","repository":{"type":"git","url":"https://github.com/cthackers/adm-zip.git"},"engines":{"node":">=0.3.0"},"_id":"adm-zip@0.4.6","scripts":{},"_shasum":"05a75be927293d9b0499b4cd72def20de2b1e72d","_from":"node_modules\\adm-zip","_resolved":"file:node_modules\\adm-zip","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"cthackers","email":"iacob.campia@gmail.com"},"maintainers":[{"name":"cthackers","email":"sy@another-d-mention.ro"}],"dist":{"shasum":"05a75be927293d9b0499b4cd72def20de2b1e72d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/adm-zip/-/adm-zip-0.4.6.tgz"},"directories":{}},"0.4.7":{"name":"adm-zip","version":"0.4.7","description":"A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk","keywords":["zip","methods","archive","unzip"],"homepage":"http://github.com/cthackers/adm-zip","author":{"name":"Nasca Iacob","email":"sy@another-d-mention.ro","url":"https://github.com/cthackers"},"bugs":{"url":"https://github.com/cthackers/adm-zip/issues","email":"sy@another-d-mention.ro"},"licenses":[{"type":"MIT","url":"https://raw.github.com/cthackers/adm-zip/master/MIT-LICENSE.txt"}],"files":["adm-zip.js","headers","methods","util","zipEntry.js","zipFile.js"],"main":"adm-zip.js","repository":{"type":"git","url":"https://github.com/cthackers/adm-zip.git"},"engines":{"node":">=0.3.0"},"gitHead":"6708a3e5788ff9e67ddba288397f7788a5c02855","_id":"adm-zip@0.4.7","scripts":{},"_shasum":"8606c2cbf1c426ce8c8ec00174447fd49b6eafc1","_from":"adm-zip","_resolved":"file:adm-zip","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"cthackers","email":"iacob.campia@gmail.com"},"maintainers":[{"name":"cthackers","email":"sy@another-d-mention.ro"}],"dist":{"shasum":"8606c2cbf1c426ce8c8ec00174447fd49b6eafc1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/adm-zip/-/adm-zip-0.4.7.tgz"},"directories":{}}},"name":"adm-zip","time":{"modified":"2017-04-05T14:12:09.278Z","created":"2012-02-23T13:50:30.878Z","0.1.1":"2012-02-23T13:50:33.546Z","0.1.2":"2012-02-28T12:50:42.404Z","0.1.3":"2012-03-12T15:02:07.404Z","0.1.4":"2012-08-03T06:43:52.283Z","0.1.5":"2012-08-03T06:44:19.897Z","0.1.6":"2012-09-29T08:43:59.712Z","0.1.7":"2012-09-29T08:48:36.203Z","0.1.8":"2012-10-11T19:38:19.338Z","0.1.9":"2012-11-05T07:28:17.045Z","0.2.0":"2013-02-26T14:48:50.827Z","0.2.1":"2013-03-04T15:10:00.265Z","0.4.3":"2013-04-11T09:53:19.703Z","0.4.4":"2014-02-04T19:26:45.183Z","0.4.5":"2015-02-09T08:17:36.004Z","0.4.6":"2015-02-09T19:36:00.939Z","0.4.7":"2015-02-09T19:41:11.766Z"},"readmeFilename":"README.md","homepage":"http://github.com/cthackers/adm-zip"}