{"maintainers":[{"name":"anonymous","email":"andris@kreata.ee"}],"keywords":["MIME","Base64","Quoted-Printable"],"dist-tags":{"latest":"5.3.8"},"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"description":"Encode and decode quoted printable and base64 strings","readme":"# libmime\n\n`libmime` provides useful MIME related functions. For Quoted-Printable and Base64 encoding and decoding see [libqp](https://github.com/andris9/libqp) and [libbase64](https://github.com/andris9/libabase64).\n\n## Installation\n\n### [npm](https://www.npmjs.org/):\n\n    npm install libmime\n\n## Usage\n\n    var libmime = require('libmime');\n\n## Methods\n\n### Encoded Words\n\n#### #encodeWord\n\nEncodes a string into mime [encoded word](http://en.wikipedia.org/wiki/MIME#Encoded-Word) format.\n\n    libmime.encodeWord(str [, mimeWordEncoding[, maxLength]]) → String\n\n*   **str** - String or Buffer to be encoded\n*   **mimeWordEncoding** - Encoding for the mime word, either Q or B (default is 'Q')\n*   **maxLength** - If set, split mime words into several chunks if needed\n\n**Example**\n\n    libmime.encodeWord('See on õhin test', 'Q');\n\nBecomes with UTF-8 and Quoted-printable encoding\n\n    =?UTF-8?Q?See_on_=C3=B5hin_test?=\n\n#### #encodeWords\n\nEncodes non ascii sequences in a string to mime words.\n\n    libmime.encodeWords(str[, mimeWordEncoding[, maxLength]) → String\n\n*   **str** - String or Buffer to be encoded\n*   **mimeWordEncoding** - Encoding for the mime word, either Q or B (default is 'Q')\n*   **maxLength** - If set, split mime words into several chunks if needed\n\n#### #decodeWords\n\nDecodes a string that might include one or several mime words. If no mime words are found from the string, the original string is returned\n\n    libmime.decodeWords(str) → String\n\n*   **str** - String to be decoded\n\n### Folding\n\n#### #foldLines\n\nFolds a long line according to the [RFC 5322](http://tools.ietf.org/html/rfc5322#section-2.1.1). Mostly needed for folding header lines.\n\n    libmime.foldLines(str [, lineLength[, afterSpace]]) → String\n\n*   **str** - String to be folded\n*   **lineLength** - Maximum length of a line (defaults to 76)\n*   **afterSpace** - If true, leave a space in the end of a line\n\n**Example**\n\n    libmime.foldLines('Content-Type: multipart/alternative; boundary=\"----zzzz----\"')\n\nresults in\n\n    Content-Type: multipart/alternative;\n         boundary=\"----zzzz----\"\n\n#### #encodeFlowed\n\nAdds soft line breaks to content marked with `format=flowed` options to ensure that no line in the message is never longer than lineLength.\n\n    libmime.encodeFlowed(str [, lineLength]) → String\n\n*   **str** Plaintext string that requires wrapping\n*   **lineLength** (defaults to 76) Maximum length of a line\n\n#### #decodeFlowed\n\nUnwraps a plaintext string in format=flowed wrapping.\n\n    libmime.decodeFlowed(str [, delSp]) → String\n\n*   **str** Plaintext string with format=flowed to decode\n*   **delSp** If true, delete leading spaces (delsp=yes)\n\n### Headers\n\n#### #decodeHeader\n\nUnfolds a header line and splits it to key and value pair. The return value is in the form of `{key: 'subject', value: 'test'}`. The value is not mime word decoded, you need to do your own decoding based on the rules for the specific header key.\n\n    libmime.decodeHeader(headerLine) → Object\n\n*   **headerLine** - Single header line, might include linebreaks as well if folded\n\n#### #decodeHeaders\n\nParses a block of header lines. Does not decode mime words as every header might have its own rules (eg. formatted email addresses and such).\n\nReturn value is an object of headers, where header keys are object keys and values are arrays.\n\n    libmime.decodeHeaders(headers) → Object\n\n*   **headers** - Headers string\n\n#### #parseHeaderValue\n\nParses a header value with `key=value` arguments into a structured object. Useful when dealing with\n`content-type` and such. Continuation encoded params are joined into mime encoded words.\n\n    parseHeaderValue(valueString) → Object\n\n*   **valueString** - a header value without the key\n\n**Example**\n\n```javascript\nparseHeaderValue('content-type: text/plain; CHARSET=\"UTF-8\"');\n```\n\nOutputs\n\n```json\n{\n    \"value\": \"text/plain\",\n    \"params\": {\n        \"charset\": \"UTF-8\"\n    }\n}\n```\n\n#### #buildHeaderValue\n\nJoins structured header value together as 'value; param1=value1; param2=value2'\n\n    buildHeaderValue(structuredHeader) → String\n\n*   **structuredHeader** - a header value formatted with `parseHeaderValue`\n\n`filename` argument is encoded with continuation encoding if needed\n\n#### #buildHeaderParam\n\nEncodes and splits a header param value according to [RFC2231](https://tools.ietf.org/html/rfc2231#section-3) Parameter Value Continuations.\n\n    libmime.buildHeaderParam(key, str, maxLength) → Array\n\n*   **key** - Parameter key (eg. `filename`)\n*   **str** - String or an Buffer value to encode\n*   **maxLength** - Maximum length of the encoded string part (not line length). Defaults to 50\n\nThe method returns an array of encoded parts with the following structure: `[{key:'...', value: '...'}]`\n\n**Example**\n\n```\nlibmime.buildHeaderParam('filename', 'filename õäöü.txt', 20);\n→\n[ { key: 'filename*0*', value: 'utf-8\\'\\'filename%20' },\n  { key: 'filename*1*', value: '%C3%B5%C3%A4%C3%B6' },\n  { key: 'filename*2*', value: '%C3%BC.txt' } ]\n```\n\nThis can be combined into a properly formatted header:\n\n```\nContent-disposition: attachment; filename*0*=utf-8''filename%20\n  filename*1*=%C3%B5%C3%A4%C3%B6; filename*2*=%C3%BC.txt\n```\n\n### MIME Types\n\n#### #detectExtension\n\nReturns file extension for a content type string. If no suitable extensions are found, 'bin' is used as the default extension.\n\n    libmime.detectExtension(mimeType) → String\n\n*   **mimeType** - Content type to be checked for\n\n**Example**\n\n    libmime.detectExtension('image/jpeg') // returns 'jpeg'\n\n#### #detectMimeType\n\nReturns content type for a file extension. If no suitable content types are found, 'application/octet-stream' is used as the default content type\n\n    libmime.detectMimeType(extension) → String\n\n*   **extension** Extension (or filename) to be checked for\n\n**Example**\n\n    libmime.detectMimeType('logo.jpg') // returns 'image/jpeg'\n\n## License\n\n**MIT**\n","repository":{"type":"git","url":"git+https://github.com/nodemailer/libmime.git"},"users":{"mojaray2k":true,"monolithed":true},"bugs":{"url":"https://github.com/nodemailer/libmime/issues"},"license":"MIT","versions":{"0.1.0":{"name":"libmime","version":"0.1.0","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@0.1.0","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"07163a76536e88011813d9a04de3733f7356b460","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-0.1.0.tgz","integrity":"sha512-DJBc2h8GPM30nELShyqWajxFfp43DWdyqvF7f79AN3sIXeMlhlrcFtcylDcp3qJwmvQ93ESHNLib3EUyOB2CXA==","signatures":[{"sig":"MEYCIQCxVZ4exTe9Fv8G/OyD3KkMgccKZ5wdpaO/1forupabiwIhALssNNqkDtYfXdSlWWSNwvvIsjAiu4qo6n8//Wau0KSL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/libmime","_from":".","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@node.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"1.4.3","description":"Encode and decode quoted printable and base64 strings","directories":{},"dependencies":{"iconv-lite":"^0.4.0"},"devDependencies":{"chai":"~1.8.1","grunt":"~0.4.1","grunt-mocha-test":"~0.10.0","grunt-contrib-jshint":"~0.8.0"}},"0.1.1":{"name":"libmime","version":"0.1.1","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@0.1.1","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"efd1185f2dd15e365f20ac07956bfba749a62fa9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-0.1.1.tgz","integrity":"sha512-Tjjry0JmrP0Yu+l+VRYjiOSt00konSObMIV/aaSFZ44Gv88L6fKUdXVHX0xySJzbKQ3vRJ/xWqjOdxKkomgIMg==","signatures":[{"sig":"MEYCIQC6FJD3FsqFgXvykveBu7LW3VIcex27HgUCVr4SAX393AIhAMLAwO4r85BE6u1wDZSovMJyQykodWCapq+tkTKGBOyG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/libmime","_from":".","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@node.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"1.4.3","description":"Encode and decode quoted printable and base64 strings","directories":{},"dependencies":{"libqp":"^0.1.1","libbase64":"^0.1.0","iconv-lite":"^0.4.0"},"devDependencies":{"chai":"~1.8.1","grunt":"~0.4.1","grunt-mocha-test":"~0.10.0","grunt-contrib-jshint":"~0.8.0"}},"0.1.2":{"name":"libmime","version":"0.1.2","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@0.1.2","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"3d7250ad021f8421a0af27c3ac33f5bc77c18cbc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-0.1.2.tgz","integrity":"sha512-QeX68d3GPwn557bl7VOi2ClXQ9uHQdiKVgXNT8/YanXorphiaWXM0re8rkPpBGBr98JpBVx+/0joC2Jr/msE+g==","signatures":[{"sig":"MEQCIFNyrahAxPDETyIJJwHjqTNbRvpq7JFnGqx2WnPOlSQ6AiBqnf+j1qZHCwQiJy2dng28VTOD0XHyEk+vZz4TgWvf0A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/libmime","_from":".","_shasum":"3d7250ad021f8421a0af27c3ac33f5bc77c18cbc","gitHead":"6096c17e7a3c80e1409421e3ee8dd2b4f8efb4c2","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@node.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"1.4.14","description":"Encode and decode quoted printable and base64 strings","directories":{},"dependencies":{"libqp":"^0.1.1","libbase64":"^0.1.0","iconv-lite":"^0.4.0"},"devDependencies":{"chai":"~1.8.1","grunt":"~0.4.1","grunt-mocha-test":"~0.10.0","grunt-contrib-jshint":"~0.8.0"}},"0.1.3":{"name":"libmime","version":"0.1.3","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@0.1.3","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"a726019dd608b84c353f7bf148004f5c07e819a7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-0.1.3.tgz","integrity":"sha512-SW0NqzUnnc8fYBlAJ5+JHsqPXnJd4I1HvCQoXIgcDrA9n97VFXSz/cOUEDG8KCUe/8Qo4En97ioNrSukBrGOyA==","signatures":[{"sig":"MEUCID0evuhzVrt50fJjrWn0vZpUvYjJdqQFqOXx7AFbgvnnAiEAjz/GYDeSwuzjIjHoIdqDVCPtZiw7+3P5dkJDqVlur/I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/libmime","_from":".","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@node.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"1.4.3","description":"Encode and decode quoted printable and base64 strings","directories":{},"dependencies":{"libqp":"^0.1.1","libbase64":"^0.1.0","iconv-lite":"^0.4.0"},"devDependencies":{"chai":"~1.8.1","grunt":"~0.4.1","grunt-mocha-test":"~0.10.0","grunt-contrib-jshint":"~0.8.0"}},"0.1.4":{"name":"libmime","version":"0.1.4","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@0.1.4","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"05fb0757f4201979406c262437a95afe5f6ffec7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-0.1.4.tgz","integrity":"sha512-GJHXnCqazlUa6rR4B4JQrFpId4EMjb1xZJvjpVxYYMAjtO51GPWGSGrsoSx0ZZJpNjoQ7m/EX7QzZ1vFbdwIIw==","signatures":[{"sig":"MEYCIQCT3rJgTwk6UOzY54oC2IJmohmHzQVjLmFtNcfpp7CxuAIhAMSZ0SO9EwCdjY8g3ar8V3eA/Qvx6qA5g8QqeRs0eZhf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/libmime","_from":".","_shasum":"05fb0757f4201979406c262437a95afe5f6ffec7","gitHead":"2d5eaeb383be3f5269cedbd212ea3e1413536c10","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@node.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"1.4.23","description":"Encode and decode quoted printable and base64 strings","directories":{},"dependencies":{"libqp":"^0.1.1","libbase64":"^0.1.0","iconv-lite":"^0.4.4"},"devDependencies":{"chai":"^1.9.1","grunt":"^0.4.5","grunt-mocha-test":"^0.11.0","grunt-contrib-jshint":"^0.10.0"}},"0.1.5":{"name":"libmime","version":"0.1.5","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@0.1.5","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"bd6b6b60484b943637accf5ed397f25f122f541e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-0.1.5.tgz","integrity":"sha512-RMOM/dyY95VS5Ag8FnE85f+yYEFubnF7AF+O/68hJ0qzYM0+Tuy7XukvScgzFhM3fpP0cGXMb+HQIFMSw+ugCw==","signatures":[{"sig":"MEUCIQDJR5Vag0/MRWS+Ueuw8LQ7cW9kivLS1F6f3HcCTrttwAIgDr8xk6Sv4eCptmT/Ax6n70FrgXJTCx3uFjqtlZSNgVY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/libmime","_from":".","_shasum":"bd6b6b60484b943637accf5ed397f25f122f541e","gitHead":"21108a68dede1fd41bd68f07b0041b1f9aaa5b9d","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"1.4.23","description":"Encode and decode quoted printable and base64 strings","directories":{},"dependencies":{"libqp":"^0.1.1","libbase64":"^0.1.0","iconv-lite":"^0.4.4"},"devDependencies":{"chai":"^1.9.1","grunt":"^0.4.5","grunt-mocha-test":"^0.11.0","grunt-contrib-jshint":"^0.10.0"}},"0.1.6":{"name":"libmime","version":"0.1.6","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@0.1.6","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"4f3e0053576667b5c319dd04eb8633e06103caca","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-0.1.6.tgz","integrity":"sha512-906f3DoG8Gn7Xv8lvfA3YtQeGXZJgf/rr5qb18TmrnNGGBXWi1EfsKsouGVKGiMFnDf9N+t30jZ8Yf3xohgx7Q==","signatures":[{"sig":"MEUCIEEbNwZvaN5MA70oUV44m3WILGsr+b4gbQfpJ6WmKjClAiEA/B+5MnCXjywEzJ2fBMreIy7S+xSNr4/NU+QhJk52pB0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/libmime","_from":".","_shasum":"4f3e0053576667b5c319dd04eb8633e06103caca","gitHead":"9693aec461efd8a33616bec7e672883288ca00dc","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"1.4.23","description":"Encode and decode quoted printable and base64 strings","directories":{},"dependencies":{"libqp":"^0.1.1","libbase64":"^0.1.0","iconv-lite":"^0.4.4"},"devDependencies":{"chai":"^1.9.1","grunt":"^0.4.5","grunt-mocha-test":"^0.11.0","grunt-contrib-jshint":"^0.10.0"}},"0.1.7":{"name":"libmime","version":"0.1.7","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@0.1.7","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"827b8d4df349e08c6cff1bc6d6b51ec57d349cb2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-0.1.7.tgz","integrity":"sha512-OBCdhVsLbdKTT4As4Xv2IRefPZA7ZhBh9kHrOIfEN1PWSE0BHsiLLf/r91MZXUwg9NsUvE44m09bj4e0EhVBGA==","signatures":[{"sig":"MEQCIFoOppQ/IuH06nocTrPs9t3mxVLgtJnM2mcO1CQTyGuRAiA0pVVz77qcfo8pAVLl9TVReZWK2j782VS0fC8uQUaRfg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/libmime","_from":".","_shasum":"827b8d4df349e08c6cff1bc6d6b51ec57d349cb2","gitHead":"15e3b4abf029bf224c67286a92f8de4cb261a1c6","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"2.0.0","description":"Encode and decode quoted printable and base64 strings","directories":{},"dependencies":{"libqp":"^0.1.1","libbase64":"^0.1.0","iconv-lite":"^0.4.4"},"devDependencies":{"chai":"^1.9.1","grunt":"^0.4.5","grunt-mocha-test":"^0.11.0","grunt-contrib-jshint":"^0.10.0"}},"1.0.0":{"name":"libmime","version":"1.0.0","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@1.0.0","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"d3351e4a7e402f34804eaf1a6558a8c985dabd31","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-1.0.0.tgz","integrity":"sha512-v/kM/ZIXBxAfMEfJvs3QjSsjapvrkBwFtk3JyEY3+FJKFyqdvyUfiExWEVpmr/H2bp65SqaGEo1noPpmf3qiFw==","signatures":[{"sig":"MEQCIF3Mlfjrwmt1EbuNAK+KKOofWdKb6wICxNltE6AMzpWiAiAVSj8vWvnc59HCBXkKoL9p74RIfaFokmRSym3xuuvmpg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/libmime","_from":".","_shasum":"d3351e4a7e402f34804eaf1a6558a8c985dabd31","gitHead":"6e138395ca7f673fde0b16ce613e811c3c6e7998","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@node.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"2.5.1","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"0.12.0","dependencies":{"libqp":"^1.0.0","libbase64":"^0.1.0","iconv-lite":"^0.4.8"},"devDependencies":{"chai":"^2.2.0","grunt":"^0.4.5","grunt-mocha-test":"^0.12.7","grunt-contrib-jshint":"^0.11.1"}},"1.1.0":{"name":"libmime","version":"1.1.0","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@1.1.0","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"9eebbc2f1ceab8e1858e6b8ba3b2a943713f25ec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-1.1.0.tgz","integrity":"sha512-FifxkQolHDPN4O5wEJm/qbQBSotdvRLkkJl8uV9Jva12KD0zUc5KOqDO34s9E3qY+p3U0wIMmM4S3nivOAVbcQ==","signatures":[{"sig":"MEYCIQCkZQdc+1jCR9CBieSfFFRJrS5gXI3QJMnOyd2DarTjqAIhAM4CZbDy9GA1hJQFxZH7XK5X568drbxm8eGQ1Gm46O/M","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/libmime","_from":".","_shasum":"9eebbc2f1ceab8e1858e6b8ba3b2a943713f25ec","gitHead":"a101ee4e6748f1f9446d6c1e6818c7dc153701b4","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"2.14.3","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"4.1.0","dependencies":{"libqp":"^1.1.0","libbase64":"^0.1.0","iconv-lite":"^0.4.11"},"devDependencies":{"chai":"^3.3.0","grunt":"^0.4.5","mocha":"^2.3.3","grunt-mocha-test":"^0.12.7","grunt-contrib-jshint":"^0.11.3"}},"1.2.0":{"name":"libmime","version":"1.2.0","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@1.2.0","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"8d84b4f3b225b3704410236ef494906436ba742b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-1.2.0.tgz","integrity":"sha512-T1b/a+85vR5uJOzvQG2xZlGsWdELj02jijj/ooBcIwJUF11yiE6n2T3EI9n0B5kJX1GhI9BTTb13g/bhnhxDnw==","signatures":[{"sig":"MEQCIFUtGRvzuTuqi//eCOzxBkxUQ4JI4jFUe9XSeCE49gYYAiB5yJBdXRoWUAf/nYCNxdxG9PucPhNoR7k/d5GPGWqAkA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/libmime","_from":".","_shasum":"8d84b4f3b225b3704410236ef494906436ba742b","gitHead":"93620c8a6b6f7a6ddee9277fa5f3b9d48f639b34","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"2.14.3","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"4.1.0","dependencies":{"libqp":"^1.1.0","libbase64":"^0.1.0","iconv-lite":"^0.4.13"},"devDependencies":{"chai":"^3.3.0","grunt":"^0.4.5","mocha":"^2.3.3","grunt-mocha-test":"^0.12.7","grunt-contrib-jshint":"^0.11.3"}},"2.0.0":{"name":"libmime","version":"2.0.0","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@2.0.0","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"a17a68dc4fa2830bb6499eb1da35099676c8c724","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-2.0.0.tgz","integrity":"sha512-cY1UBYNYBfhoADleot3wBcnyhOUZuZHWBcfqD5x0GI21s0UlQhIkKLCEI4Mb537nSeyw6kAuQKEInUo1HLOUhQ==","signatures":[{"sig":"MEUCIQDp0ckDRoasFsqypMW57ICZFIwkV80qy/HHunXbq+kR0gIgfJR3xokXLvH19jJAqC/iW5BhWvDv89dTTJWaiipvcZU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/libmime","_from":".","_shasum":"a17a68dc4fa2830bb6499eb1da35099676c8c724","gitHead":"76239f614815cb27ea573a1e87798e3927f82cea","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"3.3.12","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"5.3.0","dependencies":{"libqp":"1.1.0","libbase64":"0.1.0","iconv-lite":"0.4.13"},"devDependencies":{"chai":"^3.4.1","grunt":"^0.4.5","mocha":"^2.3.4","grunt-eslint":"^17.3.1","grunt-mocha-test":"^0.12.7"}},"2.0.1":{"name":"libmime","version":"2.0.1","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@2.0.1","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"d3a6848c3a6e61012bdd97d5277b7fa4deb78b83","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-2.0.1.tgz","integrity":"sha512-hqxMdbG1wMzJgBJsTCYvA+GEiki3EDseIx3sou/cwtBlSPytyWKfpoG7xMOUQgCIwoLrjm4Hh3Au9+uNlbzNbg==","signatures":[{"sig":"MEUCIQC+RGHCHG1wq2bYE7jvlNFp0fI9MNmSpjL75CXGhIUmkAIgUtrqPG3n6E0ioiQyvBPx9Rc6VPnPCWOYGGWfws+zTsg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/libmime","_from":".","_shasum":"d3a6848c3a6e61012bdd97d5277b7fa4deb78b83","gitHead":"c821b32aeb032697deb11147a99c5ba769ba8c67","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"3.3.12","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"5.5.0","dependencies":{"libqp":"1.1.0","libbase64":"0.1.0","iconv-lite":"0.4.13"},"devDependencies":{"chai":"^3.4.1","grunt":"^0.4.5","mocha":"^2.3.4","grunt-eslint":"^17.3.1","grunt-mocha-test":"^0.12.7"},"_npmOperationalInternal":{"tmp":"tmp/libmime-2.0.1.tgz_1455118801780_0.13092846772633493","host":"packages-5-east.internal.npmjs.com"}},"2.0.2":{"name":"libmime","version":"2.0.2","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@2.0.2","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"6f05e138ecb45d2c441d440a3c5225ef3f535d8a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-2.0.2.tgz","integrity":"sha512-o4n+/+cR7UdqtZ4jy5G3C3LRkbx5x2G0l6arcAu9XX+Oo8R6Qn/VSEFi/VlL5zRIqKpJpPAyZydlvCsZ4b5aPQ==","signatures":[{"sig":"MEUCIQDKl7GHeCMcMK6Lpd+5gTeXk2EWI8dz7Zuw0YvJaAmIugIgWNEC9lOdXgSQdGIBoslY7lYTS7lH0MF/XcdfiocWsyg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/libmime","_from":".","_shasum":"6f05e138ecb45d2c441d440a3c5225ef3f535d8a","gitHead":"f9e093807614a30d8f656db71ac0cc3e25bed94d","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"3.3.12","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"5.5.0","dependencies":{"libqp":"1.1.0","libbase64":"0.1.0","iconv-lite":"0.4.13"},"devDependencies":{"chai":"^3.5.0","grunt":"^0.4.5","mocha":"^2.4.5","grunt-eslint":"^17.3.1","grunt-mocha-test":"^0.12.7"},"_npmOperationalInternal":{"tmp":"tmp/libmime-2.0.2.tgz_1455127550483_0.10541912005282938","host":"packages-6-west.internal.npmjs.com"}},"2.0.3":{"name":"libmime","version":"2.0.3","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@2.0.3","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"55751aa832d31492363df3dd810580dfd59d080c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-2.0.3.tgz","integrity":"sha512-yM/cO2KYA5D5XTvJwbEngLzD6FglI2TK+N8XXdeesEgrao4j9tM55TkoCEoqCAsS9oema2ohVp6wRKRJNempcw==","signatures":[{"sig":"MEQCIHIrlonb21wRhA2NVW8MZ8oC/v6GHdHJk2oYiM/8zk+QAiAbKznwopB484k4OPcdJiMkgYTrunhNRC6tVd74guXjAA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/libmime","_from":".","_shasum":"55751aa832d31492363df3dd810580dfd59d080c","gitHead":"bda029fabd501daff807c6c23f63027e927834e2","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"3.6.0","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"5.6.0","dependencies":{"libqp":"1.1.0","libbase64":"0.1.0","iconv-lite":"0.4.13"},"devDependencies":{"chai":"^3.5.0","grunt":"^0.4.5","mocha":"^2.4.5","grunt-cli":"^0.1.13","grunt-eslint":"^18.0.0","grunt-mocha-test":"^0.12.7"},"_npmOperationalInternal":{"tmp":"tmp/libmime-2.0.3.tgz_1456778902812_0.11543065728619695","host":"packages-6-west.internal.npmjs.com"}},"2.1.0":{"name":"libmime","version":"2.1.0","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@2.1.0","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"51bc76de2283161eb9051c4bc80aed713e4fd1cd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-2.1.0.tgz","integrity":"sha512-4be2R6/jOasyPTw0BkpIZBVk2cElqjdIdS0PRPhbOCV4wWuL/ZcYYpN1BCTVB+6eIQ0uuAwp5hQTHFrM5Joa8w==","signatures":[{"sig":"MEUCIQC7ycJU/1mt0/tCZsjdTlQC+w+sJkxmF6ZOautWJFiErAIgPxq8EgGEkbXSVE3yz1jdkvsQ+w/rKFXrzobn6l9raMI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/libmime","_from":".","_shasum":"51bc76de2283161eb9051c4bc80aed713e4fd1cd","gitHead":"898a4ac857a4a60473a8e373d88c0a4deb65b916","scripts":{"test":"grunt mochaTest"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"3.10.3","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"6.3.1","dependencies":{"libqp":"1.1.0","libbase64":"0.1.0","iconv-lite":"0.4.13"},"devDependencies":{"chai":"^3.5.0","grunt":"^1.0.1","mocha":"^3.0.2","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-mocha-test":"^0.12.7"},"_npmOperationalInternal":{"tmp":"tmp/libmime-2.1.0.tgz_1472025379732_0.8064733906649053","host":"packages-16-east.internal.npmjs.com"}},"2.1.1":{"name":"libmime","version":"2.1.1","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@2.1.1","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"7ed34053cde682945d47c42e24c8f19b2565c010","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-2.1.1.tgz","integrity":"sha512-eamfphOrd/TDGYyTD3/LfJRz5dW0S8U2mb7x94+0BCr+Q/F33zTOpAWM/HkmdO8YMxympatLMd7CKun2UpkJNg==","signatures":[{"sig":"MEQCIEciSJ19FbPtz9PWobHB+woQemJpteRdAwaVRoRuEmjFAiAiSizjM1F40DYN9QfwOeTHvA+UuDRx3VpODrAdr4z4/Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/libmime","_from":".","_shasum":"7ed34053cde682945d47c42e24c8f19b2565c010","gitHead":"5110083a510f65c60952e016219acca739038b5d","scripts":{"test":"grunt mochaTest"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"3.10.8","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"6.9.1","dependencies":{"libqp":"1.1.0","libbase64":"0.1.0","iconv-lite":"0.4.13"},"devDependencies":{"chai":"^3.5.0","grunt":"^1.0.1","mocha":"^3.1.2","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-mocha-test":"^0.13.2"},"_npmOperationalInternal":{"tmp":"tmp/libmime-2.1.1.tgz_1479220709268_0.5540771053638309","host":"packages-12-west.internal.npmjs.com"}},"2.1.2":{"name":"libmime","version":"2.1.2","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@2.1.2","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"3bb4fa7ecc3299dd575bcedf51132a58134ecd23","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-2.1.2.tgz","integrity":"sha512-xAwjSdYJ8KGn/DvlcI0UpbRuGtTImbRi2Cp06PH3XN2xkIybOXYahtsy5ha74kDvnSdF95zS8G65YkhPFptqGw==","signatures":[{"sig":"MEUCIQDgtynHyCbFC7+sCeo3yE4ANaFTPNaj1pcrkhuSZAzvWgIgN+SurOrTwrJEhlaCIV7c5/zk+/U4T3EByEv3Pv8l+Bw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/libmime","_from":".","_shasum":"3bb4fa7ecc3299dd575bcedf51132a58134ecd23","gitHead":"db33b26da153d4ebf3ce0dc732a15b92dbaf800e","scripts":{"test":"grunt mochaTest"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"3.10.8","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"6.9.1","dependencies":{"libqp":"1.1.0","libbase64":"0.1.0","iconv-lite":"0.4.13"},"devDependencies":{"chai":"^3.5.0","grunt":"^1.0.1","mocha":"^3.1.2","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-mocha-test":"^0.13.2"},"_npmOperationalInternal":{"tmp":"tmp/libmime-2.1.2.tgz_1479712558262_0.9026859472505748","host":"packages-12-west.internal.npmjs.com"}},"2.1.3":{"name":"libmime","version":"2.1.3","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@2.1.3","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"25017ca5ab5a1e98aadbe2725017cf1d48a42a0c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-2.1.3.tgz","integrity":"sha512-ABr2f4O+K99sypmkF/yPz2aXxUFHEZzv+iUkxItCeKZWHHXdQPpDXd6rV1kBBwL4PserzLU09EIzJ2lxC9hPfQ==","signatures":[{"sig":"MEUCIHNspNKhSZgtBLSAzIAJIpnPdY8hTQnM7UZZnkbPz6IXAiEA6VVJGXFJjG1ju2ja52clqUhFegkpWK6s/ZuA83hcXtE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/libmime","_from":".","_shasum":"25017ca5ab5a1e98aadbe2725017cf1d48a42a0c","gitHead":"65099fa946b2400652540758312498e4c6f82599","scripts":{"test":"grunt mochaTest"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"3.10.8","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"6.9.1","dependencies":{"libqp":"1.1.0","libbase64":"0.1.0","iconv-lite":"0.4.15"},"devDependencies":{"chai":"^3.5.0","grunt":"^1.0.1","mocha":"^3.2.0","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-mocha-test":"^0.13.2"},"_npmOperationalInternal":{"tmp":"tmp/libmime-2.1.3.tgz_1481186272406_0.6673425992485136","host":"packages-12-west.internal.npmjs.com"}},"3.0.0":{"name":"libmime","version":"3.0.0","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@3.0.0","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"51a1a9e7448ecbd32cda54421675bb21bc093da6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-3.0.0.tgz","integrity":"sha512-o1VR5Qjw4i89trcJ+VOhomgqsztBWukQY9MQLV3aMEdtzMa+V6pBSz+0qO55+hTET2lpSOuDTj1Ke/X20D459w==","signatures":[{"sig":"MEUCIQCpmnw0pJTkJhLzbtbZ7mm7LB+R85ejw2UZtmZDU/sQVQIgAb7O5xTGkHz6myYIagWnctuAzsL4ccQsT3ofyUf2QGE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/libmime","_from":".","_shasum":"51a1a9e7448ecbd32cda54421675bb21bc093da6","gitHead":"a96378c519e48f1c2850fbe4cf8d626a9ae3e08a","scripts":{"test":"grunt mochaTest"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"3.10.8","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"6.9.1","dependencies":{"libqp":"1.1.0","libbase64":"0.1.0","iconv-lite":"0.4.15"},"devDependencies":{"chai":"^3.5.0","grunt":"^1.0.1","mocha":"^3.2.0","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-mocha-test":"^0.13.2"},"_npmOperationalInternal":{"tmp":"tmp/libmime-3.0.0.tgz_1481190212521_0.8747396518010646","host":"packages-18-east.internal.npmjs.com"}},"3.1.0":{"name":"libmime","version":"3.1.0","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@3.1.0","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"115012f1672051adc8809a8f93955ffc3648edf9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-3.1.0.tgz","integrity":"sha512-goIBKwAxTcDyiEqb4OnPxu8ObZUmt3w/HDmD3Prxay2LtIXX4qC5fzWJ/L2F/VsQtsmrpfLvWnY9dUWfE4Ht6g==","signatures":[{"sig":"MEYCIQDLWfYhrKubNWnXyXUEy22SL+tr+xEznlAOPy/KCXQecQIhAJHOmm3z5mE9SLaarVMn7jg84qDhzsgNBljk4R2sWDft","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/libmime","_from":".","_shasum":"115012f1672051adc8809a8f93955ffc3648edf9","gitHead":"d9be88efc962ba0d43149e9a03605e15721cea8c","scripts":{"test":"grunt mochaTest"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"3.10.8","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"6.9.1","dependencies":{"libqp":"1.1.0","libbase64":"0.1.0","iconv-lite":"0.4.15"},"devDependencies":{"chai":"^3.5.0","grunt":"^1.0.1","mocha":"^3.2.0","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-mocha-test":"^0.13.2"},"_npmOperationalInternal":{"tmp":"tmp/libmime-3.1.0.tgz_1483887094220_0.851130515569821","host":"packages-18-east.internal.npmjs.com"}},"4.0.0":{"name":"libmime","version":"4.0.0","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@4.0.0","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"e889a43af8c86da2e89b90ddbccb7f7160bb69b6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-4.0.0.tgz","fileCount":10,"integrity":"sha512-iis2GocJfHqOoh4MR3wg9zXWd+MLw/Lj9F61QpWRgMCCCkiZg8B96uGDig5IJE9z5iTjXiWg7Lo/iSGEPbAHWw==","signatures":[{"sig":"MEUCIDjmeBEh+pDVP++GugcHW3iNCcfdfqX381Ihnfe+62JjAiEAvLL467ssPtv4Fm88RqW3IWL4frpY3h9QVr2XEH1QlKc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":143230,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbHjocCRA9TVsSAnZWagAAEzsQAJEb/HUFZ6euSF20vhzC\nOjiSTo1sRAKrVB/XhRD/zFqVFKj4M3Ner8Yln/dMlH9VoOhMQOMa/kBovlOk\nyD2yo7A+DUIkjdCGhUuxVoqh2JB3vA7qsrD/IjAPjUkIPHajId1MGUQcSk6/\nUKATQOBMitLskGagYlInfKa8HtBR1wcuqA3wMpdLTH2+j/vdXQhjIPPWz3kR\naOrKxwPh/wN4OTW7liwmJ1ZkIVpgOnHMRRPSMuitGIxlhwmsjxix9Pj0f/qM\nzU17nmxLhZeJCiPcF2hvBowew3wwOtjGVtjqbBhY68JZwJWMe0Wz8I+69B0X\nytlYCRJVOpxHkvr1FDlb7Ght+yqxge/TgYSe0COS56Kq9tN/smLwuPGMPq4v\nddEmFBcbv38FK8AjDtcFlCtNddI4FzQQeq9pwDJrmnal7pdg98Sq/LChkPYp\nMbNsZnHNJuFHqvnDeIpw0ikuOJvCvHsxmliQ/0SV/xX0x9pHKJsQyrgHCeu2\nUE58w6bVyDC7Deo9W840eKrLhTeIv4TjyKiDYh940x5FbuAu6w0pgXDL6x/G\ncNaN+huEhnURO1HfehDTtINjbU92NMdmzt+M0ORgP2oLdPfRTGtiemRoo5or\n9sm489uyouHLr1Vw0uwEqwVDKcaMfVF00PCcYZYU5hr7OvhuG3tHeJ5lnXRe\nwRDg\r\n=l/Vm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/libmime","_from":".","_shasum":"e889a43af8c86da2e89b90ddbccb7f7160bb69b6","gitHead":"024dfb2745fb4fc76cfc69162f594642361357d9","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"3.10.10","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"6.14.1","dependencies":{"libqp":"1.1.0","libbase64":"1.0.2","iconv-lite":"0.4.23"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","grunt":"^1.0.3","mocha":"^5.2.0","grunt-cli":"^1.2.0","grunt-eslint":"^20.2.0","grunt-mocha-test":"^0.13.3","eslint-config-nodemailer":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/libmime_4.0.0_1528707611218_0.2653926855043265","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"libmime","version":"4.0.1","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@4.0.1","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"dc71a19bfa6a97f8249d7205251d862d6fc599fb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-4.0.1.tgz","fileCount":9,"integrity":"sha512-mGgJLRkpkMxZZYE7ncVXokgKfi5ePrIB1H3W/Bv3GbkVnFydIHTsPrfAVW0edxalQHmFfqDMU9W45PidCLG6DA==","signatures":[{"sig":"MEUCIQC+G4OYh9HbLCoUJt6VkLF9iuHaxsOCXjyhpOPTm7tJiAIgA8j/OOOCP+/wvi+3QwiHXWT4jMNqKPYfx0sDh9j9Km0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":143250,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbVwO0CRA9TVsSAnZWagAAq6oQAKEdYrfDhUN+B+EXJJ0I\nOZnK3klOdKXR1e7ttV8SbiiS4Z4wuY8M29x3Bn42sAImUrQYdrRylQrgle4n\nz9SHn6P244wy3t198j+5Bp1adwQCviit61jMCXUJsKCt7j8XuUkGDTmo70Uq\nPCibKtDuLtW6aAYtcYEwzDCXliHA13IJCniPE48uOOtgb04sjil2LPa6Dy4U\ncMXn6EvbhE+ENENKdUUMqyFDehAfSdflQGpNdi6cVyOmEJVaIqoO1BFtQVm9\nsbDrmJs+wLCH9oNjrO3eSTUhOXPBxQZsw+70Tqv0baR5qWKLrFFYcp3M5H+t\nFXd8NaKBEV70KjfM+CtDsOe8tmW6G5LrjbmkYZMKrsXRg37K6/3A6EcuM8Op\nAMdnR24sKmk38TlF8netWaZG0GTH/nRKTvWjtPLNGn27fgoOQFNxCTzq/T0E\nPWtBeFkvcBuuYKgdYB26YxYXtBSTytUYUijdWVjKRO7axZ5QucIrpivZqmjT\nRVQDV2C5aY3JYGlhiFzpLtYNqBxojI0zH9fMSCPW7QxztVTpAfSXmnvyzB8T\n8a47CYZLqdXoBq6yExsB5UPm690SS1rYyZHF311b8ucYDHEjMNTEgdcsB2rZ\nQiPoo7oI12pH/IJNnHZ5I8hKeblX7wsM52tdltxgmiXPu5s/0skSRwU6hSgt\nIfwi\r\n=766z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/libmime","gitHead":"a0a84a429e68f206bae4172c4cc1a38d3930c369","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"6.1.0","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"10.4.0","dependencies":{"libqp":"1.1.0","libbase64":"1.0.3","iconv-lite":"0.4.23"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","grunt":"^1.0.3","mocha":"^5.2.0","grunt-cli":"^1.2.0","grunt-eslint":"^21.0.0","grunt-mocha-test":"^0.13.3","eslint-config-nodemailer":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/libmime_4.0.1_1532429236735_0.5175499335076432","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"libmime","version":"4.1.0","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@4.1.0","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"41d53a0160e7c76e117b63c9527ea479b7863ecd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-4.1.0.tgz","fileCount":10,"integrity":"sha512-SHkLd8rgKC33O9nMea2uKaLRgZgX7/ewniAyLkaTSkRUSXL1StY/GgFR+Xjk5bGU2Er/M93DPtnSuKo/zNViug==","signatures":[{"sig":"MEUCIAavMtiD6PcXeaREtJeYi2LQX2o7SpdmWaT2lbZnFAieAiEAlGXfJ5EXP9+FhnFxLCN6WC+S7/ZnYuZXkYF8sLPfUG0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144296,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcyaVPCRA9TVsSAnZWagAAZmYP/iMPj61VGltvhqX33+dS\n7VyFpVJselcV4BgVD/u4cuiPdYi/IjaBdnRvOx02cMIINLymeT/GN5LD9we3\nj9W1M3ukxdmWooZ/8yTX9yshlNE6D4RAqYKu4rQQxF+of86qhotNLt3csX42\nfAwz2Qx4Q0/dceoe16AYQEjFpsugw3Q6a9t/2bKlOdyWfbT2ReRxG1bOtzDs\ncJLXPpUWpNli/ImJMDaA5B3fDR5tESUsgp96EsM309BM/+Mn5kW3z3qMM0zX\nKNQKBaQG1SeH0ARKJV7pUW0H+I1Ze+g5bhXJLOQ2az1iv5WGvU8bG0SZy6RG\nIU1gPQ3p8BN3f8SV+6MKkC6QIKrXO+2vzk9kWdmser/cLnMpTuPmLwDMfzk+\nXSf8FPNjaDSW9ads8qzrNGbDd1MXbAaUZJSzgOm0VezKFe5cMTTD87zuEKL4\n50EwwZAqmmQt3D8o+I1igPf8PucnpuCSpmKzWUZLz4BJqwzMZQs7vTLgbprb\nS7w8nTnKymg0z3WFwXoHFL9+VmEd3Gok8YZ5LdgevVNh3CKGUg61HqNhuCRW\n/9NxKi3hIt7euoPWV7AHzJIiLGAqLR/bnj4RPHL7g6M58y2lviBc1rik+No5\ndCMZrEe/CdhMAz/0le8OseiPyFseW4RnpnWbrg7wQ7Y5N5ACXuAJpiasdI7R\nPP6g\r\n=Hwtc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/libmime","gitHead":"1cc696284cc143925151f64d7d50ebdb8ffee49c","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"6.4.1","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"10.14.1","dependencies":{"libqp":"1.1.0","libbase64":"1.0.3","iconv-lite":"0.4.24"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.2.0","grunt":"1.0.4","iconv":"^2.3.4","mocha":"6.1.4","grunt-cli":"1.3.2","grunt-eslint":"21.0.0","grunt-mocha-test":"0.13.3","eslint-config-prettier":"4.2.0","eslint-config-nodemailer":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/libmime_4.1.0_1556718926440_0.2722410788404126","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"libmime","version":"4.1.1","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@4.1.1","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"eb7a60c775ba78c3715ddaec5cd52596a047f8d1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-4.1.1.tgz","fileCount":10,"integrity":"sha512-HkOfBSj+l7pBOOucEgiI6PdbgHa8ljv+1rARzW743HQ51UP8gabMlcA2wAF3Dg1aeuMjHZ+LzAPYxM52IZsyGA==","signatures":[{"sig":"MEQCIAI0SS+qkvfJ6XsVjQUyv8uH/wswkCO39EoRDgboHVXPAiBR143kG6B+bt6oGbtXW9BNkJP988iO/P4ohrG5UemUEQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144316,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc0CwWCRA9TVsSAnZWagAAcyQP+wdRhsLE/NxaarYS7MDB\nXaEAmXIWKnOQVHiKyQ7WPWgCP1LuRABZFcZRrxnAcoPQv7mUzQ2FuZ6zOCO2\nZx458GtOA3d0m7gixrSLhqV/AM4Byk5HsFLylK4fX14mwNrQoZrR+b9KFkJ4\n/nCuKJu6j92bBZypWtYVp5x6K+8o7p+p3czwBqP7P9v+9TDys/9U64K3IdYT\nopwXcKf29uGjyKtY/nO5tb8EM+FUOWPk6G4hDnciAIGPAisdjQiGM9vkuFXI\nufFversMHXolnRFG6n0ctNOdo45vTpM5P+/0qwd/eF3RdBZBuLmGEzQyM85Z\nbrII+5RMu8iU3RWmUDriamhIzi1hSET/AQvixAZtf0eAV43IsI4SexRHnK9R\nKBvY6Td32taaIyDuMJ9qILhX9ync0g/zKUwN/UW3Lt4SXog3V1DcTNPPMq8u\nvjCgTPLbF8+S/W5vpVh/MRgakWhJnnAuKkmAl8YRuhmWU0BcrRGm+CDksZk/\nnPnwY7ScDWamLaLGNPd9QvRpDmZpu3mBalib9LonAbNaFTS16yQ7poNx2jG9\nWfCdY+yG0wU6DjFIjWASD1JyN5kYVAe6g2fsRPtKOLJbNakVBkvpjDIvW8nq\nNhvHGLSkGgA074pIZJuirxM8aOn9/nPdvicR6kgtDpMNPlWWVAmaXHxrsig8\nLlwg\r\n=/eVM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/libmime","gitHead":"b1ffb496b95215f8717c68e95da5d83c52f25118","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"6.9.0","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"12.1.0","dependencies":{"libqp":"1.1.0","libbase64":"1.0.3","iconv-lite":"0.4.24"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.2.0","grunt":"1.0.4","iconv":"^2.3.4","mocha":"6.1.4","grunt-cli":"1.3.2","grunt-eslint":"21.0.0","grunt-mocha-test":"0.13.3","eslint-config-prettier":"4.2.0","eslint-config-nodemailer":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/libmime_4.1.1_1557146646164_0.571364810096733","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"libmime","version":"4.1.2","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@4.1.2","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"e57d565260f24f95ff2836bf145dc528a5233e91","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-4.1.2.tgz","fileCount":10,"integrity":"sha512-Tb65UMnZeRx5WiiV/VuqSK0rHxXs5XAumvqubiGd3x0dMHni5jYXHOxBUuLhFO10ylP2vPHrVb4O7fR6qddeOQ==","signatures":[{"sig":"MEQCIFq0LhIzgRlFgjdQg1H9Z4KzFDXlyEaZwFPYbpy/kaERAiBW1uLPfrJAu0NcE9eC1j4C9e89O0rth7luaNxIPjfO1w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144350,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc3WeGCRA9TVsSAnZWagAArcIQAKKXAU0r2nMQ5YIim/t8\n4PZlHtUj718b30OHuP97rhl0WpbbNzNPCHbeH5sdnIbjl0DDj1jJ7pDDsBjL\neRGH+wYRCAlryoaPBRMw2s8CCyMNK7a7/1CH5sXrigKAi4BrjxQUx4J0skAc\n5fEjC79fQRRhpg0xbYoJuzKmG7y2yGsSKNfar3Gr8OgiRC4rj7ZMIWNpZJaM\nM2JOfEFb7RIfILy6c10spPTUot21nJuUFHmox3qhvNFcb0Tftw5zJgnbyKDc\n7/N5fXSQUeU4F4jo15049M/xH1DwmlNv0nh9DjdJZ7AIlLbKoBTT05WMkde4\nCD56Z2B+UR24Q/kPZj2UEn9N1fsdfgg8Ex3kcdBe253n1L/hqzCnc+XbBUnd\nHmkv4yTiP1S90P2xedpITAoGrmXxqJ0mzV7zKeNIZPZHoHcZu32E/oDDF4cb\nm5ZLGs23uakq4aEskJlNvZaEbi8WO+5bUZPwCspUmCAOCKgqLzOLg17UIBTz\nFHHecNHcdRzUD5+autqNUdHdr+6eFWQpPHZdPCLN2r2sJRE32yS4wUS2yW2U\nxfr/pr5Rp/dBbxtF4AEpJtTMKweyFs3FYHX/ect6BY3GLe9Tb6gUZ0+uotnG\nQjFwMVUZtL0KGz3/A6VHliIxfEswQJ93CHgq/I1FDcGukqIG+gWwdcvM672a\nU2NJ\r\n=KYJT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/libmime","gitHead":"235459adebfa7f46b542628c872cad748113fc6d","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"6.9.0","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"12.2.0","dependencies":{"libqp":"1.1.0","libbase64":"1.0.3","iconv-lite":"0.4.24"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.2.0","grunt":"1.0.4","iconv":"^2.3.4","mocha":"6.1.4","grunt-cli":"1.3.2","grunt-eslint":"21.0.0","grunt-mocha-test":"0.13.3","eslint-config-prettier":"4.3.0","eslint-config-nodemailer":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/libmime_4.1.2_1558013829887_0.3785213845231885","host":"s3://npm-registry-packages"}},"4.1.3":{"name":"libmime","version":"4.1.3","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@4.1.3","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"ec25396f3b773b7437a323fbec4e8f60ebd519f3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-4.1.3.tgz","fileCount":10,"integrity":"sha512-vCEJD6jfrqf5yLhI9ZmB3NqrefZIr9e/uKQ2eL/U21wMqGDqOyka/NVpW5q93QFoD+gKgDrnoxLd8Ch1/9Mu2g==","signatures":[{"sig":"MEQCIAHB8uBA4l4LrfAlNoSLVvV9XhzIpUYs82xYuC2EVV5PAiAohmgOZZ3fx2Q3QubSzOctYewXHGv1bEIL31QYBF6bhg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144350,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc3WhsCRA9TVsSAnZWagAA7pAP/1nEyfYu4h1fBCNKqjh7\n9Y68YP4Y8ak5J+BqAxPLjtPP08WEu+5bhpXy09c1M2w36gsoNzht4nG5ZFl3\nmnmzbt1bsxfAveyWZPsS24Kj26GByyrioypzBEdJwlWRZw1BnrFioy9ywvHd\n2exvpzUwWsS5lFnRW37vNPkoYhG2Af0Xm7T+VV291IUDQo4YBnfzrNydTmAf\nvr3S1Jp8fXRzoZpvAuaZ4z5+cM05z+aFKLpPHsmeMXIt28g6kiMmlN0BV/J2\nVb9XDMP/w9Nz3nzym9sb/nwj6VUEamXhNn0IVlXVA+cIRBVDhrRcU1jrITEE\nXwJAlB5JLZQWZM8pE/IejpfiZPphrlCmdVPgvE9/F3qOv9LJlSZB2LJ+dWAL\nkhG+w/FWqg4qMWXxXj4X594fOu8o4DZJ69S7jLCq59B9xcIZr/5SXn6O7jcS\n296IYOh86Bz5G0c8DjARVRRPSLiIKvtgWcPE/hJC8Y7ZPfWaLFfC/BplSNZX\nhLl7GLX9UPmjg6vL0eCSNsBeOMvkMLEGTK9ht+Mtwm9s5d9/qYD20DCEKTUa\nAvdP0FW/hmHjjV0f4gM0tAqSplLF1CsanXfMNYR4BXtSjFzkg/urTC9wx+By\nvtx/k6DwXePRiL5QoYlq6BbAHBQ9fQsIfVkrXLQtQKVfLYvsUWi3MXqDWiC5\n8EFp\r\n=2u5I\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/libmime","gitHead":"1dfea5a2f77c9f7683d78e7ab4b83c8836f0d0bb","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"6.9.0","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"12.2.0","dependencies":{"libqp":"1.1.0","libbase64":"1.0.3","iconv-lite":"0.4.24"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.2.0","grunt":"1.0.4","iconv":"^2.3.4","mocha":"6.1.4","grunt-cli":"1.3.2","grunt-eslint":"21.0.0","grunt-mocha-test":"0.13.3","eslint-config-prettier":"4.3.0","eslint-config-nodemailer":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/libmime_4.1.3_1558014059294_0.9373697870764879","host":"s3://npm-registry-packages"}},"4.1.4":{"name":"libmime","version":"4.1.4","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@4.1.4","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"0c5f84b2e7ac92bb9c4c53bc07c53341e35767a1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-4.1.4.tgz","fileCount":10,"integrity":"sha512-t/K89GTNSToxAjzM4LjchkahTJUXvpmxPTnyNZJdNeEv+JNzx5FYmakJvAfBfrF3u2Fz2OnMc/WROMO0MhZanA==","signatures":[{"sig":"MEYCIQDL5J66MDSE630KMWlH3D1/DovLricMLfXwuHnmQ+DLOwIhAOP6G8wLYZeof+sHa3Ew1KsGZtohMaAnl45/4bcUkYwB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144708,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdtqMfCRA9TVsSAnZWagAA85YP/0QHPnM0AcTNl2BZ2R+J\nR1DgzsXalEKLm95/zlpDv2YuhiRueKicL5fTYQ4cCIhmj7KrXN3d+u2BHOS7\n63KD9MTMxDkbGQh0dDsBBFsqxMtQedsWUbSm2YoOHD4rHcKzH0wH68WT6Vfs\nutC642Cg+BWMqHwGL+bQGWWSeXTtNNC3AAIKqd0ZkYytfjsvmKq8T9Ne7Ezn\n89NELxdqVygsOqBXUw35mcB0wk4Vcm3iQrTdIai0ZSHxYRyq+wRx8Bgq5H42\nQqk/CarZQppio+HD2BqxteDo6Nggp+IotuAXv8T0KlwGI0+kAgiWuOOo5MTR\nKWurF8KVkJP/wEM+fgJEYp4FM5NFA87p82lWPq+fxjiOKzVNZ9HqHu2WS3bt\nlDBdmUp8Cmmva18rpMLcfXaeUliMMkgWYI6V6pCRj0/xboZcsY301HZOmkO1\n2bYuE+60ZXWjcqMiOP6iZ+UakM4a2I8RTqFM+irsKxYtYUcAnC7V03dIzwK0\nRIx5wAF1hwfJrCqlF1PuSvnbNNTkih04Ol9kQfq/fP14Vs1Uqj/oOy/DhAlM\ncYxBFI2K6+nE3tnCqGj4saJgoIN120VSYUxgSIs9I8zZ9hd3JXBF++JyuXgD\nVWFcy3IqZ3tQ70tOP+JphNm8o3k/w/16iiAuDIXLNOt6bkjlUE9D2A6Blqid\nDpGY\r\n=qI1o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/libmime","gitHead":"3246bd81d161bd6640d7d6df759ef5ab599b706b","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"6.11.3","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"12.11.1","dependencies":{"libqp":"1.1.0","libbase64":"1.2.1","iconv-lite":"0.5.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.2.0","grunt":"1.0.4","iconv":"^2.3.5","mocha":"6.2.2","grunt-cli":"1.3.2","grunt-eslint":"22.0.0","grunt-mocha-test":"0.13.3","eslint-config-prettier":"6.5.0","eslint-config-nodemailer":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/libmime_4.1.4_1572250398579_0.2917036046331125","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"libmime","version":"4.2.0","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@4.2.0","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"494a8fb226510044e9997689d858e3efffdfc368","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-4.2.0.tgz","fileCount":10,"integrity":"sha512-cPRtSHOeq7u8IpX1wF/aiG9M7RJ8XM2mES1U2MEn5NaOUvO7FiDfKww+0KkH9wUAE8jywm2+3tgOig6sJ/fb8w==","signatures":[{"sig":"MEUCICnJCUlzDohcca78uSX5biy3SF0pd79wAAv+K1hUG0bOAiEA2JfUeSTgxvIfRVdZDm2tU65hJYAPiTBWSNzNXkNH3aY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144981,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdtzHvCRA9TVsSAnZWagAADjwP/jDA6OxuI2QCZakuVnEY\nObRPmPJ/Yj9PesNmjyvLiskUHK3rsAsl1g8XR1dLSVOgPd5kxFFxk6Ue53dc\nPhjxhkQb+FwK1uJaGj40dJ9DHW+5WGBJpwhuQoK+nw1bGVpfK0i/KFqLSHmQ\nTJNcl3SQ9/zeptO+pE4BZtoqHywK3IN+bOg79yawuNh7v702I7baoOB8RNm/\nXZMwYngSYG3eDBY/4qEtE9Xmw5kdheD0mP8Gpz4nyG111SToChq8vi/9w5D0\nNM90VElYSFKBsHHTdL3C9Iw0Tr8f9qYBwbhEvAtJhanY7I8VXO6tDV6gKFUg\nhRwHjPYGUxjTvTE1XimGQfzgXw/j27UgBTwzlE0TYCpplP9MvQgCKDqTsC18\nKxhsxJSRqvYzBXwAs6bzqgFJKKgWra381vb5cJcr6HY5mOu+RXFEyq/Yhf87\nSIIfSiEtedx9YXzl6u2ZfyJXsTxNZFnbJLr9Dyqkn8PU4x6JrO+igm+t8MG0\nize5Xm00QhQFinPC4p5oq2kbqaoxUeVKBKJIsjYZ49ym7q7kkFMDuB+vmhXO\n0KftrmqZVoRzklL3n+j83NsujD95l1sv8BAlohrYzE4mpnHD1KgOB9HugiuK\nZC+ZclIopHqOMTaiPdWCmKVNsCcCjX+rE7Re/UPoPCvtKGnt1pcdiwb95laF\nmj+h\r\n=fbu9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/libmime","gitHead":"2de24df55b6000f7d319dda42dee4991b086a1b5","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"6.11.3","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"12.11.1","dependencies":{"jconv":"^0.1.5","libqp":"1.1.0","libbase64":"1.2.1","iconv-lite":"0.5.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.2.0","grunt":"1.0.4","iconv":"^2.3.5","mocha":"6.2.2","grunt-cli":"1.3.2","grunt-eslint":"22.0.0","grunt-mocha-test":"0.13.3","eslint-config-prettier":"6.5.0","eslint-config-nodemailer":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/libmime_4.2.0_1572286958931_0.34477191117851347","host":"s3://npm-registry-packages"}},"4.2.1":{"name":"libmime","version":"4.2.1","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@4.2.1","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"d21aa5db88b131af18bf5a3caa1013da2c21a9dd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-4.2.1.tgz","fileCount":10,"integrity":"sha512-09y7zjSc5im1aNsq815zgo4/G3DnIzym3aDOHsGq4Ee5vrX4PdgQRybAsztz9Rv0NhO+J5C0llEUloa3sUmjmA==","signatures":[{"sig":"MEUCIQC/h1H5eCuBAGwRVN0MSl+wRci90RIYJwaQ+bJHyuL25wIgPgecv8e7Br2k1+r/loz/Pyh4brYfA26sIG+e+cLTjb4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":145655,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdtzVOCRA9TVsSAnZWagAAL94P/2tIf2EphQTySCbliql0\nf4cKYKzdvScAdJRDUmkyVtyq2GMSRXcNavXnXhHu1mlqSVp79OAp4RPdvZuh\nf1Wb1JLYcN2yZ/8/fIDiHGQVUdnuEYaTvS8oH1WjfvxHRX3osuflKsp6WFxg\nsQvfvCt1XIq1pzzK3OXCjSmMgcXHZAeGCgKnZ4dUfbzvY9DadrLc8OqHLxAy\nR6MfOOMWQxnLA/Ik+cdon1gw/P7XJFhzKCmbQ759VzUgF7FsmIpXItZ9Xkj+\n9Oi3ulUkttGuOz347w2me5X2/m10pbAzVQ2A6oeOwS5qFC3wV4d3ExrKKOfD\n70Jkm58AfZ3udTAhEf4g+jY63p0+E9f76fJeYe2d6uXN7cmvtlHcDT6jsRdE\njs2UDGX7kqi8DcGzOXNXQcWiXAx9XIF4eixLBxLyE7aKKhtg2yCRgkHCl2aK\nK3wUiOoNBawkmNZjDCLAGE+InA5lRx/5nmuIvLbqJ/lUes9sE1S60rnwhb78\nRXoVj+XUpyDEy0kB4dccNvvDZ2pRh3B8nLc77lfgH+olDt4FpMo9lFv3RFJg\nbNv5xE+IyBRlaOPLVKevUEmyqjIXjh/ip0HAI33GaVSP8/7Vp6RrVL/kkEoE\nrMcd9BRyhTpniosop8Y08EeZAerlxB3oeyhR+gzyDvrti6stf/cJ9aUqg7un\ne835\r\n=Fve9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/libmime","gitHead":"aa62a9277f61b7b438c97d1485a5b9ffe7e46840","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"6.11.3","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"12.11.1","dependencies":{"libqp":"1.1.0","libbase64":"1.2.1","iconv-lite":"0.5.0","encoding-japanese":"1.0.30"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.2.0","grunt":"1.0.4","iconv":"2.3.5","mocha":"6.2.2","grunt-cli":"1.3.2","grunt-eslint":"22.0.0","grunt-mocha-test":"0.13.3","eslint-config-prettier":"6.5.0","eslint-config-nodemailer":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/libmime_4.2.1_1572287822021_0.9715337666844912","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"libmime","version":"5.0.0","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@5.0.0","maintainers":[{"name":"anonymous","email":"andris@node.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"4759c76eb219985c5d4057b3a9359922194d9ff7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-5.0.0.tgz","fileCount":11,"integrity":"sha512-2Bm96d5ktnE217Ib1FldvUaPAaOst6GtZrsxJCwnJgi9lnsoAKIHyU0sae8rNx6DNYbjdqqh8lv5/b9poD8qOg==","signatures":[{"sig":"MEQCICMSiSBesytFkKPwPtOCkgqx5lbAjzqUYOrsFPG9fBgJAiAqq84JfLmewvGnwaXZvlrl1Nc3DagWNrviflG9ePre4w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":145388,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfGDNzCRA9TVsSAnZWagAAkdQP/jj6v83P8wmm0EYuQ+Ba\ntSkXrWGwbhziSlNhYgQ0LQA9ygoDAOtzhXt6ydOUx5dAs1nNn3fB03tv4oVz\n4ChGvb3pk9vAq3qMGy4k1KcklRGvnti+6cxgwsD4bDkn/UunSE270syOc+gC\nCNRcUKdnwk9sQBwmvSfpIK6cczq0uOiR/EJka+aUxEX3NDwiV+WzLt8sOXvM\nhCpOF4pisEsg1VPAYNdLsf9erzSZuOosqUkDiz/nivmveJdxTVhy/CFLGomr\nucQWIstLDF0YF19MhXayC+h9+8X64+1WDWrGO+C9aiaxjm7t3EtWo9lnc2rp\nPz2eh1SHb2qNCUFYZ+Ty2J/jEGom00U/FKMxpFyGPHtUO1aU6uPhrnfBGz1t\njZrKVB8ii5zHDFGIkBJDBXsiy5uS3uxks3PrrNSpkrG50+f8G0hctahsUlSa\nlEZl4YX8bMwRbbyBkdxLY1BNeMwrx3taeE0+7hKjrNFqwqZHSG9TW4e+wxMI\nvFGOmsAlDtfVRqThZBwr6zL0hW5qKujn03YTul0DcFt87P0tpVuQrC6frvOw\nahLfLiJcrhFCVASU5Ze2MQ25NFiMACyaAipqqXaJd/SCY802UtXSDqE2m+3J\nltuhMsEMvTcytnwCuGeVegVVEvkFAW6aZo2wW5Bh5l0F5uYNZV9P4Um30Psz\n7fOD\r\n=/ZBF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/libmime","gitHead":"d058b87e8294cc6d42ade9d196d22f4b70211d91","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"6.4.1","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"10.14.1","dependencies":{"libqp":"1.1.0","libbase64":"1.2.1","iconv-lite":"0.6.2","encoding-japanese":"1.0.30"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.2.0","grunt":"1.2.1","mocha":"8.0.1","grunt-cli":"1.3.2","grunt-eslint":"23.0.0","grunt-mocha-test":"0.13.3","eslint-config-prettier":"6.11.0","eslint-config-nodemailer":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/libmime_5.0.0_1595421554701_0.20255467312259","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"libmime","version":"5.1.0","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@5.1.0","maintainers":[{"name":"anonymous","email":"andris@kreata.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"d9a1c4a85c982fa4e64c2c841f95e3827c3f71d2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-5.1.0.tgz","fileCount":13,"integrity":"sha512-xOqorG21Va+3CjpFOfFTU7SWohHH2uIX9ZY4Byz6J+lvpfvc486tOAT/G9GfbrKtJ9O7NCX9o0aC2lxqbnZ9EA==","signatures":[{"sig":"MEUCIDn9ZZqroAHTpLW0m52SX5zlhXwMoN+Ngmg8+FXHYveoAiEAvTX1+lPiMDAx8UcesQOkjL9qhN0iOA5vDtiEpEOHsyI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":146039,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiatcLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq5fg/+NPnqFggtowZaTzraY2Eh1oj/dIwcFtQSKgZnarZAQ81jkW9z\r\nQkxoYudPwM8iz8zzXV1PB/0rbMmytVwFBpr+LxSySTtmDqizSmvxWakQjlIc\r\nbhLSZ/KZ0HqukDyEFlb8kdsZD04+sFsf/5l0dg71a1tgK8JinrHjXGxMp3VM\r\nLgcZJb2d5dOq/QGi+xk25yJmLZMrKlfCCB8abRNM1+ZcxsQuSfCzKWRkv4Zp\r\nmV20vxhqi653VYfR2mWWVwvTdV+8RyzW/exkZutHNAiTJtyv7TcyhF80PelD\r\ngVcrllyKHKfFbJIBnMtmAtnbugM8sVtN2Yo9PbB1cyQtPx1PctRukka5eM6z\r\ne2wcXg2pMlqEr4boVWOuPHG3ibIAoBrYflPc6mO7UTttRSs0cNOzeeme2/7M\r\ni3MYCcCfPRYyw59Dsc/u0bx/UID8Kj0cPyFPEhMdWMPdpcNLA1FWEAPaZAO8\r\nb49qDuC9g3ER+vB8WV/YgDmAMFu8JK/1jbcSw3cCObNlOiXslwcaWxfFUF+n\r\nB81OXNG3G/E2eIPjP7pd5iKLjbM/0SYtTBprIh1d7X7c57rl4YdcfCo09f8x\r\nRUOgNAXBmakG41Vmd2/eDW+wzdotYcqjOsZpcCDRasYb2WACABaPQi91mffK\r\nwVZYia0sQgNyvxfJAUMtumIVXe38VeMlvvc=\r\n=aXTA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/libmime","gitHead":"a05d09997585611c94b1b74a231174146b4a2b50","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"8.8.0","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"18.0.0","dependencies":{"libqp":"1.1.0","libbase64":"1.2.1","iconv-lite":"0.6.3","encoding-japanese":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.3.6","grunt":"1.5.2","mocha":"9.2.2","grunt-cli":"1.4.3","grunt-eslint":"24.0.0","grunt-mocha-test":"0.13.3","eslint-config-prettier":"8.5.0","eslint-config-nodemailer":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/libmime_5.1.0_1651169035720_0.8325100073186946","host":"s3://npm-registry-packages"}},"5.2.0":{"name":"libmime","version":"5.2.0","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@5.2.0","maintainers":[{"name":"anonymous","email":"andris@kreata.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"c4ed5cbd2d9fdd27534543a68bb8d17c658d51d8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-5.2.0.tgz","fileCount":13,"integrity":"sha512-X2U5Wx0YmK0rXFbk67ASMeqYIkZ6E5vY7pNWRKtnNzqjvdYYG8xtPDpCnuUEnPU9vlgNev+JoSrcaKSUaNvfsw==","signatures":[{"sig":"MEUCIQCDgJgn5AOR7Y5Km/FNWyXce0TCDIFvp3HSNFCEMLqhGQIgPCj0mphFQHH5FGQEsmyf7SSEllJ9Cn1flaD9HIihvpg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":146116,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjkZg7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoBIxAAlybLdUv9zjf9T2VlHI+bpD590VqnsNxJ781pngrQja4W2IpT\r\nbjNrddvvdkCBR8lERdS5LZE98k5Holjeorm1C2beHRx+aS3Dsp5hP1QSl4tl\r\nrgv5OyxM/AQKFdMMF9mW1fuVuDxjYoBYYDVoI7xRh1lsezIAWvLsptVmkBju\r\nrs71ggI834r8CWbRKGkV3oxmx2TnLj0YRjonDYOuidj9zBItUUgy4acNdlKH\r\nqMDmppGRPADBRHtWvtBHhtdLRFfhk186vB6tDODKg4+/y+KmZD6gHYT9eR5p\r\nZkvHXCQ9rnl8jaQxnlemn1EL6Gru4oaIWgHfPU0jiEcZr4nmaCqgy1eSdHYT\r\nrdKiaTXbWzq+VyAwepPwA39bnZUbxWjvj0GwOHqJcxT8/NKTBjf+aalippKp\r\nhycPaBN0uCS4hPPJ9Tv+S66q7lUFa/3wui0AApoF/ciZ31lPg2XMxc23YXn3\r\nmNweWtr16vtLqVBcRW3+ei1f2TbAxQPY5k3vteJrIaPBcFObM4regDB4MLZv\r\nd3fECosmHaydl72madH1M8NkZQqOgs0r+kBfJ2uE4reSPp84QFtTs9W2Upkd\r\nLYwm5oC4ls9zB0YEJ4nI/XfJJx61I8XvXx/dni7Wl65/ZqfyIZtQQL3NC+8K\r\nLbRyTAngqO7yoSyOvNc26DS5CYVBGriCmQ4=\r\n=XLYT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/libmime","gitHead":"dbb6ae4c85aaf62a3411d30ec109c24918d5cd8e","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"8.19.2","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"18.12.1","dependencies":{"libqp":"2.0.1","libbase64":"1.2.1","iconv-lite":"0.6.3","encoding-japanese":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.3.7","grunt":"1.5.3","mocha":"10.1.0","grunt-cli":"1.4.3","grunt-eslint":"24.0.1","grunt-mocha-test":"0.13.3","eslint-config-prettier":"8.5.0","eslint-config-nodemailer":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/libmime_5.2.0_1670486075676_0.14281857203017068","host":"s3://npm-registry-packages"}},"5.2.1":{"name":"libmime","version":"5.2.1","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@5.2.1","maintainers":[{"name":"anonymous","email":"andris@kreata.ee"}],"homepage":"https://github.com/andris9/libmime","bugs":{"url":"https://github.com/andris9/libmime/issues"},"dist":{"shasum":"a1075eaf702fa597161948dcae3afd03be383ac4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-5.2.1.tgz","fileCount":13,"integrity":"sha512-A0z9O4+5q+ZTj7QwNe/Juy1KARNb4WaviO4mYeFC4b8dBT2EEqK2pkM+GC8MVnkOjqhl5nYQxRgnPYRRTNmuSQ==","signatures":[{"sig":"MEYCIQCtLFhZ9Gm2R5g+lQZrjc8YOFy9dI6RtujzvjolBSIrBAIhAKhBq8XYFpZFqZOoEWqTnN5Z9f+WSIpjOfdMjKp3llvS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":146428,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj05zTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqr2Q/+NKfNTdIaSUhNBy82y/wdTVWn3tThmoA8qnCQZ2Jx7+bCbGJl\r\nriog/j/shAK5HVDxkhyRl1yngGJcF1kBPZPpKEvU2SRaUBASMeKuj9aEBwFW\r\n69HhBJR4qsfspYXQoUiMYcdBJ5uxPa//nuXAhiDQ+dfhYJuEVwevuaHK2YBR\r\neQBqVzDF+bfkIPoFoCBtIuNUFmOGjEq6T8VJ4MNvEzXjSuLG8QnrFNbRDFfS\r\nG+bClGuTEnJGUEQnd1DphTsJLCbb/wrFWnPssa/JB8hxHt+qNqnasEjm470Z\r\nwa5brtPksov8YxqrKyDgwGOmNhXvhLrveA9PMzvoIp/972ImyZKKgAhe7or5\r\nN2vgP6szTD2rL33JFk/xzy0KFzN0wjzBGQCq1mku+RzXaY+7hBRU5MPRJ1Ew\r\nc3nbxR2SuqJziqUjgiA2rxN+VAQ5aGFprpILKDDw6BpbvgpmgNBfqWUFhc9j\r\nQNxk37ypRFKN2217MjmmcvwX9Rq1XfZCKGy+99764F2kkMTyE1QbcjkU21Sl\r\n4MP7YHs0JfQQEzcX7+st+PKul10ECRaJDCW1Y+1vwDwaxqVohxSDQy6BJG8u\r\nL1nScrCmTmqzpu1l6yxCUOYaQ0GAoDHte5iQldq+zf5qHZDjNUMolP1f9Qaq\r\nBqcKMZ8kdeDw54pNySE6hfcZRcEuFGiIp9g=\r\n=98FP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/libmime","gitHead":"61597ea8416f8ed4886c0b0c1b5c35303fabf25d","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git://github.com/andris9/libmime.git","type":"git"},"_npmVersion":"8.19.3","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"18.13.0","dependencies":{"libqp":"2.0.1","libbase64":"1.2.1","iconv-lite":"0.6.3","encoding-japanese":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.3.7","grunt":"1.5.3","mocha":"10.2.0","grunt-cli":"1.4.3","grunt-eslint":"24.0.1","grunt-mocha-test":"0.13.3","eslint-config-prettier":"8.6.0","eslint-config-nodemailer":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/libmime_5.2.1_1674812626974_0.4052674355713577","host":"s3://npm-registry-packages"}},"5.3.4":{"name":"libmime","version":"5.3.4","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@5.3.4","maintainers":[{"name":"anonymous","email":"andris@kreata.ee"}],"homepage":"https://github.com/nodemailer/libmime","bugs":{"url":"https://github.com/nodemailer/libmime/issues"},"dist":{"shasum":"e7ac598dab2d461a74890da79d726bd22e283c20","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-5.3.4.tgz","fileCount":15,"integrity":"sha512-TsqPdercr6DHrnoQx1F0nS2Y4yPT+fWuOjEP2rqzvV77hMYWomTe/rpm0u9JORQ/FavEXybAGcBJsQbLr9+hjA==","signatures":[{"sig":"MEYCIQCKCErxOrJ1q05gd2Cg1cxJ0wx+izYnMCmK5FwN4heXKgIhALwT+okhzksL4uRiSKykH3fwoPjLAw9Qe3nb8pfNHBPU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/libmime@5.3.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":149319},"main":"lib/libmime.js","gitHead":"a1a31788f8bb25cb381a3fe75100b81cf0da407d","scripts":{"test":"grunt","update":"rm -rf node_modules package-lock.json && ncu -u && npm install"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git+https://github.com/nodemailer/libmime.git","type":"git"},"_npmVersion":"10.2.4","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"20.11.1","dependencies":{"libqp":"2.1.0","libbase64":"1.3.0","iconv-lite":"0.6.3","encoding-japanese":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.4.1","grunt":"1.6.1","mocha":"10.3.0","grunt-cli":"1.4.3","grunt-eslint":"24.3.0","grunt-mocha-test":"0.13.3","eslint-config-prettier":"9.1.0","eslint-config-nodemailer":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/libmime_5.3.4_1708689862999_0.053588993966505516","host":"s3://npm-registry-packages"}},"5.3.5":{"name":"libmime","version":"5.3.5","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@5.3.5","maintainers":[{"name":"anonymous","email":"andris@kreata.ee"}],"homepage":"https://github.com/nodemailer/libmime","bugs":{"url":"https://github.com/nodemailer/libmime/issues"},"dist":{"shasum":"acd95a32f58dab55c8a9d269c5b4509e7ad6ae31","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-5.3.5.tgz","fileCount":16,"integrity":"sha512-nSlR1yRZ43L3cZCiWEw7ali3jY29Hz9CQQ96Oy+sSspYnIP5N54ucOPHqooBsXzwrX1pwn13VUE05q4WmzfaLg==","signatures":[{"sig":"MEUCICMud8fNci3dq45LJEfJhjahgj2b5ehybqX3tWGqcrKdAiEAu49WvK/BnH3mB/HrUxuCBzeSX7hS3jnys1DS3Fn5F4E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/libmime@5.3.5","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":153676},"main":"lib/libmime.js","gitHead":"3075051660e703afad1a8196fb2782c3d4f287df","scripts":{"test":"grunt","update":"rm -rf node_modules package-lock.json && ncu -u && npm install"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git+https://github.com/nodemailer/libmime.git","type":"git"},"_npmVersion":"10.5.0","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"20.12.1","dependencies":{"libqp":"2.1.0","libbase64":"1.3.0","iconv-lite":"0.6.3","encoding-japanese":"2.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.4.1","grunt":"1.6.1","mocha":"10.4.0","grunt-cli":"1.4.3","grunt-eslint":"24.3.0","grunt-mocha-test":"0.13.3","eslint-config-prettier":"9.1.0","eslint-config-nodemailer":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/libmime_5.3.5_1712924648054_0.15568629755256702","host":"s3://npm-registry-packages"}},"5.3.6":{"name":"libmime","version":"5.3.6","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@5.3.6","maintainers":[{"name":"anonymous","email":"andris@kreata.ee"}],"homepage":"https://github.com/nodemailer/libmime","bugs":{"url":"https://github.com/nodemailer/libmime/issues"},"dist":{"shasum":"e6dfc655b6b4614bad90e8e65817957903b56580","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-5.3.6.tgz","fileCount":16,"integrity":"sha512-j9mBC7eiqi6fgBPAGvKCXJKJSIASanYF4EeA4iBzSG0HxQxmXnR3KbyWqTn4CwsKSebqCv2f5XZfAO6sKzgvwA==","signatures":[{"sig":"MEQCIFeXppcHUrP69W7T5V6U+EAKAmKafdLoCcnAamLNgFNqAiARmiBJ1mVbJJXRMm6BgPtZegvlUwxJeUgMHQtv21S31Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/libmime@5.3.6","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":153942},"main":"lib/libmime.js","gitHead":"15586246adb13027ef636deacaa13cc9a7edde5e","scripts":{"test":"grunt","update":"rm -rf node_modules package-lock.json && ncu -u && npm install"},"_npmUser":{"name":"anonymous","email":"andris@kreata.ee"},"repository":{"url":"git+https://github.com/nodemailer/libmime.git","type":"git"},"_npmVersion":"10.8.2","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"20.18.1","dependencies":{"libqp":"2.1.1","libbase64":"1.3.0","iconv-lite":"0.6.3","encoding-japanese":"2.2.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.4.1","grunt":"1.6.1","mocha":"10.8.2","grunt-cli":"1.5.0","grunt-eslint":"24.3.0","grunt-mocha-test":"0.13.3","eslint-config-prettier":"9.1.0","eslint-config-nodemailer":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/libmime_5.3.6_1732871847485_0.46320955206206094","host":"s3://npm-registry-packages"}},"5.3.7":{"name":"libmime","version":"5.3.7","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"license":"MIT","_id":"libmime@5.3.7","maintainers":[{"name":"anonymous","email":"andris@kreata.ee"}],"homepage":"https://github.com/nodemailer/libmime","bugs":{"url":"https://github.com/nodemailer/libmime/issues"},"dist":{"shasum":"3835b6443d982d5cd1ac32ee241adbbc11b34406","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-5.3.7.tgz","fileCount":9,"integrity":"sha512-FlDb3Wtha8P01kTL3P9M+ZDNDWPKPmKHWaU/cG/lg5pfuAwdflVpZE+wm9m7pKmC5ww6s+zTxBKS1p6yl3KpSw==","signatures":[{"sig":"MEQCIEuzQF4sNQFAdXTDeXe2/ivP6jhsmggyyxQY/R/0DylXAiBZpnHZcEx78ZNe96GlPt96fN81/9X9axuuV8gIZYWlrw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/libmime@5.3.7","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":152216},"main":"lib/libmime.js","gitHead":"212dad0106064f084359d212e9b615d45842384c","scripts":{"test":"grunt","update":"rm -rf node_modules package-lock.json && ncu -u && npm install"},"_npmUser":{"name":"anonymous","actor":{"name":"andris","type":"user","email":"andris@kreata.ee"},"email":"andris@kreata.ee"},"repository":{"url":"git+https://github.com/nodemailer/libmime.git","type":"git"},"_npmVersion":"10.8.2","description":"Encode and decode quoted printable and base64 strings","directories":{},"_nodeVersion":"20.19.2","dependencies":{"libqp":"2.1.1","libbase64":"1.3.0","iconv-lite":"0.6.3","encoding-japanese":"2.2.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.4.1","grunt":"1.6.1","mocha":"11.7.1","grunt-cli":"1.5.0","grunt-eslint":"24.3.0","grunt-mocha-test":"0.13.3","eslint-config-prettier":"10.1.5","eslint-config-nodemailer":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/libmime_5.3.7_1750962941676_0.7761785019355345","host":"s3://npm-registry-packages-npm-production"}},"5.3.8":{"name":"libmime","description":"Encode and decode quoted printable and base64 strings","version":"5.3.8","main":"lib/libmime.js","homepage":"https://github.com/nodemailer/libmime","repository":{"type":"git","url":"git+https://github.com/nodemailer/libmime.git"},"license":"MIT","keywords":["MIME","Base64","Quoted-Printable"],"author":{"name":"Andris Reinman","email":"andris@kreata.ee"},"scripts":{"test":"grunt","update":"rm -rf node_modules package-lock.json && ncu -u && npm install"},"dependencies":{"encoding-japanese":"2.2.0","iconv-lite":"0.7.2","libbase64":"1.3.0","libqp":"2.1.1"},"devDependencies":{"chai":"4.4.1","eslint-config-nodemailer":"1.2.0","eslint-config-prettier":"10.1.8","grunt":"1.6.1","grunt-cli":"1.5.0","grunt-eslint":"24.3.0","grunt-mocha-test":"0.13.3","mocha":"11.7.5"},"gitHead":"aee7f907df6f74089c83adac323601702e4369a7","_id":"libmime@5.3.8","bugs":{"url":"https://github.com/nodemailer/libmime/issues"},"_nodeVersion":"24.14.1","_npmVersion":"11.11.0","dist":{"integrity":"sha512-ZrCY+Q66mPvasAfjsQ/IgahzoBvfE1VdtGRpo1hwRB1oK3wJKxhKA3GOcd2a6j7AH5eMFccxK9fBoCpRZTf8ng==","shasum":"2d483119d5a9aa34628f350162a150663b100a53","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/libmime/-/libmime-5.3.8.tgz","fileCount":9,"unpackedSize":153163,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/libmime@5.3.8","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIG6x/LHp2zepYu35tQPzuKfRHXklhRMmzvCBjlV6SWAqAiEAuCet5vVaFBx/+FBSPfEyC9Qh5IL5U4uPsraZ831GvVs="}]},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:bad276b6-de60-4b1c-a6cb-7c5ffab39e08"}},"directories":{},"maintainers":[{"name":"anonymous","email":"andris@kreata.ee"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/libmime_5.3.8_1775637793971_0.2900275753050652"},"_hasShrinkwrap":false}},"name":"libmime","time":{"created":"2014-06-13T09:55:43.957Z","modified":"2026-04-08T08:43:14.387Z","0.1.0":"2014-06-13T09:55:43.957Z","0.1.1":"2014-06-18T15:31:06.783Z","0.1.2":"2014-07-08T21:18:37.909Z","0.1.3":"2014-08-21T13:29:17.634Z","0.1.4":"2014-09-08T06:10:37.727Z","0.1.5":"2014-09-12T09:55:28.226Z","0.1.6":"2014-10-25T11:39:47.134Z","0.1.7":"2015-01-19T07:42:42.513Z","1.0.0":"2015-04-15T08:21:06.358Z","1.1.0":"2015-09-24T12:18:06.146Z","1.2.0":"2015-10-05T14:55:17.965Z","2.0.0":"2016-01-04T14:02:57.303Z","2.0.1":"2016-02-10T15:40:03.459Z","2.0.2":"2016-02-10T18:05:53.636Z","2.0.3":"2016-02-29T20:48:26.035Z","2.1.0":"2016-08-24T07:56:22.335Z","2.1.1":"2016-11-15T14:38:31.561Z","2.1.2":"2016-11-21T07:16:00.070Z","2.1.3":"2016-12-08T08:37:54.472Z","3.0.0":"2016-12-08T09:43:33.151Z","3.1.0":"2017-01-08T14:51:35.007Z","4.0.0":"2018-06-11T09:00:11.326Z","4.0.1":"2018-07-24T10:47:16.974Z","4.1.0":"2019-05-01T13:55:26.632Z","4.1.1":"2019-05-06T12:44:06.290Z","4.1.2":"2019-05-16T13:37:10.060Z","4.1.3":"2019-05-16T13:40:59.493Z","4.1.4":"2019-10-28T08:13:18.733Z","4.2.0":"2019-10-28T18:22:39.120Z","4.2.1":"2019-10-28T18:37:02.216Z","5.0.0":"2020-07-22T12:39:14.890Z","5.1.0":"2022-04-28T18:03:55.925Z","5.2.0":"2022-12-08T07:54:35.869Z","5.2.1":"2023-01-27T09:43:47.163Z","5.3.4":"2024-02-23T12:04:23.208Z","5.3.5":"2024-04-12T12:24:08.195Z","5.3.6":"2024-11-29T09:17:27.671Z","5.3.7":"2025-06-26T18:35:41.885Z","5.3.8":"2026-04-08T08:43:14.101Z"},"readmeFilename":"README.md","homepage":"https://github.com/nodemailer/libmime"}