{"maintainers":[{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","orf","arw","dng","nef","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic","wma","ics","glb","pcap","dsf","lnk","alias","voc","ac3","3g2","m4a","m4b","m4p","m4v","f4a","f4b","f4p","f4v"],"dist-tags":{"latest":"11.1.0"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"description":"Detect the file type of a Buffer/Uint8Array/ArrayBuffer","readme":"# file-type [![Build Status](https://travis-ci.org/sindresorhus/file-type.svg?branch=master)](https://travis-ci.org/sindresorhus/file-type)\n\n> Detect the file type of a Buffer/Uint8Array/ArrayBuffer\n\nThe file type is detected by checking the [magic number](https://en.wikipedia.org/wiki/Magic_number_(programming)#Magic_numbers_in_files) of the buffer.\n\n\n## Install\n\n```\n$ npm install file-type\n```\n\n<a href=\"https://www.patreon.com/sindresorhus\">\n\t<img src=\"https://c5.patreon.com/external/logo/become_a_patron_button@2x.png\" width=\"160\">\n</a>\n\n\n## Usage\n\n##### Node.js\n\n```js\nconst readChunk = require('read-chunk');\nconst fileType = require('file-type');\n\nconst buffer = readChunk.sync('unicorn.png', 0, fileType.minimumBytes);\n\nfileType(buffer);\n//=> {ext: 'png', mime: 'image/png'}\n```\n\nOr from a remote location:\n\n```js\nconst http = require('http');\nconst fileType = require('file-type');\n\nconst url = 'https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif';\n\nhttp.get(url, response => {\n\tresponse.on('readable', () => {\n\t\tconst chunk = response.read(fileType.minimumBytes);\n\t\tresponse.destroy();\n\t\tconsole.log(fileType(chunk));\n\t\t//=> {ext: 'gif', mime: 'image/gif'}\n\t});\n});\n```\n\nOr from a stream:\n\n```js\nconst fs = require('fs');\nconst crypto = require('crypto');\nconst fileType = require('file-type');\n\n(async () => {\n\tconst read = fs.createReadStream('encrypted.enc');\n\tconst decipher = crypto.createDecipheriv(alg, key, iv);\n\n\tconst stream = await fileType.stream(read.pipe(decipher));\n\n\tconsole.log(stream.fileType);\n\t//=> {ext: 'mov', mime: 'video/quicktime'}\n\n\tconst write = fs.createWriteStream(`decrypted.${stream.fileType.ext}`);\n\tstream.pipe(write);\n})();\n```\n\n\n##### Browser\n\n```js\nconst xhr = new XMLHttpRequest();\nxhr.open('GET', 'unicorn.png');\nxhr.responseType = 'arraybuffer';\n\nxhr.onload = () => {\n\tfileType(new Uint8Array(this.response));\n\t//=> {ext: 'png', mime: 'image/png'}\n};\n\nxhr.send();\n```\n\n\n## API\n\n### fileType(input)\n\nReturns an `Object` with:\n\n- `ext` - One of the [supported file types](#supported-file-types)\n- `mime` - The [MIME type](https://en.wikipedia.org/wiki/Internet_media_type)\n\nOr `undefined` when there is no match.\n\n#### input\n\nType: `Buffer | Uint8Array | ArrayBuffer`\n\nIt only needs the first `.minimumBytes` bytes. The exception is detection of `docx`, `pptx`, and `xlsx` which potentially requires reading the whole file.\n\n### fileType.minimumBytes\n\nType: `number`\n\nThe minimum amount of bytes needed to detect a file type. Currently, it's 4100 bytes, but it can change, so don't hardcode it.\n\n### fileType.stream(readableStream)\n\nDetect the file type of a readable stream.\n\nReturns a `Promise` which resolves to the original readable stream argument, but with an added `fileType` property, which is an object like the one returned from `fileType()`.\n\n*Note:* This method is only for Node.js.\n\n#### readableStream\n\nType: [`stream.Readable`](https://nodejs.org/api/stream.html#stream_class_stream_readable)\n\n\n## Supported file types\n\n- [`jpg`](https://en.wikipedia.org/wiki/JPEG)\n- [`png`](https://en.wikipedia.org/wiki/Portable_Network_Graphics)\n- [`gif`](https://en.wikipedia.org/wiki/GIF)\n- [`webp`](https://en.wikipedia.org/wiki/WebP)\n- [`flif`](https://en.wikipedia.org/wiki/Free_Lossless_Image_Format)\n- [`cr2`](https://fileinfo.com/extension/cr2) - Canon Raw image file (v2)\n- [`orf`](https://en.wikipedia.org/wiki/ORF_format) - Olympus Raw image file\n- [`arw`](https://en.wikipedia.org/wiki/Raw_image_format#ARW) - Sony Alpha Raw image file\n- [`dng`](https://en.wikipedia.org/wiki/Digital_Negative) - Adobe Digital Negative image file\n- [`nef`](https://www.nikonusa.com/en/learn-and-explore/a/products-and-innovation/nikon-electronic-format-nef.html) - Nikon Electronic Format image file\n- [`tif`](https://en.wikipedia.org/wiki/Tagged_Image_File_Format)\n- [`bmp`](https://en.wikipedia.org/wiki/BMP_file_format)\n- [`jxr`](https://en.wikipedia.org/wiki/JPEG_XR)\n- [`psd`](https://en.wikipedia.org/wiki/Adobe_Photoshop#File_format)\n- [`zip`](https://en.wikipedia.org/wiki/Zip_(file_format))\n- [`tar`](https://en.wikipedia.org/wiki/Tar_(computing)#File_format)\n- [`rar`](https://en.wikipedia.org/wiki/RAR_(file_format))\n- [`gz`](https://en.wikipedia.org/wiki/Gzip)\n- [`bz2`](https://en.wikipedia.org/wiki/Bzip2)\n- [`7z`](https://en.wikipedia.org/wiki/7z)\n- [`dmg`](https://en.wikipedia.org/wiki/Apple_Disk_Image)\n- [`mp4`](https://en.wikipedia.org/wiki/MPEG-4_Part_14#Filename_extensions)\n- [`mid`](https://en.wikipedia.org/wiki/MIDI)\n- [`mkv`](https://en.wikipedia.org/wiki/Matroska)\n- [`webm`](https://en.wikipedia.org/wiki/WebM)\n- [`mov`](https://en.wikipedia.org/wiki/QuickTime_File_Format)\n- [`avi`](https://en.wikipedia.org/wiki/Audio_Video_Interleave)\n- [`wmv`](https://en.wikipedia.org/wiki/Windows_Media_Video)\n- [`mpg`](https://en.wikipedia.org/wiki/MPEG-1)\n- [`mp2`](https://en.wikipedia.org/wiki/MPEG-1_Audio_Layer_II)\n- [`mp3`](https://en.wikipedia.org/wiki/MP3)\n- [`m4a`](https://en.wikipedia.org/wiki/MPEG-4_Part_14#.MP4_versus_.M4A)\n- [`ogg`](https://en.wikipedia.org/wiki/Ogg)\n- [`opus`](https://en.wikipedia.org/wiki/Opus_(audio_format))\n- [`flac`](https://en.wikipedia.org/wiki/FLAC)\n- [`wav`](https://en.wikipedia.org/wiki/WAV)\n- [`qcp`](https://en.wikipedia.org/wiki/QCP)\n- [`amr`](https://en.wikipedia.org/wiki/Adaptive_Multi-Rate_audio_codec)\n- [`pdf`](https://en.wikipedia.org/wiki/Portable_Document_Format)\n- [`epub`](https://en.wikipedia.org/wiki/EPUB)\n- [`mobi`](https://en.wikipedia.org/wiki/Mobipocket) - Mobipocket\n- [`exe`](https://en.wikipedia.org/wiki/.exe)\n- [`swf`](https://en.wikipedia.org/wiki/SWF)\n- [`rtf`](https://en.wikipedia.org/wiki/Rich_Text_Format)\n- [`woff`](https://en.wikipedia.org/wiki/Web_Open_Font_Format)\n- [`woff2`](https://en.wikipedia.org/wiki/Web_Open_Font_Format)\n- [`eot`](https://en.wikipedia.org/wiki/Embedded_OpenType)\n- [`ttf`](https://en.wikipedia.org/wiki/TrueType)\n- [`otf`](https://en.wikipedia.org/wiki/OpenType)\n- [`ico`](https://en.wikipedia.org/wiki/ICO_(file_format))\n- [`flv`](https://en.wikipedia.org/wiki/Flash_Video)\n- [`ps`](https://en.wikipedia.org/wiki/Postscript)\n- [`xz`](https://en.wikipedia.org/wiki/Xz)\n- [`sqlite`](https://www.sqlite.org/fileformat2.html)\n- [`nes`](https://fileinfo.com/extension/nes)\n- [`crx`](https://developer.chrome.com/extensions/crx)\n- [`xpi`](https://en.wikipedia.org/wiki/XPInstall)\n- [`cab`](https://en.wikipedia.org/wiki/Cabinet_(file_format))\n- [`deb`](https://en.wikipedia.org/wiki/Deb_(file_format))\n- [`ar`](https://en.wikipedia.org/wiki/Ar_(Unix))\n- [`rpm`](https://fileinfo.com/extension/rpm)\n- [`Z`](https://fileinfo.com/extension/z)\n- [`lz`](https://en.wikipedia.org/wiki/Lzip)\n- [`msi`](https://en.wikipedia.org/wiki/Windows_Installer)\n- [`mxf`](https://en.wikipedia.org/wiki/Material_Exchange_Format)\n- [`mts`](https://en.wikipedia.org/wiki/.m2ts)\n- [`wasm`](https://en.wikipedia.org/wiki/WebAssembly)\n- [`blend`](https://wiki.blender.org/index.php/Dev:Source/Architecture/File_Format)\n- [`bpg`](https://bellard.org/bpg/)\n- [`docx`](https://en.wikipedia.org/wiki/Office_Open_XML)\n- [`pptx`](https://en.wikipedia.org/wiki/Office_Open_XML)\n- [`xlsx`](https://en.wikipedia.org/wiki/Office_Open_XML)\n- [`jp2`](https://en.wikipedia.org/wiki/JPEG_2000) - JPEG 2000\n- [`jpm`](https://en.wikipedia.org/wiki/JPEG_2000) - JPEG 2000\n- [`jpx`](https://en.wikipedia.org/wiki/JPEG_2000) - JPEG 2000\n- [`mj2`](https://en.wikipedia.org/wiki/Motion_JPEG_2000) - Motion JPEG 2000\n- [`aif`](https://en.wikipedia.org/wiki/Audio_Interchange_File_Format)\n- [`odt`](https://en.wikipedia.org/wiki/OpenDocument) - OpenDocument for word processing\n- [`ods`](https://en.wikipedia.org/wiki/OpenDocument) - OpenDocument for spreadsheets\n- [`odp`](https://en.wikipedia.org/wiki/OpenDocument) - OpenDocument for presentations\n- [`xml`](https://en.wikipedia.org/wiki/XML)\n- [`heic`](https://nokiatech.github.io/heif/technical.html)\n- [`cur`](https://en.wikipedia.org/wiki/ICO_(file_format))\n- [`ktx`](https://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/)\n- [`ape`](https://en.wikipedia.org/wiki/Monkey%27s_Audio) - Monkey's Audio\n- [`wv`](https://en.wikipedia.org/wiki/WavPack) - WavPack\n- [`asf`](https://en.wikipedia.org/wiki/Advanced_Systems_Format) - Advanced Systems Format\n- [`wma`](https://en.wikipedia.org/wiki/Windows_Media_Audio) - Windows Media Audio\n- [`wmv`](https://en.wikipedia.org/wiki/Windows_Media_Video) - Windows Media Video\n- [`dcm`](https://en.wikipedia.org/wiki/DICOM#Data_format) - DICOM Image File\n- [`mpc`](https://en.wikipedia.org/wiki/Musepack) - Musepack (SV7 & SV8)\n- [`ics`](https://en.wikipedia.org/wiki/ICalendar#Data_format) - iCalendar\n- [`glb`](https://github.com/KhronosGroup/glTF) - GL Transmission Format\n- [`pcap`](https://wiki.wireshark.org/Development/LibpcapFileFormat) - Libpcap File Format\n- [`dsf`](https://dsd-guide.com/sites/default/files/white-papers/DSFFileFormatSpec_E.pdf) - Sony DSD Stream File (DSF)\n- [`lnk`](https://en.wikipedia.org/wiki/Shortcut_%28computing%29#Microsoft_Windows) - Microsoft Windows file shortcut\n- [`alias`](https://en.wikipedia.org/wiki/Alias_%28Mac_OS%29) - macOS Alias file\n- [`voc`](https://wiki.multimedia.cx/index.php/Creative_Voice) - Creative Voice File\n- [`ac3`](https://www.atsc.org/standard/a522012-digital-audio-compression-ac-3-e-ac-3-standard-12172012/) - ATSC A/52 Audio File\n- [`3gp`](https://en.wikipedia.org/wiki/3GP_and_3G2#3GP) - Multimedia container format defined by the Third Generation Partnership Project (3GPP) for 3G UMTS multimedia services\n- [`3g2`](https://en.wikipedia.org/wiki/3GP_and_3G2#3G2) - Multimedia container format defined by the 3GPP2 for 3G CDMA2000 multimedia services\n- [`m4v`](https://en.wikipedia.org/wiki/M4V) -  MPEG-4 Visual bitstreams\n- [`m4p`](https://en.wikipedia.org/wiki/MPEG-4_Part_14#Filename_extensions) - MPEG-4 files with audio streams encrypted by FairPlay Digital Rights Management as were sold through the iTunes Store\n- [`m4a`](https://en.wikipedia.org/wiki/M4A) - Audio-only MPEG-4 files\n- [`m4b`](https://en.wikipedia.org/wiki/M4B) - Audiobook and podcast MPEG-4 files, which also contain metadata including chapter markers, images, and hyperlinks\n- [`f4v`](https://en.wikipedia.org/wiki/Flash_Video) - ISO base media file format used by Adobe Flash Player\n- [`f4p`](https://en.wikipedia.org/wiki/Flash_Video) - ISO base media file format protected by Adobe Access DRM used by Adobe Flash Player\n- [`f4a`](https://en.wikipedia.org/wiki/Flash_Video) - Audio-only ISO base media file format used by Adobe Flash Player\n- [`f4b`](https://en.wikipedia.org/wiki/Flash_Video) - Audiobook and podcast ISO base media file format used by Adobe Flash Player\n\n*SVG isn't included as it requires the whole file to be read, but you can get it [here](https://github.com/sindresorhus/is-svg).*\n\n*Pull requests are welcome for additional commonly used file types.*\n\n\n## Related\n\n- [file-type-cli](https://github.com/sindresorhus/file-type-cli) - CLI for this module\n\n\n## Created by\n\n- [Sindre Sorhus](https://github.com/sindresorhus)\n- [Mikael Finstad](https://github.com/mifi)\n\n\n## License\n\nMIT\n","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"users":{"julien-f":true,"jpepe":true,"red-0ne":true,"kankungyip":true,"tomekf":true,"panlw":true,"ugarz":true,"fdaciuk":true,"timdp":true,"mlohscheidt":true,"visual.io":true,"alex-cory":true,"amit3vr":true,"moimikey":true,"blade254353074":true,"mikeifomin":true,"mrbgit":true,"faraoman":true,"oliversalzburg":true,"scottfreecode":true,"alexc1212":true,"mojaray2k":true,"paloskin":true,"anchnk":true,"wgerven":true,"akiva":true,"leodutra":true,"zixinliango":true,"benhuang":true,"pensierinmusica":true,"igasho":true,"h0ward":true,"aravindnc":true,"chrisyipw":true,"papasavva":true,"seldszar":true,"larrychen":true,"rocket0191":true,"shuoshubao":true,"psbolden":true,"michelelonghi":true,"huhgawz":true,"zhenguo.zhao":true,"weberliu":true,"tianyk":true,"oleg_tsyba":true,"x22x22":true,"eterna2":true,"justjavac":true,"kklepikov":true,"akabeko":true,"hintss":true,"shanewholloway":true,"dyakovk":true,"xiaoyiyu":true,"arniu":true,"mobeicaoyuan":true,"charlesread":true,"rangzf":true,"zuojiang":true},"bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"license":"MIT","versions":{"0.1.0":{"name":"file-type","version":"0.1.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/file-type"},"bin":{"file-type":"cli.js"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha","browser":"browserify -s $npm_package_name -o browser.js ."},"files":["index.js","cli.js"],"keywords":["file","type","archive","image","img","pic","picture","photo","type","detect","check","is","exif","binary","buffer","uint8array","cli","bin","png","jpg","gif","webp","tif","bmp","jxr","psd","7z","bz2","gz","rar","tar","zip"],"dependencies":{"archive-type":"^0.1.1","image-type":"^0.1.1","read-chunk":"^0.1.0"},"devDependencies":{"browserify":"^3.0.0","mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@0.1.0","dist":{"shasum":"d9865563a807c66c0afa874789b9af20fc4361ab","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-0.1.0.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"0.1.1":{"name":"file-type","version":"0.1.1","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/file-type"},"bin":{"file-type":"cli.js"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha","browser":"browserify -s $npm_package_name -o browser.js ."},"files":["index.js","cli.js"],"keywords":["file","type","archive","image","img","pic","picture","photo","type","detect","check","is","exif","binary","buffer","uint8array","cli","bin","png","jpg","gif","webp","tif","bmp","jxr","psd","7z","bz2","gz","rar","tar","zip"],"dependencies":{"archive-type":"^0.1.1","image-type":"^0.1.1","read-chunk":"^0.1.0"},"devDependencies":{"browserify":"^3.0.0","mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@0.1.1","dist":{"shasum":"9a38fe648543985b0bdf7696d6a0a4c5c84ad2be","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-0.1.1.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"0.2.0":{"name":"file-type","version":"0.2.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/file-type"},"bin":{"file-type":"cli.js"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha","browser":"browserify -s $npm_package_name -o browser.js ."},"files":["index.js","cli.js"],"keywords":["file","type","archive","image","img","pic","picture","photo","type","detect","check","is","exif","binary","buffer","uint8array","cli","bin","png","jpg","gif","webp","tif","bmp","jxr","psd","7z","bz2","gz","rar","tar","zip"],"dependencies":{"archive-type":"^0.1.1","image-type":"^0.1.1","is-epub":"^0.1.0","is-pdf":"^0.1.0","read-chunk":"^0.1.0"},"devDependencies":{"browserify":"^3.0.0","mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@0.2.0","dist":{"shasum":"e92e7b93537f8c25ba3f1e02dabb8379621bc0ca","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-0.2.0.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"0.3.0":{"name":"file-type","version":"0.3.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/file-type"},"bin":{"file-type":"cli.js"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha","browser":"browserify -s $npm_package_name -o browser.js ."},"files":["index.js","cli.js"],"keywords":["file","type","archive","image","img","pic","picture","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","cli","bin","png","jpg","gif","webp","tif","bmp","jxr","psd","7z","bz2","gz","rar","tar","zip","mp4"],"dependencies":{"archive-type":"^0.1.1","audio-type":"^0.1.0","image-type":"^0.1.1","is-epub":"^0.1.0","is-exe":"^0.1.0","is-pdf":"^0.1.0","read-chunk":"^0.1.0","is-mp4":"^0.1.0"},"devDependencies":{"browserify":"^3.0.0","mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@0.3.0","_shasum":"f3ccfecf163f5b95da2737a98c3b62a234bb40cc","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"f3ccfecf163f5b95da2737a98c3b62a234bb40cc","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-0.3.0.tgz"},"directories":{}},"1.0.0":{"name":"file-type","version":"1.0.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js","cli.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","cli","bin","png","jpg","gif","webp","tif","bmp","jxr","psd","7z","bz2","gz","rar","swf","tar","zip","mp4"],"dependencies":{"archive-type":"^0.1.4","audio-type":"^0.1.4","image-type":"^1.0.0","is-epub":"^0.1.2","is-exe":"^0.1.0","is-mp4":"^0.1.0","is-pdf":"^0.1.0","is-swf":"^0.1.0"},"devDependencies":{"mocha":"*","read-chunk":"^1.0.0"},"gitHead":"202985f1e101be841668f036f84d0a62f4843c9e","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@1.0.0","_shasum":"1d460b43c018aade78cdc93e845818552cb9d9be","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"1d460b43c018aade78cdc93e845818552cb9d9be","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"file-type","version":"1.0.1","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js","cli.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","cli","bin","png","jpg","gif","webp","tif","bmp","jxr","psd","7z","bz2","gz","rar","swf","tar","zip","mp4"],"dependencies":{"archive-type":"^0.1.4","audio-type":"^0.1.4","image-type":"^1.0.0","is-epub":"^1.0.0","is-exe":"^0.1.0","is-mp4":"^0.1.0","is-pdf":"^0.1.0","is-swf":"^0.1.0"},"devDependencies":{"mocha":"*","read-chunk":"^1.0.0"},"gitHead":"65a347cdc92fed97ba8b5e59545245931c8a5f3e","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@1.0.1","_shasum":"5099f86e63953ec1901b318ca763ce61e2e8a9af","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"5099f86e63953ec1901b318ca763ce61e2e8a9af","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-1.0.1.tgz"},"directories":{}},"1.0.2":{"name":"file-type","version":"1.0.2","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js","cli.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","cli","bin","png","jpg","gif","webp","tif","bmp","jxr","psd","7z","bz2","gz","rar","swf","tar","zip","mp4"],"dependencies":{"archive-type":"^1.0.0","audio-type":"^0.1.4","image-type":"^1.0.0","is-epub":"^1.0.0","is-exe":"^0.1.0","is-mp4":"^0.1.0","is-pdf":"^0.1.0","is-swf":"^0.1.0"},"devDependencies":{"mocha":"*","read-chunk":"^1.0.0"},"gitHead":"2c79143b39c857f48a3d1be52fc668c49880676d","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@1.0.2","_shasum":"ad5501f89ac2d1235b2d2fae1c8426e654d863ee","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"ad5501f89ac2d1235b2d2fae1c8426e654d863ee","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-1.0.2.tgz"},"directories":{}},"1.1.0":{"name":"file-type","version":"1.1.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","cli","bin","png","jpg","gif","webp","tif","bmp","jxr","psd","7z","bz2","gz","rar","swf","tar","zip","mp4"],"dependencies":{"archive-type":"^1.0.0","audio-type":"^0.1.4","image-type":"^1.0.0","is-epub":"^1.0.0","is-exe":"^1.0.0","is-mp4":"^0.1.0","is-pdf":"^1.0.0","is-swf":"^1.0.0","meow":"^2.0.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"ad556a05341413e97156c97b9d06516c958b2e29","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@1.1.0","_shasum":"544de9b58d69feb9e55ad74dea62999566504fe2","_from":".","_npmVersion":"2.1.4","_nodeVersion":"0.10.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"544de9b58d69feb9e55ad74dea62999566504fe2","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-1.1.0.tgz"},"directories":{}},"1.2.0":{"name":"file-type","version":"1.2.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","cli","bin","png","jpg","gif","webp","tif","bmp","jxr","psd","7z","bz2","gz","rar","swf","tar","zip","rtf","mp4"],"dependencies":{"archive-type":"^1.0.0","audio-type":"^0.1.4","image-type":"^1.0.0","is-epub":"^1.0.0","is-exe":"^1.0.0","is-mp4":"^0.1.0","is-pdf":"^1.0.0","is-swf":"^1.0.0","is-rtf":"^1.0.0","meow":"^2.0.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"0dd61e9a65c26d253fa10f3be1b4f09548514a2d","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@1.2.0","_shasum":"5d5fb9285ebfec1b298c507073aa2f3e8575fbc3","_from":".","_npmVersion":"2.1.5","_nodeVersion":"0.10.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"5d5fb9285ebfec1b298c507073aa2f3e8575fbc3","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-1.2.0.tgz"},"directories":{}},"2.0.0":{"name":"file-type","version":"2.0.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","cli","bin","jpg","png","gif","webp","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","mp4","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf"],"dependencies":{"meow":"^2.0.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"9d3643b39c26fb022ee186b6fa9cba131b01dbf0","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@2.0.0","_shasum":"d1bb7e7992ff89398f1270104526e77c48247854","_from":".","_npmVersion":"2.1.5","_nodeVersion":"0.10.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"d1bb7e7992ff89398f1270104526e77c48247854","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.0.0.tgz"},"directories":{}},"2.0.1":{"name":"file-type","version":"2.0.1","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","cli","bin","jpg","png","gif","webp","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","mp4","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf"],"dependencies":{"meow":"^2.0.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"5d7ffbfd8945b184dbfd7629261d833dd1106321","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@2.0.1","_shasum":"eb6ff4c1ebb48861682308e9e054151918a9c3cb","_from":".","_npmVersion":"2.1.5","_nodeVersion":"0.10.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"eb6ff4c1ebb48861682308e9e054151918a9c3cb","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.0.1.tgz"},"directories":{}},"2.0.2":{"name":"file-type","version":"2.0.2","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","cli","bin","jpg","png","gif","webp","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","mp4","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf"],"dependencies":{"meow":"^2.0.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"64e5699746f85045fcec12ed97ca2499064d0ecc","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@2.0.2","_shasum":"c919ac31ecae7bb08058584f09b54fcb7afb69ca","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"c919ac31ecae7bb08058584f09b54fcb7afb69ca","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.0.2.tgz"},"directories":{}},"2.0.3":{"name":"file-type","version":"2.0.3","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","cli","bin","jpg","png","gif","webp","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","mp4","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf"],"dependencies":{"meow":"^2.0.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"25b0a7eb173b985287b3ff4f25f779a87712be8a","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@2.0.3","_shasum":"18fc71f4e8699cb03597ffc77654cbf5b346a9f3","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"18fc71f4e8699cb03597ffc77654cbf5b346a9f3","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.0.3.tgz"},"directories":{}},"2.0.4":{"name":"file-type","version":"2.0.4","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","cli","bin","jpg","png","gif","webp","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","mp4","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf"],"dependencies":{"meow":"^2.0.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"fd428c571e5929d685444baad24e660610c3d61e","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@2.0.4","_shasum":"01a533bcababed1aadd7108044ff3f9194b2fe16","_from":".","_npmVersion":"2.3.0","_nodeVersion":"1.0.4","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"01a533bcababed1aadd7108044ff3f9194b2fe16","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.0.4.tgz"},"directories":{}},"2.1.0":{"name":"file-type","version":"2.1.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","cli","bin","jpg","png","gif","webp","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","mp4","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf","woff","woff2","eot"],"dependencies":{"meow":"^3.0.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"731edf8cf638ae78b64971c10f894f91e7ba82e1","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@2.1.0","_shasum":"d5d1be308b69b9c97297c8b9ec008b29840a45ed","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"d5d1be308b69b9c97297c8b9ec008b29840a45ed","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.1.0.tgz"},"directories":{}},"2.2.0":{"name":"file-type","version":"2.2.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","cli","bin","jpg","png","gif","webp","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","mp4","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf"],"dependencies":{"meow":"^3.0.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"98f2b958b9e78b3541385cc67aff0c2713c95a41","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@2.2.0","_shasum":"36194f4c1375d566ef5d41915fccf703b72d6c18","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"36194f4c1375d566ef5d41915fccf703b72d6c18","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.2.0.tgz"},"directories":{}},"2.3.0":{"name":"file-type","version":"2.3.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","cli","bin","jpg","png","gif","webp","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","mp4","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf"],"dependencies":{"meow":"^3.0.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"b3413ed1d2ee6a18b69289e4bbc7a0511c226acf","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@2.3.0","_shasum":"ed2706406c23bc3c3fd82d7567db39e9c0a25d9d","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"ed2706406c23bc3c3fd82d7567db39e9c0a25d9d","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.3.0.tgz"},"directories":{}},"2.4.0":{"name":"file-type","version":"2.4.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","cli","bin","jpg","png","gif","webp","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","mp4","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv"],"dependencies":{"meow":"^3.0.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"5e30103903bdbf341813760dfb18c2c786caef01","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@2.4.0","_shasum":"5a24b7694c59ab512696c09dc4a96c021fa722d3","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"5a24b7694c59ab512696c09dc4a96c021fa722d3","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.4.0.tgz"},"directories":{}},"2.5.0":{"name":"file-type","version":"2.5.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","cli","bin","jpg","png","gif","webp","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","mp4","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps"],"dependencies":{"meow":"^3.0.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"03ba5b0294346cfd50b5ca68ed56d71087e8b6ed","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@2.5.0","_shasum":"8af53f9eac351c38b4cfbea01588b502420fefc3","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"8af53f9eac351c38b4cfbea01588b502420fefc3","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.5.0.tgz"},"directories":{}},"2.6.0":{"name":"file-type","version":"2.6.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","cli","bin","jpg","png","gif","webp","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","mp4","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz"],"dependencies":{"meow":"^3.0.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"000354a3766e2e83918bff729be4c639c7564421","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@2.6.0","_shasum":"c8c3eb5d76fe5c84e3a1ea3dd1b66df6d47d0080","_from":".","_npmVersion":"2.9.0","_nodeVersion":"0.10.38","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"c8c3eb5d76fe5c84e3a1ea3dd1b66df6d47d0080","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.6.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"2.7.0":{"name":"file-type","version":"2.7.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["cli-app","cli","mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","mp4","m4v","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz"],"dependencies":{"meow":"^3.0.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"f3b02ecd76be5bb546439318bf1cd5604ef31a29","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@2.7.0","_shasum":"59ac58a198f037574b1d820eb6d8b77163fbb715","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"59ac58a198f037574b1d820eb6d8b77163fbb715","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.7.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"2.8.0":{"name":"file-type","version":"2.8.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["cli-app","cli","mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","tif","bmp","jxr","psd","sketch","zip","tar","rar","gz","bz2","7z","mp4","m4v","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz"],"dependencies":{"meow":"^3.3.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"2918e4953c47e460bfeec2407b23d1b6f67aaf2e","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@2.8.0","_shasum":"be5d3e0bb7d70047909c0774ac549e82332eefeb","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"be5d3e0bb7d70047909c0774ac549e82332eefeb","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.8.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"2.9.0":{"name":"file-type","version":"2.9.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["cli-app","cli","mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","cr2","tif","bmp","jxr","psd","sketch","zip","tar","rar","gz","bz2","7z","mp4","m4v","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz"],"dependencies":{"meow":"^3.3.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"0b1a56c50a644c0521820e616e0bbc3297911a80","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@2.9.0","_shasum":"01cf80e2aea9404fc30ff12a0c09a4685fa313f1","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"01cf80e2aea9404fc30ff12a0c09a4685fa313f1","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.9.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"2.10.0":{"name":"file-type","version":"2.10.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["cli-app","cli","mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","cr2","tif","bmp","jxr","psd","sketch","zip","tar","rar","gz","bz2","7z","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz"],"dependencies":{"meow":"^3.3.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"2933a9b718584d524af72802d4c057a4c6513822","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@2.10.0","_shasum":"feb8b2937bab54bec664de6e5fd2fda4cfde1e07","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"feb8b2937bab54bec664de6e5fd2fda4cfde1e07","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.10.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"2.10.1":{"name":"file-type","version":"2.10.1","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["cli-app","cli","mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite"],"dependencies":{"meow":"^3.3.0"},"devDependencies":{"ava":"0.0.4","read-chunk":"^1.0.0"},"gitHead":"5842ecd4bb9dfc955686b3a618f206b4da14f6e3","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@2.10.1","_shasum":"62cf949485f2ea60c6cff9b8cdb7c3aa98fa86ed","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"62cf949485f2ea60c6cff9b8cdb7c3aa98fa86ed","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.10.1.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"2.10.2":{"name":"file-type","version":"2.10.2","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js","cli.js"],"keywords":["cli-app","cli","mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite"],"dependencies":{"meow":"^3.3.0","read-chunk":"^1.0.1"},"devDependencies":{"ava":"0.0.4"},"gitHead":"3211f10cf1f4cf1a4b5f8877e012a49b7358e173","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@2.10.2","_shasum":"9bddf754bbb3cda04bb1887cde73513a31aa8620","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"9bddf754bbb3cda04bb1887cde73513a31aa8620","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.10.2.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"2.11.0":{"name":"file-type","version":"2.11.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js","cli.js"],"keywords":["cli-app","cli","mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite"],"dependencies":{"meow":"^3.3.0","read-chunk":"^1.0.1"},"devDependencies":{"ava":"*","xo":"*"},"gitHead":"0cb781c6ae6ed2a5a72265d8bbc52a0d2e37fcae","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@2.11.0","_shasum":"d6b83629f89d77608a08da3da60350f06e95f6be","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"d6b83629f89d77608a08da3da60350f06e95f6be","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.11.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"2.12.0":{"name":"file-type","version":"2.12.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"bin":{"file-type":"cli.js"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js","cli.js"],"keywords":["cli-app","cli","mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite"],"dependencies":{"meow":"^3.3.0","read-chunk":"^1.0.1"},"devDependencies":{"ava":"*","xo":"*"},"gitHead":"be5c47e3b9c8e8658cbe939ea56582e3add9fc56","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@2.12.0","_shasum":"f48bddf87caef95e40b1e7653cf15bb68190ef1d","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"f48bddf87caef95e40b1e7653cf15bb68190ef1d","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-2.12.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"3.0.0":{"name":"file-type","version":"3.0.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite"],"devDependencies":{"ava":"*","read-chunk":"^1.0.1","xo":"*"},"gitHead":"3089f9f4bd969945936cd6438a3f87b10eef7519","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@3.0.0","_shasum":"93928b6f802e669806735b33fda660321fe3b751","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"93928b6f802e669806735b33fda660321fe3b751","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-3.0.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"3.1.0":{"name":"file-type","version":"3.1.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite"],"devDependencies":{"ava":"*","read-chunk":"^1.0.1","xo":"*"},"gitHead":"e2957252eed84de51d31cd34168416991d8e540f","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@3.1.0","_shasum":"17ce4f60e4d1a7aaf5479ea2074f196723022198","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"17ce4f60e4d1a7aaf5479ea2074f196723022198","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-3.1.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"3.1.1":{"name":"file-type","version":"3.1.1","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite"],"devDependencies":{"ava":"*","read-chunk":"^1.0.1","xo":"*"},"gitHead":"f8759d9f477a98290c4952b964893e7f53b667ca","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@3.1.1","_shasum":"0efa1969c5914d2f3bc30ed1b314918c2bacd7c4","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"0efa1969c5914d2f3bc30ed1b314918c2bacd7c4","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-3.1.1.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"3.2.0":{"name":"file-type","version":"3.2.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite"],"devDependencies":{"ava":"*","read-chunk":"^1.0.1","xo":"*"},"gitHead":"14a48a3f27550089463920e9b992a72fe7c934ae","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@3.2.0","_shasum":"a433ae2117569b947511ef86167eb7238f5c6a4f","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"a433ae2117569b947511ef86167eb7238f5c6a4f","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-3.2.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"3.3.0":{"name":"file-type","version":"3.3.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","Z","lz"],"devDependencies":{"ava":"*","read-chunk":"^1.0.1","xo":"*"},"gitHead":"1306f13b669147e3da3c92656194d05283c39828","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@3.3.0","_shasum":"3e86dcf2f5b36a00880ef9f5a190e81d249ce379","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"3e86dcf2f5b36a00880ef9f5a190e81d249ce379","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-3.3.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"3.3.1":{"name":"file-type","version":"3.3.1","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","Z","lz"],"devDependencies":{"ava":"*","read-chunk":"^1.0.1","xo":"*"},"gitHead":"111a30ce6e3ccf980d663b6e793b5fa64d085145","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@3.3.1","_shasum":"31f30e60928fa9fc2aac7c43af38efb1c3ad663b","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"31f30e60928fa9fc2aac7c43af38efb1c3ad663b","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-3.3.1.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"3.4.0":{"name":"file-type","version":"3.4.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","Z","lz"],"devDependencies":{"ava":"*","read-chunk":"^1.0.1","xo":"*"},"gitHead":"2bcbd763aa26de0430c4cef70cf15f11a6b236c6","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@3.4.0","_shasum":"0ce9533660d4432a945a827bae30fde7c4b76588","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"0ce9533660d4432a945a827bae30fde7c4b76588","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-3.4.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"3.5.0":{"name":"file-type","version":"3.5.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz"],"devDependencies":{"ava":"*","read-chunk":"^1.0.1","xo":"*"},"gitHead":"4d33ad21b908baf65af3070be62efdb1b236e476","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@3.5.0","_shasum":"6ae1c358d91a796933de68bfd7f165e422786d0c","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"6ae1c358d91a796933de68bfd7f165e422786d0c","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-3.5.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"3.6.0":{"name":"file-type","version":"3.6.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi"],"devDependencies":{"ava":"*","read-chunk":"^1.0.1","xo":"*"},"gitHead":"88e5a77f199e70164d9fa226bf878f044e74cba4","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@3.6.0","_shasum":"07c23622cb549a672de799ebc5dbf3143c758507","_from":".","_npmVersion":"3.6.0","_nodeVersion":"4.2.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"07c23622cb549a672de799ebc5dbf3143c758507","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-3.6.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"3.7.0":{"name":"file-type","version":"3.7.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi"],"devDependencies":{"ava":"*","read-chunk":"^1.0.1","xo":"*"},"gitHead":"9310bfc110d5668a012e350675ccb361edd63fdb","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@3.7.0","_shasum":"7f13423cae007b676c48343ae2d7bfe18fb59d24","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"7f13423cae007b676c48343ae2d7bfe18fb59d24","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-3.7.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/file-type-3.7.0.tgz_1454770265003_0.990329232532531"},"directories":{}},"3.8.0":{"name":"file-type","version":"3.8.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/file-type"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi"],"devDependencies":{"ava":"*","read-chunk":"^1.0.1","xo":"*"},"gitHead":"b7bda4e8949ff153fb5229463b0a9288117ef41e","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type","_id":"file-type@3.8.0","_shasum":"bcadf6a8f624ebe4a10e5ad26727b6b93f16d78d","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"bcadf6a8f624ebe4a10e5ad26727b6b93f16d78d","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-3.8.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/file-type-3.8.0.tgz_1456830963993_0.1638164035975933"},"directories":{}},"3.9.0":{"name":"file-type","version":"3.9.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"c72c5c1462e771e08ca8ddd02945586adab9d8c5","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@3.9.0","_shasum":"257a078384d1db8087bc449d107d52a52672b9e9","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.6.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"257a078384d1db8087bc449d107d52a52672b9e9","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-3.9.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/file-type-3.9.0.tgz_1476758141593_0.33858225168660283"},"directories":{}},"4.0.0":{"name":"file-type","version":"4.0.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"xo":{"esnext":true},"gitHead":"b2bcc7c05ba593b1f6a4be47cd6f9ccb55ac5e2c","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@4.0.0","_shasum":"2bf44cf97112ae5040752f731ac5f329aad29522","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.6.2","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"2bf44cf97112ae5040752f731ac5f329aad29522","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-4.0.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/file-type-4.0.0.tgz_1481659873453_0.00603754841722548"},"directories":{}},"4.1.0":{"name":"file-type","version":"4.1.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"xo":{"esnext":true},"gitHead":"2f2b70264c36d5ffc16a52ad95095dfa72f5ef68","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@4.1.0","_shasum":"690b70293715d7fd39697e38f7a108ebab2551b9","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"690b70293715d7fd39697e38f7a108ebab2551b9","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-4.1.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/file-type-4.1.0.tgz_1484808353795_0.8719478752464056"},"directories":{}},"4.2.0":{"name":"file-type","version":"4.2.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","wasm","webassembly"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"98ed3a05562e629cbd6da5a8107a52899ddce8b8","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@4.2.0","_shasum":"3971643aa8fbe4145bdbaefe4d714d8b81ae1849","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.7.3","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"3971643aa8fbe4145bdbaefe4d714d8b81ae1849","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-4.2.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/file-type-4.2.0.tgz_1492353101207_0.20817364961840212"},"directories":{}},"4.3.0":{"name":"file-type","version":"4.3.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","wasm","webassembly"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"95a95a763cf86e6ade5d9221ecbfd7a0274cae25","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@4.3.0","_shasum":"b26f0a35e03f6857848d18b8a27238448caa79a5","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"b26f0a35e03f6857848d18b8a27238448caa79a5","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-4.3.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/file-type-4.3.0.tgz_1494056781393_0.691286314278841"},"directories":{}},"4.4.0":{"name":"file-type","version":"4.4.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","wasm","webassembly","blend"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"b5d90406ec3c313a4411badcb1d25e263c0cf5bd","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@4.4.0","_shasum":"1b600e5fca1fbdc6e80c0a70c71c8dba5f7906c5","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.3","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"1b600e5fca1fbdc6e80c0a70c71c8dba5f7906c5","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-4.4.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type-4.4.0.tgz_1496725247930_0.3560223968233913"},"directories":{}},"5.0.0":{"name":"file-type","version":"5.0.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","wasm","webassembly","blend"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"a5b4b21440e59225238b37deeac7cdae5698a0a3","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@5.0.0","_shasum":"68dfe735ef37155ee6aa9a58951f0cca796e726e","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.3","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"68dfe735ef37155ee6aa9a58951f0cca796e726e","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-5.0.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type-5.0.0.tgz_1496727380056_0.9482669611461461"},"directories":{}},"5.1.0":{"name":"file-type","version":"5.1.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"f3dd7f301959894bb9ee1511132d28e7ce3f4aab","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@5.1.0","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-gBloJdas8OnXdogPsFJ8+PtojnyOqKaBQn8Eve8im46iRv/DPDp0MrBv+PW3iptTtdhRuD162oVLPcE31+yOUA==","shasum":"70c135da40b69c7991bedd0f25c8cde2ae7b758a","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-5.1.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type-5.1.0.tgz_1496960562132_0.37857316387817264"},"directories":{}},"5.1.1":{"name":"file-type","version":"5.1.1","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"c3deaacef5160cf1db8dcf3093315c364d06a837","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@5.1.1","_shasum":"b3ff41bbbb985e2fe5f4526234cb031c701ee5cd","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.3","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"b3ff41bbbb985e2fe5f4526234cb031c701ee5cd","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-5.1.1.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type-5.1.1.tgz_1497017023812_0.0833444856107235"},"directories":{}},"5.2.0":{"name":"file-type","version":"5.2.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"a08a8b8a6fde66d8cb5f710334c30b73a82b98d2","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@5.2.0","_shasum":"2ddbea7c73ffe36368dfae49dc338c058c2b8ad6","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.3","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"2ddbea7c73ffe36368dfae49dc338c058c2b8ad6","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-5.2.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type-5.2.0.tgz_1497380341005_0.10866776178590953"},"directories":{}},"6.1.0":{"name":"file-type","version":"6.1.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","type","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","exe","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"c163dd0ffe54547305aa7d92d3d84b6ae46bc7f6","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@6.1.0","_shasum":"5a7dba98138fa0abec7afc43e5a9a0b2aac729f1","_from":".","_npmVersion":"4.6.1","_nodeVersion":"4.8.3","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"5a7dba98138fa0abec7afc43e5a9a0b2aac729f1","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-6.1.0.tgz"},"maintainers":[{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"},{"email":"kevinmartensson@gmail.com","name":"kevva"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type-6.1.0.tgz_1502803020307_0.25253547891043127"},"directories":{}},"6.2.0":{"name":"file-type","version":"6.2.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"d6e6fd014e4d5a830874cb5508bfaa2a94adfc64","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@6.2.0","_npmVersion":"5.3.0","_nodeVersion":"8.5.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==","shasum":"e50cd75d356ffed4e306dc4f5bcf52a79903a919","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-6.2.0.tgz"},"maintainers":[{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"},{"email":"kevinmartensson@gmail.com","name":"kevva"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type-6.2.0.tgz_1506162759978_0.6036582558881491"},"directories":{}},"7.0.1":{"name":"file-type","version":"7.0.1","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"e7d0c8b035249976e729b139d9200f4e40bd6414","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@7.0.1","_npmVersion":"5.4.1","_nodeVersion":"6.11.2","_npmUser":{"name":"mifi","email":"finstaden@gmail.com"},"dist":{"integrity":"sha512-Q/wIxU3U5h00EhaC1uJwPDBHj2Q6RtHaMlAlPTTBgGW1YhM4MtdGZaFZN+I3mkv1hM4TVPA0sDfGHKdQZW35Tw==","shasum":"47c201e2b6bf1631957949ff395a363659d33c85","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-7.0.1.tgz"},"maintainers":[{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"},{"email":"kevinmartensson@gmail.com","name":"kevva"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type-7.0.1.tgz_1507494850839_0.3287499777507037"},"directories":{}},"7.1.0":{"name":"file-type","version":"7.1.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"f865424e4a0e5262d302ebd601ba4e7f0c6dfcdf","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@7.1.0","_shasum":"fe25e4904df5715ec8255a1f214991b6605e2bea","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.3","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"fe25e4904df5715ec8255a1f214991b6605e2bea","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-7.1.0.tgz"},"maintainers":[{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"},{"email":"kevinmartensson@gmail.com","name":"kevva"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type-7.1.0.tgz_1508123823709_0.5889691386837512"},"directories":{}},"7.2.0":{"name":"file-type","version":"7.2.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"19facf2312102c118f61d40ab2107743c606b104","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@7.2.0","_shasum":"113cfed52e1d6959ab80248906e2f25a8cdccb74","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.3","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"113cfed52e1d6959ab80248906e2f25a8cdccb74","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-7.2.0.tgz"},"maintainers":[{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"},{"email":"kevinmartensson@gmail.com","name":"kevva"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type-7.2.0.tgz_1508224106823_0.616572470869869"},"directories":{}},"7.3.0":{"name":"file-type","version":"7.3.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"476116504f0b1ed4a14b014587df1e166e2fe4e9","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@7.3.0","_shasum":"18869760e10c36c0416d53083684fcfc0d59df3a","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"18869760e10c36c0416d53083684fcfc0d59df3a","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-7.3.0.tgz"},"maintainers":[{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"},{"email":"kevinmartensson@gmail.com","name":"kevva"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type-7.3.0.tgz_1511358864456_0.6441150668542832"},"directories":{}},"7.4.0":{"name":"file-type","version":"7.4.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"4352a5359f98baa7240f747e17da3e74ac73ba00","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@7.4.0","_shasum":"2a7c94f62a0030150bb7d9b6c70cfa1d3e759c86","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"2a7c94f62a0030150bb7d9b6c70cfa1d3e759c86","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-7.4.0.tgz"},"maintainers":[{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"},{"email":"kevinmartensson@gmail.com","name":"kevva"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type-7.4.0.tgz_1512155549359_0.7855098040308803"},"directories":{}},"7.5.0":{"name":"file-type","version":"7.5.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"7c860fda6dc379a774e52fc5de56355712e6078e","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@7.5.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-siGSLPCL9mJM10TaTswSF2Ry60stJaemPbAf2StSGOcjlfVIA2V/wX3Qg8IiTHmGLMch0ZaM9DhszSo5rfIulg==","shasum":"573219a45b9cf06ac904443e805bc0217b5a3516","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-7.5.0.tgz"},"maintainers":[{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"},{"email":"kevinmartensson@gmail.com","name":"kevva"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type-7.5.0.tgz_1516503837886_0.9545979232061654"},"directories":{}},"7.6.0":{"name":"file-type","version":"7.6.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"49f8ba21ee77d379831546885f558ba91475b62a","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@7.6.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-EAogdjMKf0PEU26Wk+N/Qkg8JXpMRo9t70dg7+t9QvcYUZb/XfA66Hdt15g4xRdam4wgiQsg/qycKUIuZQDJog==","shasum":"b3dbfc8029148e86f30761b21253562943d21f06","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-7.6.0.tgz","fileCount":4,"unpackedSize":24464},"maintainers":[{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_7.6.0_1518754833582_0.2083457132044333"},"_hasShrinkwrap":false},"7.7.0":{"name":"file-type","version":"7.7.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"27f35fcaa19212e1ae070af23d0c01b8078cc317","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@7.7.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-P/r9zJCKvl471gpZBCITHGc7qw1OKVBltbtJZYPzF/ElAiK+NWA6rgOdGpB+xVI9smFJuXE+pbPZCZtOFsgtFA==","shasum":"502307df715d51eeeec1b7f0b8556cc618390456","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-7.7.0.tgz","fileCount":4,"unpackedSize":24628,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5hWfCRA9TVsSAnZWagAAPq0P/ihmX5oixBJLG8fXRiJK\nAga6UR/TVlHx2pXtq9XFNnRboYCPIpbrwIXOz427nBJx7Vy4NazJ585CMmX4\nhddVfhspQNj+Limf42SDm3qSrXlg/ljdf5rxB6I7RUxNN5ysVk6Ympsg5RoQ\nad9IxPKSfDlLl+bFNg5h+cgRU3pvbqW0EHmXi94z69eaeoKUQ4J/mr8YcMG3\nsdlisdDzG+zVRy/+4HJXRA/Dy8jI5yHfJ4SxarlYc3Yz3h0dsO2+cBOaMjnR\n4kqYeM+EGkVQtBecnEgfmJaqToJb13fo7eLj+2eD9iX3aLoq1J1NZKIXUGl3\na+pmB+g+QVejA5+ugPixvASbOJNrdMGxv+gurZxie9xeCO2uTm7G3U66XBXX\n3Ffkj5zg7vie1c/8IIlXR6rQSdsN/QozS386KIIkBIt3zQHjl/fIqV9f0PXK\nPd+sGYNEy/REgsRwpp4D5ilycXenSbSChF4Skoz+1ypDd7lzqvh+bjXBbd8r\nsZbNeTi8rRAbXXT464R4HsNFBOp8V3Jd9Olj2iKJBpv9ODeHV4UNXJ7WwEzl\nl0fYwMKUyQL4v49edjOYWt74gEGxDWaKlupb81+hLQY8d7z7k+U8iyOZLrWz\n98V80kdm+TF0E01XpTcoVxUHSJPAh7FOvfyhp8DvHxqCmXdfSYc/cBXqFt8e\ndmxO\r\n=gUeH\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_7.7.0_1525028253824_0.5486037346602872"},"_hasShrinkwrap":false},"7.7.1":{"name":"file-type","version":"7.7.1","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"ab4060104d606302a1ee5619b12954b553d3a8e5","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@7.7.1","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-bTrKkzzZI6wH+NXhyD3SOXtb2zXTw2SbwI2RxUlRcXVsnN7jNL5hJzVQLYv7FOQhxFkK4XWdAflEaWFpaLLWpQ==","shasum":"91c2f5edb8ce70688b9b68a90d931bbb6cb21f65","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-7.7.1.tgz","fileCount":4,"unpackedSize":24622,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5r1UCRA9TVsSAnZWagAAhQIP/i1KiOkD/NcFLj8zncGG\n5x64LjAhIhftf3OQ4vKbaV9TtjRAn25wLW4AoNb8BRpTea5UP+zCgFm8TyYb\nfZBt3x/6zCReEpTyNSKxY3/hjZsZLvBrk77VtjdUxnfxal/PZWuP5aLXK5nn\njpru+jfofePX655++z8awoT+EDYbNzTx1qjBW8DcRcEZiayWmUVLDvawB3ea\nFa6R3m/XgX8VWGSbtFfMY7PxF0gajx1w1QORoRms72UXXMM7DUuMwUD4wEIe\n+d5knBJ8WCQlzlfwWUtDuH1BApHL3sdtJb02jfodar5S1MhUDbFwnwUKkbsf\n3IGpcmK1lsV+/bX4FYgK0pUgtm/Tn1c4ZDgfPH24sIWCQthWJfhcO7yubktb\nNrZU/UEIYFEZYQ0uq6RjoWZHl2La9iwdt9tm/f6AQmLUJCFbKT7hMRSOqral\nmqgpHRWW67atC7egUbFj3Fn/lsMIqXANC4x0+uSvw8b+QiKZ+iN5a7e94mM8\nZ2nYgBAOylpS60w0/Vle7HLfPqrGJ+6cG7Kyj/B6EIzCxKmCHKvy8puEXuCa\ndj1DVEBPye7gyCIcRAvlYenYAQMC3YqqJL+lutHy6VXRNRYf3pszLuBmJSsX\nHcuOyXXXwG7YZQZdhLibsSmG9zp9V+E34BOEKElyi9buvuUG5G5NE+6+mJxH\nG8pb\r\n=ETrF\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_7.7.1_1525071187782_0.7661168502724685"},"_hasShrinkwrap":false},"8.0.0":{"name":"file-type","version":"8.0.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"3ee88a0a3724b4ed7e4835218f7520e48f3f5ac8","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@8.0.0","_npmVersion":"5.6.0","_nodeVersion":"8.4.0","_npmUser":{"name":"mifi","email":"finstaden@gmail.com"},"dist":{"integrity":"sha512-vaWQ+6lIlPyzIRSqxcSaOhTPLOWTdVuzSwDvfOKEcnJS7B0yzJHMzAG8Z3+qNBXS7CPP/7PsGLTlAmRq0X5A+w==","shasum":"6e4bccc741187f4113334a4e4a4ef84d54d7cc1e","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-8.0.0.tgz","fileCount":4,"unpackedSize":25140,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa9s2DCRA9TVsSAnZWagAAljgP/2cO9wmNLO4tgtXAnj9y\nlgKAB2SjFWwIhQWjL2sx+ejQ3hvKwYXj+sfddo53AtL2sHQMw4+BIbUtLMl/\nn3lKQLxUot55vg6asYAuf3WZcixc4Xd19tK1orQtBOiZuzAybmWFrpUNhUwd\nWThefPKHxiLq3+lKEWNfV2LhSct5X3r+UEgOpUtQzKwKTEGOnsU35CVWkqqJ\nbH2rRiM3iRQHvy3edbYmLMcsXgmnHBs5FClYneVYTwZuhyRR9TH5+/A45Rje\nX/ZbAgZEBM1Ly5fH0zvPSb1CP0v8kmbkoX7xqhOmCdAkhraIyhICSGPIPFQA\nuXwZ4a8IDXlVVh8E8e/xfJxWsKL6EgjI3BePLxLyFQrPFUtzqYSx88+JC/Ea\n8UQyF/CEAvqt3fzJbGWPIOImwk0fdZQOT/ureYM0/FIWYCRlqqaGLb5NQ6SD\nyMq8EaOsdYLw14WX43j2ZnEQUCwqKPIvaB/mQnmbS4MV/wFJUp3kfzdTNb8c\n+n/hL7CBvMMcSIJ7ixLdfRMdembRnaHc83YG8miaMH2R7ViX53u1l5JRU3or\neHAhv9EGk3usZi7uve0Y+NTe9eGZFWjk6t8fPJMsfvOBHie/Ez5VR1FkFz2a\nry7uPvEGsyLPUWEFNjr5Cg+uRqdVGjqUbURi0by67I2T+X5T73+/VoACsTin\npbJP\r\n=tpWL\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_8.0.0_1526123905699_0.8141756754822538"},"_hasShrinkwrap":false},"8.1.0":{"name":"file-type","version":"8.1.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"0333b2a77f4c4d04a927010a1f9a17e53710b093","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@8.1.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==","shasum":"244f3b7ef641bbe0cca196c7276e4b332399f68c","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-8.1.0.tgz","fileCount":4,"unpackedSize":25531,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbQcGpCRA9TVsSAnZWagAANjsQAJxKvAc2x9C4AEW32q0a\n216AQKgziY30DChlaRa31B5oF3h/x0mD0eQFjfeg51uFQFcj7RRGQIm0OxO7\nA2A/5iMIUPahbvU9lnSfe02PvNwBmdrbHmI6nNROVcWGodP0PkYNOMVggHXA\ncIXrgYDFy4wfYjC6vxVueSmelsuvkvdPAToz3W60feFrQAE+pzYUi5CQ8B0U\ncUfRFIJM5hF7nqwG6eCBXP7fQJ2P8jB1nFoVM9enxLPpejo4eC2YsLT85Wqj\nXZ7Ip39E+TRWoEFXvAb3d+4TM9NpRDCBIFpokIVwQCi2rvzwoXL9exWaPkcy\nlq0RHeay867RoiNqmqysfGU18V4PByRAc7uiRSqnIfTKoLjlUn6RVbL3H4pV\n8oRGtLdzgmVhfi59xBuDezg50MJ1LHs3aVX7vbkYfnRxc9JEdVyd77ROpCYm\nKyW1dOJeZ0A+XgA9srDDW86qzzpDfiH/2mUt0VsZK66W0O/mI4380xhEmMMK\ngTdCt/NSK3nq7t9mGvQbNndLUd9psq+RuEUpvck0lTrk+5zaiLGqicobPNSJ\n/ws4nYYSn9Ax+Wl3yD0laE8OqxX9nXEjVyhi3yaOm/dVHbHFk6oKCc7k45CA\n82K5+LC5741Spj75eWrhbIxfL2pBbdl9dCVfyM+ROAlljOiAlqTwyePp31f9\nI5g/\r\n=PGfq\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_8.1.0_1531036073312_0.7216362467655302"},"_hasShrinkwrap":false},"9.0.0":{"name":"file-type","version":"9.0.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"4dea313f83458c86e7a0ff4d85df0e09161a77b9","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@9.0.0","_npmVersion":"6.3.0","_nodeVersion":"8.11.3","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-Qe/5NJrgIOlwijpq3B7BEpzPFcgzggOTagZmkXQY4LA6bsXKTUstK7Wp12lEJ/mLKTpvIZxmIuRcLYWT6ov9lw==","shasum":"a68d5ad07f486414dfb2c8866f73161946714a18","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-9.0.0.tgz","fileCount":4,"unpackedSize":26340,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbUGdCRA9TVsSAnZWagAATb0P/0PPdBEFT6+TG1PHcGam\n/9LePjxR/b6BBE2zJDtIORzdbExSJsWF8KoRqgAqzoMYmj3Px5l0WtslP6Nt\n6HEj/lA67HWAzxl+8b/Er0Q+zEibUe+SouW2IWQeJKMW7N+9GSnffTVHWtrR\n7z4aRlX3QvNgJVralZ3OHusJeZFlSBzXByOKkWRGB/epsLT4Y9+KR2vouHgJ\nguEk/ymXBrpi+yQnI3l0gN/89oxfYl2yu4P4kmr4J1ezFI3MMW/oangAezs+\n9mJZ6HqYiETOY+Xju+GdgOkeV0HtioTjzZkOLSA5LnbkduTx0nsi5BVIck23\nL2IZp/S+++lW3HAr6kShwa7L6nCfq6L6EytXp6N6eaZ1bisn6JHxK4/V7BWG\nbr2rW2IdT78AXLfvMrjiODV52KQ4UdAA2SJHOm+q8+CwhMwnXjnpBa5W9wyh\n9408CYqofvYQqBu3BHR70eVHohEFd70Xll3IKGAjpRF4rVKT8IWUasQZJkz1\nSfkEo6t3SrAF2yXrn/GR0GIA81yzuppZXI0cfd2vMCd4KGL6H7ncFKL5nyAG\n+MU3Wq3IxslTVnYdP160ZZkWNxcruf/hXc/D+IkZnoAEDxulRmSAeIk88FVj\nMgrfUBxNlD8LOWUwTDQWoyFZBGWETKGksfcdOaMx1k0vmhFKifd587v5YeNC\neAuY\r\n=/Mte\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_9.0.0_1533886877100_0.5748710868359783"},"_hasShrinkwrap":false},"10.0.0":{"name":"file-type","version":"10.0.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava"},"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic","wma"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"7c81da930bd1dc7c42069095cdead0dc536436e1","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@10.0.0","_npmVersion":"6.4.1","_nodeVersion":"8.12.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-lKSLYIUQpx+HkWbnBEbW+GEcK1gYLwvlFp8i91yjzKGZD36tmZJ2Yl0f65umHWN6XlUWu+Jr56a4sYP7M/qmnw==","shasum":"084f32ab827238aa9a1482195ca7448c77a006b3","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-10.0.0.tgz","fileCount":4,"unpackedSize":27751,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbukJuCRA9TVsSAnZWagAA6BUP+wR8t4ek8DMlU+AYA3Gm\nU8NnkzofSUzSVLqVoNGpgPmjl6Gri1IF0ZKZWERGdiu5+F7YvqtrSxDv9g+l\nVIkHIo4kUqcMLhdxZhWZgADr1G7amyfSKqJb6SiIhww7+l4ANNAU0/nC8wcP\nisbpypMEDqlUrE42Nd8M1GiYdRwHrdLhJLXe4dlJLXkLwUTxCNFDQ+Mxj9kS\n6nqZ64YW3bKiFa9/egq15erbG7VDMVw4DJ/DAjWZddy+Q5niJKsGUpOxLXqD\nW/pkUN19NPkyo9AIHwHM6YZksEtJomqB4poJq+Xo7gvNldcrdw7ShU1Wz+gX\nyRxUry9hOEgWWzEGNgycs7n6oJWBiLSjcCjLWHfPMK/FVtj41ZdsmZkC+k3A\nmIyyxsMHk+YKb+wFcFqliIlQCryUaAWI1ZngoWTA/kGgAGg00IF2cXWVmeD2\ncEOonIi+XM4Cd69moysm8cMXzF8EdEmpTBr0JRnbJeZc3U2ZH5QRWUnUbcuL\nRGNjMQZgT+3uKfZ9JKV7LgxdI8TuVmiB7Glisb5uWOTLaGIZ2xr7eUEos+vZ\n1TrdX27e9GH7F2bP6FZks3rmaJ5qjBFe1sMmWpwKdDXBheWIxprnp9555LvN\n8NB3e/p8sZZO3GQXz5XwETzl1WKHl9zhNCNmYgbpqFyaZ5uF6/gQaL2gSqyM\nkBgM\r\n=xE4k\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_10.0.0_1538933357391_0.25025912373934656"},"_hasShrinkwrap":false},"10.1.0":{"name":"file-type","version":"10.1.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava"},"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic","wma"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"efae4e631ae29c292f8c07baeb7c7ada9e0fc6b3","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@10.1.0","_npmVersion":"6.4.1","_nodeVersion":"10.12.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-fkjfXnqBRrdUFTS6opakWyMXb+uzDv8zOCqjSOWPbzMLnYnmnUEv/RNY9igkk4nc8TVL44Xd1OCC2fJXH3eb7Q==","shasum":"f692a28722e1ac8e206e68fcc2fb032a759d16d0","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-10.1.0.tgz","fileCount":4,"unpackedSize":27833,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbzcjLCRA9TVsSAnZWagAAR0IP/iLf6Z1lMD6UcW5XEE2s\nNzMMAz/1hsU38qukyronY3DpNv4D0TYQNckntZAnof7HC5tLB8oIcEiLN8vC\njmtgHJ3drSbyXeDoycIqKGaZRGw19bXrhWxOMpQSfmFAqVaHTGtLm0dHODZ2\nyoyb4cKnrnQj5Rmf3BCKcGyZ/ZtGW3nwKkR+e4bGuHtoLT9cYner0vu6q7Lz\nJMe8Uq43rH7Fbf6IlHxJpZOkQKJO7xMjDUXySRlUDLLqvd18Fc+ZxifpVyzN\nLzs0BbhejwQ7BVv9sPRHJBiA5WeChG9lKblgpEy6H9UgslEmOKI6rxuu9F+E\nRtM9NhDUs5gmCdSYqYM0TYRo465UmleQ9sMm7fRjtfQlZ0y4NFnlvbA9RS7E\nQrr8yXMsm0hK0fvtdJKPXkjWR25av9Cln5x4/q/sT2Id6HpOlytERHaWFiGO\nF9GhhF0/JPgctCFEfH9nR7tFpdacpBpM1t6qPRiKXrrL1I543Rww6oARiJWe\nMt0xkqxQBI3aezzbWc6oAEk0i4TDY/qwU/VBtIUbhjE2NldFEolWLYdrepuI\nu1+Xqma7aFuSTKl6qhHTkhVOy0zSDkrqDJB2Mjd341RXBlRYLncmkmoTjT3v\n91RjqYXCWHqQvwqKOKdCRHDgd5MU5kHXp/UB6JgAbNEMEjYjCJ0BzPYp9m4i\nevUu\r\n=NyHj\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_10.1.0_1540212938949_0.5215530677453681"},"_hasShrinkwrap":false},"10.2.0":{"name":"file-type","version":"10.2.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava"},"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic","wma"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"8148a36bd21a24a8be4678ab4301a6062b47f6de","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@10.2.0","_npmVersion":"6.4.1","_nodeVersion":"10.12.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-eqX81S1PWdLDPW39yyB214TVVOsUQjSmPcyUjeVH6ksH+94Y2YA/ItiIwa53rJiSofJZLK6lGsuCE3rwt0vp4w==","shasum":"91177ceb904963e2be53add360b213c2dc273f64","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-10.2.0.tgz","fileCount":4,"unpackedSize":28105,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb1WcYCRA9TVsSAnZWagAAaIQP/ihvviy08nV4E5H6yCQk\n1LcXZbBZlZ/um8jsWTeheAs17xJfbaphoo1ufWhG6eCVIXlel4VoqABvsexk\nXJNTipmD2H4Vx6QPUFmUd5r9b3r/QhXWAUT146Kp77bxvXVHHkEBAvhqjEgz\nXcAEktSu4avejs0MLUOXwb6gVc94G+NpuPY2D6bh5bbmomZpIux9a5KwM/ID\nKjiu+2P3a6+OZ4/yuO1w5zZRrLdEsQuJ2MHcZ2sSj23W5gL0s4VrYKPMCdMf\nmJ0WJ5WUjbMYiJ85dkf+/HNN45rqM+6OoVujIaJxD8xG+BezB9IfAH6Kn5op\n89bieI37vngLCsav0bzSSEtW5VLysED1oy02rmu8v8aCVvYDRfg6NGMV3ECf\nVrPuWMbz0c/OYttAvU6Vwl1UOF3r8ubGkxYkfjUn9w/bWKPVHD5/I/ph3MCu\nG6z63ONHsvAMSkHWZUzrrMNBOKk32y7fKEeUuajpIUKLYbvZic1LsGSfJz7L\nkHjdQtyG8hmFfKJEFs91ImrJZuIO17CndJXRrcmRw+w9evZCotbtGjKLaTlN\nyFMCbSE32jb6RKgGcHkq4DmBcw/vmmR/y3R9zLOXOIn2dlHjQwqi+x2IPOlI\nQtCMed20NukLTc785COcfnTfSHdz9km2TeI9mxhaN7V34P47oo8E5VNodqmk\nb2QR\r\n=zSGE\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_10.2.0_1540712215328_0.2403969535283399"},"_hasShrinkwrap":false},"10.3.0":{"name":"file-type","version":"10.3.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava"},"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic","wma"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"7ab526a21cbc160b96a655ac7c1dc83f6c6ce0a6","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@10.3.0","_npmVersion":"6.4.1","_nodeVersion":"10.13.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-wk3yZ4wav7qrpJJuDfW3zSYCoxA/ZWZ8YtvrFYcbAE8jSXGFEej7jWVqFKWeeNqFIlG3B3o+fzoSKC6HJvdWUg==","shasum":"448fa7fc19c629412c6d95cc3cddbf50d6ac3223","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-10.3.0.tgz","fileCount":4,"unpackedSize":28302,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2qALCRA9TVsSAnZWagAA5EAP/iFjsenEWc9E8ShOJ98c\niUBq2TeetXQqRXH7noaKRM2Sa7OjtMA44GnYwfIRVVAVXuP9FGwcKRZ3/gLr\nVs2ZaoaUSJRn/4xLZfYBSsSWxydobUTioiB1iwjSJwikUCRgCWhDGZiXeSp4\ngilaHWtcGgOEiS/llErqJZF8HovehjV0o9oKjd35+n65moG78U9y1Tl/BBv8\ny53d9Ju8qyOpnKKFagN2Ptp8wSPFvP0FNd4896ACgpJiYNAqyYIYenKy0t8G\nvUhmoaOmQg2M+CKZyA8jQtuZFuhc9eMJ+Mh12bdo2lFpTm0+VDwQzprICjTA\noEhzwMCBM2o1BCOjnNhRgzfZ3Q459Qk/Ep6ixHjyzYi3nYcUPzrnT6f8e2EO\nOje4MP+t6AYl6cZmrv0OueUVwl97U5cgCRcMkVC6iD4vUMl1LzWxodtEOfhn\n0BhEt9eWkC3H84VP7sIQ/u4bNEuJ/Qpy9US629B/laVmN0CtA7ZTsF+86YK/\nLViO/PsZmAtZSv7E6vfvu6n5uTpbAbV55ZeiotCnX1tzo3vd54ATqUG8mdAQ\nvo+0eikx7kb42dPeIzSSGKcbUVdcLd6R61kfCWLvfFeVlOtZTh263JjdjhsW\nl6g6mrupb7TnNHKI8sOLpWcTjrMsHmtV4b94PndIASO8A60okD9X60ccXUyo\npyp+\r\n=jZbm\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_10.3.0_1541054474615_0.13946591169896738"},"_hasShrinkwrap":false},"10.4.0":{"name":"file-type","version":"10.4.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava"},"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic","wma"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"f4ab1f3821822beb2a4f0eb266a1adacffccb1bc","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@10.4.0","_npmVersion":"6.4.1","_nodeVersion":"10.13.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-/Ha0T7TRFOFKgj36icy46h93By2tTwHirW9qeNLslo5NYmd7BbITVv2tkcuohmZWsNLqg9/dKNKwRXF3OVgVdA==","shasum":"e730e93ffdf30992c0b7d38fc2f15c4371353d44","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-10.4.0.tgz","fileCount":4,"unpackedSize":28497,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3AulCRA9TVsSAnZWagAAALkP/0KvHvoefGxVweqLklpW\nukXzUvj2JxtZJ2jHmswiVa/aVs9ipYFC8oIJWWEPSv4aYcA7mqHOXFsO/4V7\ndREJR+W267rkJyPuTKI7ZmS1I9qnL+s+eJi9zhrK2RsgZRyTHiAmUWhb9KwN\n85qyCs/7J6eflXyeiFvlRKkUIIZEw8C6ucf2ulSb33W+NdNvn2fPIrlMve5e\nme/sdC6JdfFh74nXgQuxXBfnb48S9xzTek+1ochEJrqDotSjogHaXwXw6yz7\nh8BnVNRuNjcWzquy4T2Z7iCzd1RmhLixRTaNGwS4cFntWDg2hULUCizA9rQY\n9Fme5iISl0+onaM7Ei+aSII8USw4MDikyf7yV4p5U40Y9bd5w4HRDiDy1IOu\ngzCEOQ3FdrHEJ3Fz/zEZvQ23e9WMh7KDxZxNSNcESe6nfjEYmWuyRvY8+5Y1\njEpDvO6Xsw9mtY9UH9UMpJn4JObQE1UYfDDPWXt9bUEkpAggQ96EONufRFwc\nQcqw9Jxmj9lhbjNYeM961PqM1jbRTxBxvjQJmP7xXh4WfRCujGz8/TW5JOMp\nkDnjaWhOEFAt5Zpb/N+mpnXrXUdVIIHp7+Cgtt0edd2pewgg7FXTPohFncoS\nCN0e+19MDlW9zR0rxRtY7aibeTKRZRYVTcaK9kJu51+gOgDcfLN5+brlRycR\nCEA7\r\n=5m9e\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_10.4.0_1541147556844_0.8212317926891484"},"_hasShrinkwrap":false},"10.5.0":{"name":"file-type","version":"10.5.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava"},"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic","wma"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"6be8559ff7af837c206103672f32ee6c61ef6169","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@10.5.0","_npmVersion":"6.4.1","_nodeVersion":"10.13.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-zxVkZQY5rtw2H75SMPQUXJveD7uWGdaJJtsVBFfdW3m0W6UeBXzUwiIENFKQ2aRuPozTgBZYV6WhyeGOvs5YsA==","shasum":"895d686cb677f73aba2ff36ea0fc8a232ae7b890","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-10.5.0.tgz","fileCount":4,"unpackedSize":28874,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb8ka8CRA9TVsSAnZWagAA08cP/jd5XIwx+aID+m5e0yVf\nJWKn95TJgklqQuauDA6LCYTUi2NSVC2s1mDnAX9m9MRgZ8DSAvYEm7CVuCve\ncIVeYDX41UXPuEIKBno2n28HQogMNeGUjWq7e4hcwtooWLXJ+jqpf/bkYIj6\n7+qiuvsFAT/MXv84wmLkGw1bh8Nb1GaWybMSMY7iTLU8WEsBLsE8c7fayMu4\nsWdrb7iFbc1qG9KE8BC5Xvdx3gp90PYfxTFrxxUi657n1MgCL8/R+iSb6S3y\nv1rCb2fqd28Kc5N9mHNT5s4e6Dc4CHHOZafHF4YUuSH92v9ndx8g+laUt2ti\nIDj8dCDdAwFMZWWXhCutjPmiZMSOz2wM/AgwBsDbrYVZoABaYwvWKfmeH288\nYTN56aKhyBEl6nnDO2/qnTWyxLFUGWDzkUtKhFGNNfUrflbt0nYU3LXxSnpt\njwMmMIdENsbgEfNmhRhzP/G4f7lqrDRMU3Bc2fJhuWEL62Q+hHxVdA1TixuH\nV+UqbPZJsgC9DavlCz1IdhaL1drlveCqHbof4WG0BF74P0bJ/Gjs5X0O4NVg\nnSE6BlRuvSufsx4Kwf8hNZNi5cM7XMQyALbhLa3p0Jxv8PSDtn5H/M89GqyS\ndg3TCobVCRCDNywTJUrFT135EIc2xH6LtvKB+zJ6Tx7s7mL1CgUhX33AA8aJ\nvso8\r\n=Rvne\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_10.5.0_1542604475131_0.021864569784559862"},"_hasShrinkwrap":false},"10.6.0":{"name":"file-type","version":"10.6.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava"},"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic","wma","ics"],"devDependencies":{"ava":"*","read-chunk":"^2.0.0","xo":"*"},"gitHead":"0b5eed26ca8f83f8ea441e6bbb4c845a13434b30","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@10.6.0","_npmVersion":"6.4.1","_nodeVersion":"10.13.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-GNOg09GC+rZzxetGZFoL7QOnWXRqvWuEdKURIJlr0d6MW107Iwy6voG1PPOrm5meG6ls59WkBmBMAZdVSVajRQ==","shasum":"95a94871d26b39f137a03cfd25450f0a56a38143","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-10.6.0.tgz","fileCount":4,"unpackedSize":29070,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcBKO7CRA9TVsSAnZWagAAJlgQAJFv70u9wI3tXwt2QQaY\nu+ZMUcRg89j66MbPF2qCp0zjEl0C3kLqU02MzsDCosNBINO9BmaOkwu8oJWY\nT9Y5A+Kxk0ItyahPOyg5DtpCLmikp9WjdMQuKuoFupd9b7PSrEPIldKJX84/\n89SmBbbJ8y4AvhtmZEJ9l6K7ZBbSSKWfar8O4B0btIJpX3gGMM/0TrRQRFp6\n0xoCVbDY11GPJPuxGFX+uVhltSOw9fx/56ACr+drXHe7C8Bq+fQKN/JZNABE\nXJbSun/zig9v1eRjCSIKR37Q37l9KQtbgOkPrBmZpWWxVCR3lHY2bgnCFhaj\nCeS+vS875mzlGCXCyXpUYsNvzQTmf2rXzsmEulFAW5kpgo8MH4oLDwePPm+F\n0p6AZBPCcwOjsQLW2y9MAR7yhPkbNYvwhHIhFRKgeVdkUzTlG0sUFSJyrBsU\nzYl8MjiiWKht/rNX+hNEvp6C6VOpqj0jxYHQNGmPtbT+/K4xSr5BpBYmHGZM\n9z+ONYrb5QK5EQUQG8n/w8TyFcRODdZJr44wdlJshYjbAzNcWt0yBae2cUeD\nOq27ra0gb2wvilXLx70hqWe4M0n/mG9MFM14vHCrSg2gzK4GBHPswqNxo/v0\nkLLkhDzPYHmPdZA0JRA0GxepWlFhNFacsQSozM0j8vcPSmq4LcUFbu0Drmob\n/2j8\r\n=We2U\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_10.6.0_1543807930677_0.36384651764738907"},"_hasShrinkwrap":false},"10.7.0":{"name":"file-type","version":"10.7.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava"},"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic","wma","ics","glb"],"devDependencies":{"ava":"^1.0.1","read-chunk":"^3.0.0","xo":"^0.23.0"},"gitHead":"86852283d3d615998605ceb341496cdc44cc7539","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@10.7.0","_npmVersion":"6.5.0","_nodeVersion":"10.13.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-AbaGtdWYYRaVrv2MwL/65myuRJ9j3e79e7etJ79US18QHuVlzJBcQHUH+HxDUoLtbyWRTUfLzLkGXX3pP9kfZg==","shasum":"b6a9bf24f1d14ba514ab9087c7864d4da4a7ce76","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-10.7.0.tgz","fileCount":4,"unpackedSize":29291,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcGUAnCRA9TVsSAnZWagAAXH4P/21wxS0xP/KAHK/oYYAV\njFraYUH9X0hfVX4MkTaFgs9Gbp9a7/uwzWR9R5ZDWByzfuF7G0b4mV8DYvs1\nCe/paYJGQlN16EKiA9puWPAa86pWsTVUreR9BLce4wZRXs7eDJhrb1PVgR0d\ncx40mO/EGZPijqcWgildLa/43AWtfr2fyEjVVdhw7FxaclIv+/uZrh4p47hL\ncCVzc+Un/vZ7XXx4tF1abUYqkesHIi+QEgQGBHmJb5Df8fR/03tbpGbSBVdE\nq1tFNhekRr7agrm38dW91/pQ90ubtMV52Y5jQaE1VkkJ60EDcagZqG4TqCj2\nTWctGR3Pc3/6RO+enHzBhvtTNPoFQ8nH0gkkZtddAgLyHdyxiiJF/ugrtops\nQ+s8EMvWbSGlfk2JZgfLWSvrcr1l2eknLYIU23ClSTcN8ueTfG+BeIpgueRb\nyZxeFTgHzyeKcL9Dg1/Bi3h0dxwqReHeMyhMAUsXWTvJZGLoMExUyjrA/Zb8\nn3+ZyHX4pF7Gp6ZsG3l7PHHY36bXep31ZfCwyXIkL7kNltNGEDVNRCodXkS2\nsd7YPvb2PyiTbrpoZ9Z7K8nwERTagNX56bBrdF2+PD+5kuGzpIOZZThePAke\nKT6kPtHI9Yk+gR8FbFykSqiOx47MLGpCGOuY1KUXzVgrbuY8u21HCbQMC3io\nbvgK\r\n=XFgP\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_10.7.0_1545158694596_0.4074643161240743"},"_hasShrinkwrap":false},"10.7.1":{"name":"file-type","version":"10.7.1","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava"},"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic","wma","ics","glb"],"devDependencies":{"ava":"^1.0.1","read-chunk":"^3.0.0","xo":"^0.23.0"},"gitHead":"6c343215290ed9ae9993ecbc1d1491f5b87a798d","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@10.7.1","_npmVersion":"6.4.1","_nodeVersion":"10.15.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-kUc4EE9q3MH6kx70KumPOvXLZLEJZzY9phEVg/bKWyGZ+OA9KoKZzFR4HS0yDmNv31sJkdf4hbTERIfplF9OxQ==","shasum":"bcfdd618fddfa7f7e5fc504e08b62cfec7bda8f2","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-10.7.1.tgz","fileCount":4,"unpackedSize":29285,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcRqnTCRA9TVsSAnZWagAAB10P/0mzK1Mp7DC7kNxQB56I\n2w4POP4suxCjwmY8pBmaJ9yWiKZ5Q+C/WebbpdWUAY2EO/V2kmQgGfs4cE7P\njRQbOXVxZMQXLtIIUD1fwAxKOcfwUPTR7UQMc7lT10nQi2U7eHMh3KdmUqlu\n2Eqw3pr8ZDX4M7a8qZdkY+zxzsCRNdoHruLaW30CATSPlEi5jzySLX7c1/XK\nanUJKD3/kWSFXJnAyfGAgZNbpNuKMu+EwrzhHArfsX9L22TIXznNXRhDhe55\nUC/zpKsLMzhz7iMKDSl9FhsGu5nr135A/wL58eOrDV8b8N/WYucv/PHkkFv9\n5UOo7DPspkp1kVb+jU306IdFd2okhdar3aT0Aj1meF9mjpDI236/MBeAg5l7\nIhfaUujNJ6UYqmCTC42eAexUR50HzEAoLpBENZaxAfbw+N+BK9poIEK7lnBS\nDFIkinEY7w3VGlnwfoiIu1x0nExhScRPvhNY9P+KsZ0ZSIDZeSKoHHwHcdqP\n62uTIqm/CitZ8nuQ203RY+t7SO02nz5wG8rVECZmSKL4wwlAZCC6kmqH7gD0\n36RoidkgVnJ+80D4Qo83M1p5FyozWjf3AHRxPvC+vAk+DuUEAoOQmx+Y/4IL\n274wNt9RnIcBbkwwfvAQNIsU/khcrgKcg5opwwXkSR61B/kbC3PrEJHY54HJ\nv+T3\r\n=ggvA\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_10.7.1_1548134866193_0.08270405577467987"},"_hasShrinkwrap":false},"10.8.0":{"name":"file-type","version":"10.8.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava"},"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic","wma","ics","glb","pcap"],"devDependencies":{"ava":"^1.0.1","read-chunk":"^3.0.0","xo":"^0.23.0"},"gitHead":"57c4f98c03be7324f22b0edfd353855e2ec8171e","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@10.8.0","_nodeVersion":"10.15.0","_npmVersion":"6.8.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-287YScp3cpRWzhM+/E+A85O4FJi4dHus0eA6eBUzkRc08d/JAwqeczU/nwLstRuzzq/S7TqvQg9mhv7xVsdINQ==","shasum":"676dfd43fdb75d8ccdba1cff53351b71190c25ff","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-10.8.0.tgz","fileCount":4,"unpackedSize":29500,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcawULCRA9TVsSAnZWagAAklAP/jYNXk3IlQ0Cx+GpFZ57\ndiHnUKEqEoCXYRSnR7SarNg3mK9MKg9vnTzvYr6je8D/l6QUejICL/bI/84Z\n+7e1gYxfYAXo9sKZoolp9fAxo/ExNMUzcItZ3FmclkgC9TJKO8A3csYPaX/5\nvITf9/pZ6xSkvYsmgfPCsKc9n2uHrCxJwcCN8EUVYbqVAhk88KxCMz2tRRqM\nL/TMEAAPVrqcTmOM0H22B6hNsehGxibZvModexTBKFmffuEc2oLSdBH+e1VP\nVzOiXKdPWx6Uo9RaExlB8ND7huGjqXXMv1z9FLx8PZmVAKN2IWYBMM5ARIoI\nmvA8KmME4OfBuIIXnG80uISflXiKpy4UvVYNfVcKihfM98U71Tq5dg11LM3t\nzTbuB/rymSTuUDQEcJJ2gdcxrSm32GVCpbX7+mHxNfUMjIFeAUvKy9MfQLJy\nP5VXlLeLXFIiA9RPmhU169o0oo7JfOut4F7Ogq/vo70MtDv5ichonktE3Jgy\nV5aWtkCQkKepcrm+5S2LyVG4k2AXZCMqKCamjksakbnBSM+K/H3SPXhS3ese\n80xN+Ewjj+QNRJvP2UrXgwjItG9SgmSU+x0OzsPvqbZX7HlDq/8mla5OJ+vN\nEoNa/X7rjxbV+pOr1YdAjZZB5DHIQo/nmUMQoTAGIx2KtgVf77qSX9L0a5+d\no04C\r\n=q7rd\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_10.8.0_1550517514674_0.5178443553313066"},"_hasShrinkwrap":false},"10.9.0":{"name":"file-type","version":"10.9.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava && tsd-check"},"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic","wma","ics","glb","pcap"],"devDependencies":{"@types/node":"^11.10.4","ava":"^1.2.1","pify":"^4.0.1","read-chunk":"^3.0.0","tsd-check":"^0.3.0","xo":"^0.24.0"},"gitHead":"afcd1cbfbdebaad0d4922f827fc9aa2cb179fa48","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@10.9.0","_nodeVersion":"8.15.0","_npmVersion":"6.8.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-9C5qtGR/fNibHC5gzuMmmgnjH3QDDLKMa8lYe9CiZVmAnI4aUaoMh40QyUPzzs0RYo837SOBKh7TYwle4G8E4w==","shasum":"f6c12c7cb9e6b8aeefd6917555fd4f9eadf31891","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-10.9.0.tgz","fileCount":5,"unpackedSize":33829,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfpJsCRA9TVsSAnZWagAAuq0P/0RTQVQdcaozQPWuvCGo\nVSS4IYDc0wBvow4Zv5FAijKI59BlyUuol2xtYhy+W5BOH2sq95uTr1S0Od+Z\nKFEQwmtzSW4l5P42P05Esyjq7qbGHDgWeOBthbVMH8rLwI0cOB711p2uxYTd\nPGHc9uFIjlJuyJs2m9oEAh4zwQQEetYM/g2JdjQxYxv6BVVYroDd3PSYzEnV\n4PONmx7ol0VPsjupBRkmGkRWth4vrecwdjElFdKmm/SKaieVwjFStnb6Sz+n\nrPZuOuObrHzHqKlfSTk2vLRdLcTX1F22Wv8Gh1zPxbM0FFV7vD2x24t3C6/p\nozYuJAH1ghVu9SOYny7ms/Odc8HAq1T+rUFYCnltSbX7x8UC6nhNNKxfg4dT\nigOdHsXoLKVKMa0yiNcnzNVf32qsGjJQat24n28wHO+4vY3oN3amhExErkp0\n6w4vrBj9WXBhAH1jM8ZHuovXpaIE8uqSceEdgmK6D2o2EjXFTASwVh2WOGKC\nrTonDgFHaWwEJjkzxRbHAPGgAs2SGE5y51PVlZrqW3fzaZBRTj4AOYjrliHp\na6QMu5R+Iu0T0P1+ou2PUjUP70bC12Toc3D8884Fu7AEZAOMcUWxwxJ7IsMF\nnWTk936Ra9+wkloo8hu6Gru+Y70SF+1hx+btd0RovlnNE1V6nnCZduP+jEg/\n8iRY\r\n=lyXM\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_10.9.0_1551798891897_0.34965513481369004"},"_hasShrinkwrap":false},"10.10.0":{"name":"file-type","version":"10.10.0","description":"Detect the file type of a Buffer/Uint8Array","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava && tsd"},"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic","wma","ics","glb","pcap"],"devDependencies":{"@types/node":"^11.12.2","ava":"^1.4.1","pify":"^4.0.1","read-chunk":"^3.2.0","tsd":"^0.7.1","xo":"^0.24.0"},"gitHead":"8d05e7c74f15de574758d2887c74dd8a1003a1e1","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@10.10.0","_nodeVersion":"8.15.0","_npmVersion":"6.9.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-3CTQE/db3dnK2jsfd4XiXMKw9nD0QVEMRLdBzqYDRr5BvYMUccDpP8hMc1uPb1VZ9Iw/cAJjYPNwJ5UzxGqsRg==","shasum":"b7cbc8ec48871edd7a3629e0a6d01b2b80a4d56c","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-10.10.0.tgz","fileCount":5,"unpackedSize":35115,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcod2ICRA9TVsSAnZWagAABT4QAJE9EbHmI0du8ifV5IYN\nRHU5dUAwxpDlgP1VViul7ahWUZ5TSuKKOChXzDO4z0y8fFjVVLKXUF6+pYHF\n2n71f5iOOUY+j7AYwE2ZNXuhToG0JOjbHE5/PeyYaipx5DuhBoSjSoeF02Gx\n3soXH/fhcUMpU5DZl7U9nMO9Vc/pChcOXVV6ZeLJPFMNZ2UkZJmHZBo2OgM7\nkd3PVMWjfvS3QtvrNK1O/iWXmtX4XCFL2tynzfrSnBcg/MntbNU8YVs101VP\n65gIgYQLNUOq2/9rPuyIrcVyJJ3c0WyFa1fe6Gwka/w0g1GBBIkdtOjhuokY\n9MbH1C43Q2zjX4XIvjBjOyb729oI7TMH1JHd2LidTLh4qOL5BthwJwjs6bfi\nU0O+ts6Cz3BxdSW6efriWSYsbYkpFvv3dhtSlF5I9mFM0v4zwa5PsWI0UcmO\n6r9eoBIOx8jdgjJlfkNDC+N4PXXd5tPuMZ1049XQG/OoyWjhMBr//rHcPEVo\nQXK6W2UHNHZ+xDUG2i3zcBVDBFEtMDVkxR1nYEAxhKs8EneKBqsz20hXZFbI\nHXRx6rqpVhcPirH59qNHNzQfaj+ASdCivfeGJp4tZfmEF1wWKZcCHCRmarin\ns0+zZ4R98opQ4zRJISINXfYhYDF8qn1bOR9EGWToaV+QIO6vQcB6hR1CazwT\nI44+\r\n=HMnL\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_10.10.0_1554111879907_0.10577934093113961"},"_hasShrinkwrap":false},"10.11.0":{"name":"file-type","version":"10.11.0","description":"Detect the file type of a Buffer/Uint8Array/ArrayBuffer","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava && tsd"},"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","m4v","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic","wma","ics","glb","pcap"],"devDependencies":{"@types/node":"^11.12.2","ava":"^1.4.1","pify":"^4.0.1","read-chunk":"^3.2.0","tsd":"^0.7.1","xo":"^0.24.0"},"gitHead":"02f666db30e1d3ee3b8c7566f7c8226e82583d63","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@10.11.0","_nodeVersion":"8.15.0","_npmVersion":"6.9.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==","shasum":"2961d09e4675b9fb9a3ee6b69e9cd23f43fd1890","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-10.11.0.tgz","fileCount":5,"unpackedSize":35304,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr2YHCRA9TVsSAnZWagAAMFwP/Ry1eVW+dzLzFxtQkJQE\ndaiIK1FGviBuHIGeWnnfdfrBibelaNycNUmoGNX4u+ywVbzxCQ417R38TSXX\nzzYl83B0Pou9pHnYmYYhuc8SMQbg2/8Il3JB9rcc2XJIV352gZkhYZFPGdwz\nQQ9FwVgJPMlaWNjShTg9MJOIbLW9j/dniYttLZspJ3o97OvkrAYPJNJqwFNk\nazHftfxwwUekANrD0nwM+cCTLFo3ZAYjcMwENtLpAfvkHDVLcGPuB/U9+64L\nQoqDs53QnkBXpVHVPsGAdYaUUdzmycGfEp78wQVZpSfqsKzeO7f2JGS6YSv7\npDhLFqcZ8G7Jg665wHR++dAeX52lM5Xb/E7uyblYioYANcdNcM1x000BfnJx\nx4TL5M/MY7gVW2MGo0hlaDC4MyHCr+kvM9dBxw/eDpDsTAbh1hiX6rS2YROO\nL3v3TXuDCk6abDHfqX7eFqtK8StakAC/9/KAYMhjZQUePwkftND19k9mrwWm\n9AEis1E6/1KSQCKOj/A3J5+m6uAjBgwWfUx2+nRdRNOocHEtmwU490qS8+1u\n2rdowMR1CDysaO8VxQ4i6MxaVT6N//TGYd6A9Fi8qCjIMZ6onAI6xG9m0k7l\nKMYG0lc36+w/0+kiwcl8vlF3kMy5B3GShEA3W/oy1BKAQ8EfaaaWYc6ellNP\n/jfh\r\n=CATU\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_10.11.0_1554998789788_0.8116598924952478"},"_hasShrinkwrap":false},"11.0.0":{"name":"file-type","version":"11.0.0","description":"Detect the file type of a Buffer/Uint8Array/ArrayBuffer","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava && tsd"},"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic","wma","ics","glb","pcap","dsf","lnk","alias","voc","ac3","3g2","m4a","m4b","m4p","m4v","f4a","f4b","f4p","f4v"],"devDependencies":{"@types/node":"^11.12.2","ava":"^1.4.1","pify":"^4.0.1","read-chunk":"^3.2.0","tsd":"^0.7.1","xo":"^0.24.0"},"gitHead":"4e5b9e519dfe60ed21e5703bdd3f6c28b6facd81","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@11.0.0","_nodeVersion":"8.16.0","_npmVersion":"6.9.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-ixd0mHkDO8KJ1S+ANTM+cZoZgL+TB0txLMm9KjTndfOjFYuRmrUcOtmSEm+e9s7wrynZOvvRD/8LwMQ6a24Irg==","shasum":"576ca9ec099925b0c4df7e75d3be52696b62fb52","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-11.0.0.tgz","fileCount":6,"unpackedSize":39608,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJczWobCRA9TVsSAnZWagAARncQAJH2gHC6YPjvlXeVTj1p\nyb7fM1Mgtw4dIjIQU4psUugQ43D+9BGAtuWHw4HbawcBYjNQnPkvhC3LRb/y\niLWTEqKZy6HO0gimCdWMVpbRf73QsKPbGwRNeLuLcHQf4AMoc0BfKjBD+I76\nzQuzaKJAUBkVt57eTPgPi5E4t0OKzZl1bqZCfC5nfKJTj3iXGcizCYryx1IH\nlmzAzcZSx393pTKqFjtcNOXHtDwP8wtZ/IdQrnwRfxQzhTkV5tIhQopuYF1+\nwTtmS3A5VIlKLnQSOf1oWyc8OTfBNC7dhQGuT9R/p4DoNAQQAgjBugbRMyaL\nSt/rv5bM4qdQaMfrXHm7Oc7QvQ0x+aN7D91O0YKHXVt72VrpyeGVbeWB4kVc\nu5V3Kdl/o9O5dFHgwhv1J6eHSgnWEoTVa/y6goiYE9UhnZyHwQt/Qkb7tZDV\npQoHQMYYA/x3HfWDPkUQyJORyu2/1ijNGcQiqlQOXWkw/w2JRZz3SkxhXeOx\nY8/Di46C8IlEbaB6akxPwK4u1a3J8y7LOeJUutEDs8qahWuGdMXKk7ztv9zZ\nLk/MG4ST1Tuigs+PvjuCf4sxZHmYVn1U4yBg1aJkpgY7slemoCWl9s1YRnse\nSbIlCYwtNZuGjqjCxoyRLXiRcYUnd+4XFqE9DauE8Pwk8+/tz13Qf1HXgRkQ\nhXlD\r\n=5fyR\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_11.0.0_1556965914074_0.7368321537218385"},"_hasShrinkwrap":false},"11.1.0":{"name":"file-type","version":"11.1.0","description":"Detect the file type of a Buffer/Uint8Array/ArrayBuffer","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/file-type.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=6"},"scripts":{"test":"xo && ava && tsd"},"keywords":["mime","file","type","archive","image","img","pic","picture","flash","photo","video","detect","check","is","exif","exe","binary","buffer","uint8array","jpg","png","gif","webp","flif","cr2","orf","arw","dng","nef","tif","bmp","jxr","psd","zip","tar","rar","gz","bz2","7z","dmg","mp4","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","pdf","epub","mobi","swf","rtf","woff","woff2","eot","ttf","otf","ico","flv","ps","xz","sqlite","xpi","cab","deb","ar","rpm","Z","lz","msi","mxf","mts","wasm","webassembly","blend","bpg","docx","pptx","xlsx","3gp","jp2","jpm","jpx","mj2","aif","odt","ods","odp","xml","heic","wma","ics","glb","pcap","dsf","lnk","alias","voc","ac3","3g2","m4a","m4b","m4p","m4v","f4a","f4b","f4p","f4v"],"devDependencies":{"@types/node":"^11.12.2","ava":"^1.4.1","pify":"^4.0.1","read-chunk":"^3.2.0","tsd":"^0.7.1","xo":"^0.24.0"},"gitHead":"d7a1b158ae88a50c0f65668a2ac161baa0e06043","bugs":{"url":"https://github.com/sindresorhus/file-type/issues"},"homepage":"https://github.com/sindresorhus/file-type#readme","_id":"file-type@11.1.0","_nodeVersion":"8.16.0","_npmVersion":"6.9.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-rM0UO7Qm9K7TWTtA6AShI/t7H5BPjDeGVDaNyg9BjHAj3PysKy7+8C8D137R88jnR3rFJZQB/tFgydl5sN5m7g==","shasum":"93780f3fed98b599755d846b99a1617a2ad063b8","tarball":"http://118.190.78.212:8081/nexus/content/groups/npm-all/file-type/-/file-type-11.1.0.tgz","fileCount":6,"unpackedSize":40910,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5mynCRA9TVsSAnZWagAAGk0QAJImdmj46ixyyGugJleH\nyevZjAR3cSloFLLIXF8lx/KKiKIll3+VLrpCqPx958VkmacXJzQGb5RxK1Da\nue8hJvwRYh4hN2Jio3Rw0dDqZUVwagm5iVmvhF968x8kgQJeKAkQvpRYVdoe\n2lcA08ffDbik6fTUV0hw7sUPrSOKcUHk3B7Zg2ugVxqipX0rdsdzBhAjP2GM\n7bBmwKHywbWxZTHthrv/g1pW/Wv1LR4n/QVNlsJ37luj1MB3l/JKD6JPmAak\nfe+f7+TifEY/IOgsT9chT6a9BSuKFoObk+qZt5+qWTDvyfOkVenynUwOn2MY\n+ULgnJNCAbxVqDavA86jrtNgQooFZdOstnvLyXq8iTXVqpPHYD0rnxp3lBRM\nyVRLKoTVPurxhJi1DLmi5BoxO7aOJgscbxu0VIwnZIv5szEjsBuCroKJRJwo\nHNTNRHvrEf7fZ3Pt3s+X/gNj7kw4bB8SSbvH+bzzvIB1u/1h+aqSA4Kgscs2\nyECH49sCHKjRHuE2olC8AjQXO6y4o8H/h5shl9cKWZDFLHofy0EPWg5cwGIL\nAhvYBz4CLM6cCvrOKQ0ym+Ee+2LHOv/9wrFHStCr2sx13WD06buotrBZM9R8\n9m+9biDvnS6k7ogF3g7Q/26f7Deoxke0KB55HBYPrKQIS5SPsO64CGHpLht8\n7UCb\r\n=yDMo\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"finstaden@gmail.com","name":"mifi"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-type_11.1.0_1558604967190_0.3663666537108805"},"_hasShrinkwrap":false}},"name":"file-type","time":{"modified":"2019-05-23T09:49:29.983Z","created":"2014-04-24T11:06:04.434Z","0.1.0":"2014-04-24T11:06:04.434Z","0.1.1":"2014-04-24T11:10:43.603Z","0.2.0":"2014-04-26T00:27:27.857Z","0.3.0":"2014-05-08T20:22:42.190Z","1.0.0":"2014-08-14T14:52:58.422Z","1.0.1":"2014-08-14T17:01:10.203Z","1.0.2":"2014-08-17T18:43:27.949Z","1.1.0":"2014-10-29T06:49:53.501Z","1.2.0":"2014-11-13T05:36:58.832Z","2.0.0":"2014-12-19T02:50:53.090Z","2.0.1":"2014-12-19T03:02:11.614Z","2.0.2":"2015-01-20T12:42:19.860Z","2.0.3":"2015-01-28T06:33:16.782Z","2.0.4":"2015-01-28T19:30:59.349Z","2.1.0":"2015-02-04T07:09:01.450Z","2.2.0":"2015-02-04T18:55:54.079Z","2.3.0":"2015-03-01T10:03:53.158Z","2.4.0":"2015-03-03T11:55:31.397Z","2.5.0":"2015-03-07T15:01:29.202Z","2.6.0":"2015-05-04T23:41:15.154Z","2.7.0":"2015-06-04T12:32:48.188Z","2.8.0":"2015-07-18T14:16:39.964Z","2.9.0":"2015-07-22T00:10:59.690Z","2.10.0":"2015-07-25T12:22:07.127Z","2.10.1":"2015-08-10T09:24:05.287Z","2.10.2":"2015-08-13T09:05:47.365Z","2.11.0":"2015-09-18T06:54:14.973Z","2.12.0":"2015-09-26T07:41:43.969Z","3.0.0":"2015-10-11T15:06:33.595Z","3.1.0":"2015-10-15T15:28:22.921Z","3.1.1":"2015-11-05T10:18:30.464Z","3.2.0":"2015-11-06T17:25:42.675Z","3.3.0":"2015-11-08T10:29:32.176Z","3.3.1":"2015-12-09T14:35:38.625Z","3.4.0":"2016-01-03T19:02:56.413Z","3.5.0":"2016-01-22T13:13:15.547Z","3.6.0":"2016-01-26T14:41:20.689Z","3.7.0":"2016-02-06T14:51:05.787Z","3.8.0":"2016-03-01T11:16:05.786Z","3.9.0":"2016-10-18T02:35:41.824Z","4.0.0":"2016-12-13T20:11:15.424Z","4.1.0":"2017-01-19T06:45:55.481Z","4.2.0":"2017-04-16T14:31:43.126Z","4.3.0":"2017-05-06T07:46:21.641Z","4.4.0":"2017-06-06T05:00:48.012Z","5.0.0":"2017-06-06T05:36:20.262Z","5.1.0":"2017-06-08T22:22:43.075Z","5.1.1":"2017-06-09T14:03:44.831Z","5.2.0":"2017-06-13T18:59:02.013Z","6.1.0":"2017-08-15T13:17:01.319Z","6.2.0":"2017-09-23T10:32:40.822Z","7.0.1":"2017-10-08T20:34:11.847Z","7.1.0":"2017-10-16T03:17:03.786Z","7.2.0":"2017-10-17T07:08:26.907Z","7.3.0":"2017-11-22T13:54:24.972Z","7.4.0":"2017-12-01T19:12:30.432Z","7.5.0":"2018-01-21T03:03:58.907Z","7.6.0":"2018-02-16T04:20:33.690Z","7.7.0":"2018-04-29T18:57:33.892Z","7.7.1":"2018-04-30T06:53:07.878Z","8.0.0":"2018-05-12T11:18:25.805Z","8.1.0":"2018-07-08T07:47:53.359Z","9.0.0":"2018-08-10T07:41:17.225Z","10.0.0":"2018-10-07T17:29:17.542Z","10.1.0":"2018-10-22T12:55:39.075Z","10.2.0":"2018-10-28T07:36:55.498Z","10.3.0":"2018-11-01T06:41:14.733Z","10.4.0":"2018-11-02T08:32:36.976Z","10.5.0":"2018-11-19T05:14:35.338Z","10.6.0":"2018-12-03T03:32:10.947Z","10.7.0":"2018-12-18T18:44:54.884Z","10.7.1":"2019-01-22T05:27:46.321Z","10.8.0":"2019-02-18T19:18:34.791Z","10.9.0":"2019-03-05T15:14:52.110Z","10.10.0":"2019-04-01T09:44:40.069Z","10.11.0":"2019-04-11T16:06:29.926Z","11.0.0":"2019-05-04T10:31:54.236Z","11.1.0":"2019-05-23T09:49:27.361Z"},"readmeFilename":"readme.md","homepage":"https://github.com/sindresorhus/file-type#readme"}