{"maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"keywords":["encoding","charset"],"dist-tags":{"latest":"3.1.4"},"author":{"name":"António Afonso"},"description":"Character encoding auto-detection in JavaScript (port of python's chardet)","readme":"[![NPM](https://nodei.co/npm/jschardet.png?downloads=true&downloadRank=true)](https://nodei.co/npm/jschardet/)\n\nJsChardet\n=========\n\nPort of python's chardet (https://github.com/chardet/chardet).\n\nLicense\n-------\n\nLGPL\n\nHow To Use It\n-------------\n\n### Node\n```\nnpm install jschardet\n```\n\n    var jschardet = require(\"jschardet\")\n\n    // \"àíàçã\" in UTF-8\n    jschardet.detect(\"\\xc3\\xa0\\xc3\\xad\\xc3\\xa0\\xc3\\xa7\\xc3\\xa3\")\n    // { encoding: \"UTF-8\", confidence: 0.9690625 }\n\n    // \"次常用國字標準字體表\" in Big5\n    jschardet.detect(\"\\xa6\\xb8\\xb1\\x60\\xa5\\xce\\xb0\\xea\\xa6\\x72\\xbc\\xd0\\xb7\\xc7\\xa6\\x72\\xc5\\xe9\\xaa\\xed\")\n    // { encoding: \"Big5\", confidence: 0.99 }\n\n    // Martin Kühl\n    // jschardet.detectAll(\"\\x3c\\x73\\x74\\x72\\x69\\x6e\\x67\\x3e\\x4d\\x61\\x72\\x74\\x69\\x6e\\x20\\x4b\\xfc\\x68\\x6c\\x3c\\x2f\\x73\\x74\\x72\\x69\\x6e\\x67\\x3e\")\n    // [\n    //   {encoding: \"windows-1252\", confidence: 0.95},\n    //   {encoding: \"ISO-8859-2\", confidence: 0.8796300205763055},\n    //   {encoding: \"SHIFT_JIS\", confidence: 0.01}\n    // ]\n\n### Browser\nCopy and include [jschardet.min.js](https://github.com/aadsm/jschardet/tree/master/dist/jschardet.min.js) in your web page.\n\nThis library is also available in [cdnjs](https://cdnjs.com) at [https://cdnjs.cloudflare.com/ajax/libs/jschardet/1.4.1/jschardet.min.js](https://cdnjs.cloudflare.com/ajax/libs/jschardet/1.4.1/jschardet.min.js)\n\nOptions\n-------\n\n```javascript\n// See all information related to the confidence levels of each encoding.\n// This is useful to see why you're not getting the expected encoding.\njschardet.enableDebug();\n\n// Default minimum accepted confidence level is 0.20 but sometimes this is not\n// enough, specially when dealing with files mostly with numbers.\n// To change this to 0 to always get something or any other value that can\n// work for you.\njschardet.detect(str, { minimumThreshold: 0 });\n\n// Lock down which encodings to detect, can be useful in situations jschardet\n// is giving a higher probability to encodings that you never use.\njschardet.detect(str, { detectEncodings: [\"UTF-8\", \"windows-1252\"] });\n```\n\nSupported Charsets\n------------------\n\n* Big5, GB2312/GB18030, EUC-TW, HZ-GB-2312, and ISO-2022-CN (Traditional and Simplified Chinese)\n* EUC-JP, SHIFT_JIS, and ISO-2022-JP (Japanese)\n* EUC-KR and ISO-2022-KR (Korean)\n* KOI8-R, MacCyrillic, IBM855, IBM866, ISO-8859-5, and windows-1251 (Russian)\n* ISO-8859-2 and windows-1250 (Hungarian)\n* ISO-8859-5 and windows-1251 (Bulgarian)\n* windows-1252\n* ISO-8859-7 and windows-1253 (Greek)\n* ISO-8859-8 and windows-1255 (Visual and Logical Hebrew)\n* TIS-620 (Thai)\n* UTF-32 BE, LE, 3412-ordered, or 2143-ordered (with a BOM)\n* UTF-16 BE or LE (with a BOM)\n* UTF-8 (with or without a BOM)\n* ASCII\n\nTechnical Information\n---------------------\n\nI haven't been able to create tests to correctly detect:\n\n* ISO-2022-CN\n* windows-1250 in Hungarian\n* windows-1251 in Bulgarian\n* windows-1253 in Greek\n* EUC-CN\n\nDevelopment\n-----------\nUse `npm run dist` to update the distribution files. They're available at https://github.com/aadsm/jschardet/tree/master/dist.\n\nAuthors\n-------\n\nPorted from python to JavaScript by António Afonso (https://github.com/aadsm/jschardet)\n\nTransformed into an npm package by Markus Ast (https://github.com/brainafk)\n","repository":{"type":"git","url":"git+https://github.com/aadsm/jschardet.git"},"users":{"dm7":true,"duxing":true,"h0ward":true,"shaomq":true,"cedware":true,"fantasy":true,"flyslow":true,"devonwen":true,"faraoman":true,"shieldax":true,"zuojiang":true,"chrisyipw":true,"jerkovicl":true,"joan12358":true,"magemagic":true,"bluelovers":true},"bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"license":"LGPL-2.1+","versions":{"0.0.1":{"name":"jschardet","version":"0.0.1","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"_id":"jschardet@0.0.1","maintainers":[{"name":"anonymous","email":"m@rkusa.st"}],"dist":{"shasum":"103b76637eefb27ce0e9bc1ec666c2ed236286ce","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-0.0.1.tgz","integrity":"sha512-wznaeW9X4E78ADqYZEwHDa6y0+1NU8HGggf4e2mfIslrzhyd2ACXiYXSbBq+5LkuGMPBx4kl+hUrdOUU6UnymA==","signatures":[{"sig":"MEQCICU+TvNJ5+uXhC/JsAKINlD0LFId1OfxcygaoHnVjz4cAiAj+VCoZ+YVH+o45sZl8yfI+Veea0cjuCC6m1+CkjRb+w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/init","engines":{"node":"*"},"_npmUser":{"name":"anonymous","email":"m@rkusa.st"},"repository":{"url":"git://github.com/brainafk/jschardet.git","type":"git"},"_npmVersion":"1.1.2","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"v0.6.11","dependencies":{},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true,"optionalDependencies":{}},"0.0.2":{"name":"jschardet","version":"0.0.2","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"_id":"jschardet@0.0.2","maintainers":[{"name":"anonymous","email":"m@rkusa.st"}],"dist":{"shasum":"60e3574d296a6edcf5ab3f8e0b53c1f63ebf3018","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-0.0.2.tgz","integrity":"sha512-vdYeShkwN6IYhfc5EmYBu1N25gZvV1hb37HrWlcGOHYeQUKRPE4iN+kyN014G3JFMkAsFtlU+f9iEMD7Pnw9RQ==","signatures":[{"sig":"MEUCIQDPbBG+2uqwUlh6zZ5GQaMQ4CukPE5Ooj2xcYhWW2oEuwIgYEi7NtpG+kRYVq7gdUyTVGkxEgv3ChNfcgRywSunqc0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/init","engines":{"node":"*"},"_npmUser":{"name":"anonymous","email":"m@rkusa.st"},"repository":{"url":"git://github.com/brainafk/node-jschardet.git","type":"git"},"_npmVersion":"1.1.2","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"v0.6.11","dependencies":{},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true,"optionalDependencies":{}},"1.0.0":{"name":"jschardet","version":"1.0.0","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"_id":"jschardet@1.0.0","maintainers":[{"name":"anonymous","email":"m@rkusa.st"}],"dist":{"shasum":"c8672db74962bd9e58d82d65166edc3d90a72fcf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-1.0.0.tgz","integrity":"sha512-3nWd0KqQ4o+GRKHJ5ePUZrURbjq0wM/6w38nlWwakcVcxeVHIWHs3mDtziobhB6BeWe0ZKRrgTXmfiM0BPoaeA==","signatures":[{"sig":"MEYCIQDke3Wclfd+Ml17nBjx4Vs0zcFpzhxoIZwE4RwC31gFHgIhAJvlPRZ7ABfiEeF7p4ZsNWG6Z7gmj7kP4t0pBUslaJuG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/init","engines":{"node":"*"},"_npmUser":{"name":"anonymous","email":"m@rkusa.st"},"repository":{"url":"git://github.com/brainafk/node-jschardet.git","type":"git"},"_npmVersion":"1.1.9","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"v0.6.13","dependencies":{},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true,"optionalDependencies":{}},"1.0.1":{"name":"jschardet","version":"1.0.1","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"_id":"jschardet@1.0.1","maintainers":[{"name":"anonymous","email":"m@rkusa.st"}],"dist":{"shasum":"264eca015b2600d5e1cd488ac0cf035e4392e18e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-1.0.1.tgz","integrity":"sha512-dnBlhGWE74pTohiVaN3HoUsrikPqpapcxuPMxXRKFFwHj6qhSmT4VA0AJ0cy3ZLafRE3ke+NUDjCjDqKBVYdAQ==","signatures":[{"sig":"MEUCIHgMxn5iPSBbdZjDn9rsnioeQaysM1Jgf4bTq20ZD6moAiEA5DMvoCeSJ9ALk3FQ3fxZIBM8GfHLmWsdplBbk9XtQu8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/init","engines":{"node":"*"},"_npmUser":{"name":"anonymous","email":"m@rkusa.st"},"repository":{"url":"git://github.com/brainafk/node-jschardet.git","type":"git"},"_npmVersion":"1.1.12","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"v0.6.13","dependencies":{},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true,"optionalDependencies":{}},"1.0.2":{"name":"jschardet","version":"1.0.2","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"_id":"jschardet@1.0.2","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"dist":{"shasum":"ed9fad02f735b60dd5f34457a43e3f1835302efa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-1.0.2.tgz","integrity":"sha512-1JPgfHYCoOHW5ONh96KX5QiKQjTJ1gn+4SqzV7q9H+Mmxr8wr30ep5fGJOrqHFEgNycqLwbRkJI59fLIceUbeg==","signatures":[{"sig":"MEUCIQCVUFB9KGxmts6cpLvN6OTJ+lFmehNMbJdqqSPLnSn6eQIgPVVpKwHjKlVVk/6SAisKTAAbnPczZYwbG/h2/h0wESc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/init","engines":{"node":"*"},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"git://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"1.1.0-alpha-6","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"v0.6.5","dependencies":{},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true},"1.1.0":{"name":"jschardet","version":"1.1.0","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"_id":"jschardet@1.1.0","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"c5b135ad430144c5cb73cdbc0dae43cac3adfade","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-1.1.0.tgz","integrity":"sha512-oZJSfmuE5k+QRqe+BIydVYUvvA/qL7+9YfF1EEMmf+PGYo/xejlPKG9IATZ/78WsTpE89L6xnXJs07kAL57SlQ==","signatures":[{"sig":"MEYCIQDKxcPD/aUbs/lis/21eIBQqRDGAE7lT9i45hn4XKyo9AIhAIQKv9OrwqsIeYWI5f2L1dA09ynAMmu0p4pr8VCh6dZO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/init","_from":".","engines":{"node":"*"},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"1.3.2","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"dependencies":{}},"1.1.1":{"name":"jschardet","version":"1.1.1","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"_id":"jschardet@1.1.1","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"343200b935c1f666a1597c74e1d78fb27ccac83e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-1.1.1.tgz","integrity":"sha512-IGGFqczrR47Xg271XSs4hyGIgrzlZ3YSjOcFY1RHYLmkmdalV9bBVGOMsC9feUcMzLR5EWlLzHh8B2pYt0H7LQ==","signatures":[{"sig":"MEUCIQDd1I5bk9SzUmRRESPEV6R3jTSdAy/hDUUqfPqobjdLJwIgBC4uzeA7fNt+i2fiMDbJbWLbNZQ6saZAD/mz++qE12w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/init","_from":".","_shasum":"343200b935c1f666a1597c74e1d78fb27ccac83e","engines":{"node":"*"},"scripts":{},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"2.7.1","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"0.12.0","dependencies":{}},"1.2.0":{"name":"jschardet","version":"1.2.0","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@1.2.0","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"1fcec592e6b4c64b86d4cbd2892fa77472b27026","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-1.2.0.tgz","integrity":"sha512-eeGkl6tK8XVmWluq8hbW9zXUJ7om4ig32eTUv+S9HBwM7UbPnaXV2s1SzQTHKxWXrtl3eyyGU6Ri+KUtmax17w==","signatures":[{"sig":"MEUCIQCURWRqU1p/nq/3HOxLkBOD6YFeXeNwVr+1dtkTEk7sCgIgBRWy9zXgrlHK0powFCt3vjPIlpGkzu+yW55JIYc0G2k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/init","_from":".","_shasum":"1fcec592e6b4c64b86d4cbd2892fa77472b27026","engines":{"node":"*"},"scripts":{},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"2.7.1","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"0.12.0","dependencies":{}},"1.3.0":{"name":"jschardet","version":"1.3.0","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@1.3.0","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"740c729da9362f8e5c7e6dcfd1cc6af132ef028d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-1.3.0.tgz","integrity":"sha512-RrCorhU9Rh3FhQ1UMmW7O7WwsF53avPehGjrHbrSbTUymbCvTJ/hlXXQDtFmG7/yMANWVLhHaxhv8OHs/XYr8g==","signatures":[{"sig":"MEQCH21Y7GkFABiK8qYWJmfFGWacqEOudw+Kl6/d6Mf23JACIQDsM7wsuP2KVxXkR1oYl7gb+OCcFLac31d8Rhx/ng8VNQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/init","_from":".","_shasum":"740c729da9362f8e5c7e6dcfd1cc6af132ef028d","engines":{"node":"*"},"scripts":{},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"2.7.1","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"0.12.0","dependencies":{}},"1.4.0":{"name":"jschardet","version":"1.4.0","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@1.4.0","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet#readme","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"c24337e1f38ba3736c1b0234df6aa72d44010f75","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-1.4.0.tgz","integrity":"sha512-65Dehx0CSIOd0vASUaLI+lhzTqVb0uDMRgVYX1pLQeNxIOCUynWOmlHFs8REwx9ylTrDNf7h+YAuRi7BIeWQxw==","signatures":[{"sig":"MEUCIQC+jMXNIHhXwsjcEXgkDeDcEbQ/bW1AEhTZaDlo7NvkGgIgVHk7NeptP8ni3+iCKlq0PdF7agS+uF1ZUi4iZwcCTB8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/init","_from":".","_shasum":"c24337e1f38ba3736c1b0234df6aa72d44010f75","engines":{"node":"*"},"scripts":{},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"git+https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"3.3.9","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"4.1.2","dependencies":{}},"1.4.1":{"name":"jschardet","version":"1.4.1","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@1.4.1","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet#readme","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"5e0f8966ddbe897f6d287e2196bfe0cf3a0090ec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-1.4.1.tgz","integrity":"sha512-VY1R9qIkqzb9si89CKU35n1LutiHmCxcDo+u8dEA+vl9VykJuB3Kf2Cu24AT03utlsGEoOl8c3c0qpPh8mOY8Q==","signatures":[{"sig":"MEUCIQCuQJf19iefW0dYTUlSfXiWZmcMX9YRhyiX2AGAjAzidQIgGDTZ5XD0oWEJerO7ygn00aPzP64XMOipoLsI4sNJ+4w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/init","_from":".","_shasum":"5e0f8966ddbe897f6d287e2196bfe0cf3a0090ec","engines":{"node":"*"},"scripts":{},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"git+https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"3.3.9","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"4.1.2","dependencies":{}},"1.4.2":{"name":"jschardet","version":"1.4.2","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@1.4.2","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet#readme","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"2aa107f142af4121d145659d44f50830961e699a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-1.4.2.tgz","integrity":"sha512-p/H3E2WpkXotz09qCW3W2Y2vE0t6Ns3cWkCjyaPZkoxSCdzD1u9SjGW28mAzhsf3O7qsQRi0j3BePkFyaZpIFA==","signatures":[{"sig":"MEYCIQCCcU9lVOnCKXyM8HHfJu9hMLfretamObZSkjtAUIbYTwIhAMCUgHXT6nMU19XB1Ue/v/PAbVrJzBWqcBc2oM3JFTzV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/init","_from":".","_shasum":"2aa107f142af4121d145659d44f50830961e699a","engines":{"node":">=0.1.90"},"scripts":{"dist":"npm run dist-dev && java -jar node_modules/google-closure-compiler/compiler.jar --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --js dist/jschardet.js > dist/jschardet.min.js","dist-dev":"mkdir -p dist && browserify index.js -s jschardet --detect-globals false -o dist/jschardet.js"},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"git+https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"2.15.1","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"4.4.3","dependencies":{},"devDependencies":{"browserify":"~12.0.1","google-closure-compiler":"20151015.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jschardet-1.4.2.tgz_1489260230200_0.36544930562376976","host":"packages-18-east.internal.npmjs.com"}},"1.5.0":{"name":"jschardet","version":"1.5.0","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@1.5.0","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet#readme","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"a61f310306a5a71188e1b1acd08add3cfbb08b1e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-1.5.0.tgz","integrity":"sha512-+Q8JsoEQbrdE+a/gg1F9XO92gcKXgpE5UACqr0sIubjDmBEkd+OOWPGzQeMrWSLxd73r4dHxBeRW7edHu5LmJQ==","signatures":[{"sig":"MEUCIQDc87c1D31GuTz3DPVvybD/LwvfG/XT24Wi8LN9WLx+DgIgeH5MfrfJlbSy1NyCRc94DpH0Z0P1MdK/OENLemSyml8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/init","engines":{"node":">=0.1.90"},"scripts":{"dist":"npm run dist-dev && java -jar node_modules/google-closure-compiler/compiler.jar --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --js dist/jschardet.js > dist/jschardet.min.js","dist-dev":"mkdir -p dist && browserify index.js -s jschardet --detect-globals false -o dist/jschardet.js"},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"git+https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"5.0.3","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"8.1.3","dependencies":{},"devDependencies":{"browserify":"~12.0.1","google-closure-compiler":"20151015.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jschardet-1.5.0.tgz_1500169957359_0.5766156299505383","host":"s3://npm-registry-packages"}},"1.5.1":{"name":"jschardet","version":"1.5.1","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@1.5.1","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet#readme","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"c519f629f86b3a5bedba58a88d311309eec097f9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-1.5.1.tgz","integrity":"sha512-vE2hT1D0HLZCLLclfBSfkfTTedhVj0fubHpJBHKwwUWX0nSbhPAfk+SG9rTX95BYNmau8rGFfCeaT6T5OW1C2A==","signatures":[{"sig":"MEQCIBQM/x5NsKvOj0aRFYNFcp+UtXVDVq4XI2CBC2Q1NPrrAiA6YUKgAaQEd5gmA18z3tFwdhzmxM2kOYdpP+A8y8FbGQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/init","engines":{"node":">=0.1.90"},"scripts":{"dist":"npm run dist-dev && java -jar node_modules/google-closure-compiler/compiler.jar --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --js dist/jschardet.js > dist/jschardet.min.js","dist-dev":"mkdir -p dist && browserify index.js -s jschardet --detect-globals false -o dist/jschardet.js"},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"git+https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"5.0.3","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"8.1.3","dependencies":{},"devDependencies":{"browserify":"~12.0.1","google-closure-compiler":"20151015.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jschardet-1.5.1.tgz_1502064809655_0.05027155065909028","host":"s3://npm-registry-packages"}},"1.6.0":{"name":"jschardet","version":"1.6.0","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@1.6.0","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet#readme","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"c7d1a71edcff2839db2f9ec30fc5d5ebd3c1a678","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-1.6.0.tgz","integrity":"sha512-xYuhvQ7I9PDJIGBWev9xm0+SMSed3ZDBAmvVjbFR1ZRLAF+vlXcQu6cRI9uAlj81rzikElRVteehwV7DuX2ZmQ==","signatures":[{"sig":"MEYCIQDk9FEYywgo452QtG7qkTj2u+3IXKB7+sCZ72L2ntNh0wIhAIvne5kpr6ybldUznWOSc6uusGuGNLqOP7AENz2Aask2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/init","engines":{"node":">=0.1.90"},"scripts":{"dist":"npm run dist-dev && java -jar node_modules/google-closure-compiler/compiler.jar --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --js dist/jschardet.js > dist/jschardet.min.js","dist-dev":"mkdir -p dist && browserify index.js -s jschardet --detect-globals false -o dist/jschardet.js"},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"git+https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"5.3.0","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"8.1.3","dependencies":{},"devDependencies":{"browserify":"~12.0.1","google-closure-compiler":"20151015.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jschardet-1.6.0.tgz_1509082940448_0.4009540902916342","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"jschardet","version":"2.1.0","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@2.1.0","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet#readme","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"0491e1e00ec091490d4ca3dc8e30926b38de596b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-2.1.0.tgz","fileCount":55,"integrity":"sha512-Fuk25QlebgHnvCQvAm258+y2D8yVs1VFIFwiqXbvxG4n9vo5YZsBPZuMxnc7Gb9ElAeN8QfRDvgkkIhW4DPoPA==","signatures":[{"sig":"MEUCIBQZGhFPMELzbnikVCDB58rADoBPYEzvpDKr2gJ14xJFAiEAvUB780tF6wyAt+phjjejrELfVDC7Yg2nOcOYRxmGIyo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1360156,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcRoEfCRA9TVsSAnZWagAALu4QAIi04z9rKxd2Cj6vu45I\n9Q9924Z2AKCAxaHeK+JTb0TjiYFzPPG1KlwWJLcShdM9JIYEXeD/c8+JNizo\nxN9f+r+Ol1C775/xZ2FQrT/77CKj8mtEEE7I1XtUm/mrcsrGCU42lcMOG1Tz\nvSxwuHE57RdsyA0+4TbUddAsVAdvJKyb8YQ9pJkuhlybbjlKL/uCHb/Fh0/M\ne2pM/Blu8ypnUh58XJ+vFxuneAnBaWFRaM7i3fJn6NDAk8pOTaWKNJ53FjB2\nm2JmpBBfM4F9sm5nRlnJ4U9Oq6iTwpKiSyw1YPmUwRG951ZjxPcxz+1zu7/g\nEN/Lq2wRdyNhocIQbG1imGtkHwYOGD4nzRxfPUZ7Kwy0wSVC36cKrDbtRn92\ni0xX5UWCikBSJpAk5inPGQ24xFpuSxbFR55ufBHRoPqH0ZrfLMK4f/CEepLr\nNm8JJT1LeHSAThI4CE2MTR/Kjn5H9EUPMK4JKAECFEFoFULtEWv89bsunGV6\nq0v2TqSLoVYgt9nQIRzFZXXpg+Ts7RfTejbC+ZdIdIfC4fXdfFgLnSw+0MyI\neV8vUFeY1JIQb9dyRrylX4lFYkWTFTUjwtDmwzCwLFQPxuz1HVlVGL3lMSxy\nFp+lXtdvRhu6fGK2ebQMx8KejCw11MFSy2UBEWc1SJMZtRbS5LaqKDuCA+Dz\nejTB\r\n=rMpS\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=0.1.90"},"scripts":{"dist":"npm run dist-dev && java -jar node_modules/google-closure-compiler/compiler.jar --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --js dist/jschardet.js > dist/jschardet.min.js","dist-dev":"mkdir -p dist && browserify index.js -s jschardet --detect-globals false -o dist/jschardet.js"},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"git+https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"6.4.1","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"10.15.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"browserify":"~12.0.1","google-closure-compiler":"20151015.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jschardet_2.1.0_1548124446994_0.41832439528373233","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"jschardet","version":"2.1.1","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@2.1.1","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet#readme","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"af6f8fd0b3b0f5d46a8fd9614a4fce490575c184","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-2.1.1.tgz","fileCount":56,"integrity":"sha512-pA5qG9Zwm8CBpGlK/lo2GE9jPxwqRgMV7Lzc/1iaPccw6v4Rhj8Zg2BTyrdmHmxlJojnbLupLeRnaPLsq03x6Q==","signatures":[{"sig":"MEQCIAdINmyoMBXVsFedfPuBAm70N4GvE3APaHIt34/u+tRgAiA169Ffq2v9gGGtHxiX8OL6XQpRVP74XOVc0vhIumc5iw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1360453,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdyFYUCRA9TVsSAnZWagAA+X4P/iYhsce1VLDwRd+Vu1ME\nv9D++XfgqUJW1Y3mVUJqcTGDI6Gvi1xFDh9bh6HrRXQNrUtREl/fcc2FQ0GO\nI1KRp8PkumJamNC0CwK1xsZsydH/zElhvSHgnNbicYhg7qBADgv+m++MgaPp\ncZBu1an+TllxpiMKebBxatloTdNLCbYH7jSSjjbywZOYMnHvOMUn0GsCy4DJ\nbQGoMHVL+YvmzIgqjfKTqkOlTl+skMO9Cf0yvhLyB09L8NKRZDTd7M6FEs3K\nqbyMjYgp4Kp6y8i7emecOUOj4Sb3OtJNCGHUqU3MUJ8Rrh4Wx93a0SYnzOpQ\ntOSRHZwSvk/A36bh3ETkKK5dNKNajQ4PRtgZNYeu1J+QzgwnZdzKOkeYCh+8\nN2821DI5Ng6XOnc5rkeh39QgMreAsFUcShV0WdtCxIn6X70HaEXS5+MbIemv\nMHdS1G5sFa/xw/GzkQMYEOOJoBZydhroDUbFIwqvLBUVqNP8q5kPoMcFegOk\nppIP2AIJAOQ18S4UtdM2GDsSs7tr2HyOIUDKK4A1wgF95+/6nsLYQhwlTmn3\n4AyHGQddeP+bL6fX0dC6fBW1TdfTZEgwHeZbwqG01BlUcDzLwHQAOm9ly1xi\ncn6OfFIsIBCzwx3E3RVdPZyNkXCNwt7RLuR1X0CMth9PWv6rhpufojdTIn8z\nbu48\r\n=sFA3\r\n-----END PGP SIGNATURE-----\r\n"},"types":"index.d.ts","engines":{"node":">=0.1.90"},"scripts":{"dist":"npm run dist-dev && java -jar node_modules/google-closure-compiler/compiler.jar --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --js dist/jschardet.js > dist/jschardet.min.js","dist-dev":"mkdir -p dist && browserify index.js -s jschardet --detect-globals false -o dist/jschardet.js"},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"git+https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"6.4.1","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"10.15.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"browserify":"~12.0.1","google-closure-compiler":"20151015.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jschardet_2.1.1_1573410324102_0.1512866546316345","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"jschardet","version":"2.2.0","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@2.2.0","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet#readme","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"36138583155fea50e002520dde02af63823459c0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-2.2.0.tgz","fileCount":56,"integrity":"sha512-pSXfhbARbLRCuq5x0nuq4gBf8of2uumHa3kVjtWuE9iQtV1oGVdTkwZCdk6CvMdkuX+j1Jab9bQ1ig+2IEyUyQ==","signatures":[{"sig":"MEUCIQCfVvYeGpu+kohj+137A9WrOrxSd9wF471qfMuHeYpmigIgTRHqVa9WSSpon9qsQFvEknY3JtQFV6HaUdeT1IEdKVI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1361634,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe+VSUCRA9TVsSAnZWagAABsUP/jQfTN2AXK1z/xEyMmJC\nVAc/LwV5HdQBI4I/FLwU0rrdn0OwbXdThDbovradfqAMyDzrVQjNL1vkOIFp\nhGKVM9M7pSKLKvE63nzPItMep9w/mCv9n9keZl8pAeSBLFQKTWp26FdX/7uE\nHhMWqrmxmf/esZ7Oz0AYI87FFRi+KoQT5AKirMZZ48SVF36sqMSejyNYviv6\nKYoprDZFfBHvux56w1po35qIpg6kX73chZ8bUE2yOfiMvIPi+KgkWp9gha7p\nVBKf/ZAOEXr1JGsk9fmF+GmYrnT71+GHjjl8pA1gE9CIXcc9heOP2zL0x9zB\nNar3zQ+GENtAGKzqb98Q/39DP14B+7Zqv9UgLIRNFL9CQEIJ+6xVivXVZWjS\noWsvQRpop2RldMNpf65lEOoiUpw8CaSHNNf9NvRq7XeZCWfpBf5QCUx1s0rd\n0AhjO/gXe4JaCfUoOciLnJ3ZBt6BDakUWafAuwXxhYR2VcerxN9o+ipXR0HN\n94dD9DplFEAUFZe9DnI1qXrIoOu8TgAL/8bP5M0Y9NJVMftY02CIVyY6I4D4\naWsQvDfmkaGkfzHaroxrnC6GqdFzjr1G1YDoX7myZVVNHzv4N1hsq1ThHbob\n7Eth8y+Ce2ZTW3l2Blb0dlqviz+xootS+W7vjTJhkE1t/EN0RjBycgA/oCXM\nzrZH\r\n=t47X\r\n-----END PGP SIGNATURE-----\r\n"},"types":"index.d.ts","engines":{"node":">=0.1.90"},"scripts":{"dist":"npm run dist-dev && java -jar node_modules/google-closure-compiler/compiler.jar --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --js dist/jschardet.js > dist/jschardet.min.js","dist-dev":"mkdir -p dist && browserify index.js -s jschardet --detect-globals false -o dist/jschardet.js"},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"git+https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"6.14.5","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"12.11.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"browserify":"~12.0.1","google-closure-compiler":"20151015.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jschardet_2.2.0_1593398419411_0.6261663299800915","host":"s3://npm-registry-packages"}},"2.2.1":{"name":"jschardet","version":"2.2.1","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@2.2.1","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet#readme","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"03b0264669a90c7a5c436a68c5a7d4e4cb0c9823","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-2.2.1.tgz","fileCount":56,"integrity":"sha512-Ks2JNuUJoc7PGaZ7bVFtSEvOcr0rBq6Q1J5/7+zKWLT+g+4zziL63O0jg7y2jxhzIa1LVsHUbPXrbaWmz9iwDw==","signatures":[{"sig":"MEQCIGOKG5HMFPWya+MeKZYZO8JBagXIbMNavEwG0uUPGAOrAiBgsnyT+70IGf/HVRQeCVBmNburBUtW10WVIosTt7YT6Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1362674,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe+sKBCRA9TVsSAnZWagAAOfMQAJIWQUZ1AF1l+GPTaWh1\nJmVy1z7HOymvxeLz5b+VD/NNhkXIS2KwbaWA/T2VwptTzq3IIJ1MKouLRSm2\n+RlPwNEpVNBmV8gyR7l9g2hUCw+tHAe3SHUcb6mwOCxWIi0ioOPDo01PYarw\naY6VkLLntjTx7MMzn3o5SiHrIAXikAfqDgraJu265BUY9CbmbzzdyLE5XtHI\nctbvbOt5A94EF4kZTg83wF7PKcGouKSqPO3/ahvsoo9wUIyIaiCT7f84LIOC\nP1DUHfA0s876C8Nah6Odhi9RKDuAn+PmEkbCwMr7mZwCUEQtuJTtmZ7+0ukA\n16B21uGe3GJMsFXDgGBKEadaq6wehrea4cRwf3QXUTjdIG5WzM4WMLHakNoP\n1hqVykGPB9nTXgzEpFYb6V/DeovEGljVST0IfhN1P6KX58KqEAaZbo5Uy3jG\nCmsGZBqBsapmZH3LcIu0jD5tI0oHGq0Fp5gIZnk9deWQ29HI7f76LIriBrFP\nm79BoANonQuhDOGY4KQVWsos9qC/0jEvdBY0lFU2YP0z3P7aXMHxt6mC4D7c\nF6150fnSgemWe1BT3jaCHp4NeDya7ykhyjfWPD86ombiVnuYS0xu1EqfGiTR\nJeGewSkz24sjTglzw3OBedYFgpzQdV5/EhOHn3vtervto975GGcNTWXFtBBd\nOTAK\r\n=P00R\r\n-----END PGP SIGNATURE-----\r\n"},"types":"index.d.ts","engines":{"node":">=0.1.90"},"scripts":{"dist":"npm run dist-dev && java -jar node_modules/google-closure-compiler/compiler.jar --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --js dist/jschardet.js > dist/jschardet.min.js","dist-dev":"mkdir -p dist && browserify index.js -s jschardet --detect-globals false -o dist/jschardet.js"},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"git+https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"6.14.5","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"12.11.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"browserify":"~12.0.1","google-closure-compiler":"20151015.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jschardet_2.2.1_1593492097248_0.21788261058699399","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"jschardet","version":"2.3.0","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@2.3.0","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet#readme","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"06e2636e16c8ada36feebbdc08aa34e6a9b3ff75","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-2.3.0.tgz","fileCount":56,"integrity":"sha512-6I6xT7XN/7sBB7q8ObzKbmv5vN+blzLcboDE1BNEsEfmRXJValMxO6OIRT69ylPBRemS3rw6US+CMCar0OBc9g==","signatures":[{"sig":"MEUCIHJvfOZBz081qKgMo3Kl/Vob1vyfCWZ5axIjG1OUkNcsAiEAqYbmiPH1qZZQgWUb9uucG4VrW4Cx2GiYI4D8QjGQYJ8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1364271,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgM1KvCRA9TVsSAnZWagAAHqAP/1n1Xw12/fhAXM+BEg8K\nqppLbsp4GlQAyubljcLJgik91nttN5U1Ek20cc+SQPFPY1H14xarZjWQfVIn\ngUQZlTbLXhJMhcLCqTt6QMscIKDbR3+gmJBbgDgNQIRZP7uh4pk5rZs4kDEG\nDqfwNmBcEjslwRaysxhSJ+n5KGTF4ZRA5NdFS0+XCn4I/QqctFmi1B+/8MnG\nN1eJ8MONHmLn3ogTXiPKidvWwDeM9EStA8wwD2jPKQklo0X+QmirJwhb688I\nNf/dLiLZG+mfFLsSSNZDOLYeUWD+4gMLbq8NWpwETS1K2aNoxEpPgh+cypVk\n1kBXUEbMJz4Sn+rzTBFJGpDZn91Di3nSzEDYzj2ICMtxQcNq4SPbJ3BN3sO4\nplDRTYrFmIf799CuXFh0DfVxnoIdm2tpjoZ6V4MKwISL9QWDiXLQqOqKCHkq\nZRi2u5M/7TeL1HhXl1f3T0encENgw3TH1cPVZ9viOROoKCjxm/qFcwzMgh/T\nyjKme/ETJAidZPKjcJAgECrzwO5bI9U+5FIUTdRQgOxJTV2nMuysoWypRB+m\n3AfkI5rgy332cMzutYJq5dogCMLrjGALbOOPmYbBkRpyuKpLWVycDjd0Za74\n7i+lumr/fJXojkRhdXpODODM1eArG9XGXOM2R21PPqvvSRsH/2wHeaPXZKyG\nUiGy\r\n=aRRp\r\n-----END PGP SIGNATURE-----\r\n"},"types":"index.d.ts","engines":{"node":">=0.1.90"},"scripts":{"dist":"npm run dist-dev && java -jar node_modules/google-closure-compiler/compiler.jar --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --js dist/jschardet.js > dist/jschardet.min.js","dist-dev":"mkdir -p dist && browserify index.js -s jschardet --detect-globals false -o dist/jschardet.js"},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"git+https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"7.5.0","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"15.8.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"browserify":"~12.0.1","google-closure-compiler":"20151015.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jschardet_2.3.0_1613976238774_0.37411557787492034","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"jschardet","version":"3.0.0","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@3.0.0","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet#readme","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"898d2332e45ebabbdb6bf2feece9feea9a99e882","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-3.0.0.tgz","fileCount":52,"integrity":"sha512-lJH6tJ77V8Nzd5QWRkFYCLc13a3vADkh3r/Fi8HupZGWk2OVVDfnZP8V/VgQgZ+lzW0kG2UGb5hFgt3V3ndotQ==","signatures":[{"sig":"MEUCIQDaLjKXbfRX5FaNLFy2x1FzOu4zsPIcvMy82K0GHan5JQIgc1KoQN2ocC/0QQ9NJPrxzOoikeJN0vmvPHzjYp0EpoA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1297989,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgeIFtCRA9TVsSAnZWagAA924P/1vvGDQXABo3ttnRGWym\nYVS7HBHOPqxwLO70NzWOg0ikwjIlwTReURxJPpW3VmY60xUOimcfkOHroUwF\n5z1QW1jcp8OJ5i5wS2lVZmUZo9o9R8xKz7EbbiLuytAqPuczWHcH70/FcCbW\nxnuwVGd2GOV246acatzAaAZdoosI2g5HbKycEIdGXcqJgr0J+HsN7ZY0GgOM\nRYzp+0k9ZfaGGOb9MmG7+do2ZJuHQ+LJyV31G8gsZ6mOS5H9h837SZ1nP3lv\ndqte00ZxXAvjlzzF65ekLJlnbKmeMVxYjviHdTisr2zGxH8tGdJnLOU6iW9A\ncDTheOkAnKZvf3cf1auwuFkoMW++gZ9u/zDQXUHy8eCE6cnExlWOj8Y/Czcg\nwh24ag4qIA5f0UB0xL2QLhtK3CNoLELaT5Uj7gMg8/jLH8eDWLdbRXe4t+BZ\nPixTu2GkjxgN5WCHjmOBJ8aA4GOv1I+VwPjtgMqAqZic8DngdGBmcAT1T4JE\nvupi5vGvXPF9zWGtkZeHV6LezJUkoBCtAryATgTmzqvGhIogBT/7T+2UYNMf\nfsKibHG4qajE7paSrb+4Ro0I85EnP5s4pPX3J2kEIRDmEqL4SJT6yenQ7n60\nFtxWAOqlpg2lKNGiDCayo1gRbG76esIL3SjMIGesvRpf3oK6gu5P6pWx1fYq\nnyaF\r\n=q+x5\r\n-----END PGP SIGNATURE-----\r\n"},"types":"index.d.ts","engines":{"node":">=0.1.90"},"scripts":{"dist":"npm run dist-dev && java -jar node_modules/google-closure-compiler/compiler.jar --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --js dist/jschardet.js > dist/jschardet.min.js","dist-dev":"mkdir -p dist && browserify index.js -s jschardet --detect-globals false -o dist/jschardet.js"},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"git+https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"7.5.0","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"15.8.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"browserify":"~12.0.1","google-closure-compiler":"20151015.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jschardet_3.0.0_1618510189301_0.8322838640078289","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"jschardet","version":"3.1.0","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@3.1.0","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet#readme","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"6e71acdf8e1998ada30f13f25bf9de3a168dadb2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-3.1.0.tgz","fileCount":56,"integrity":"sha512-MND0yjRsoQ/3iFXce7lqV/iBmqH9oWGUTlty36obRBZjhFDWCLKjXgfxY75wYfwlW7EFqw52tyziy/q4WsQmrA==","signatures":[{"sig":"MEUCIQCzSZFOP4Mda3bZPYX2Jdf9rwdWLKNXA8O20TqSbPUM2AIgGOd+E/2XQNkA8sL8JPAaiApAHVpOycHHGWmZdLt09eg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1316392},"types":"index.d.ts","engines":{"node":">=0.1.90"},"gitHead":"ef37fbd67786f38005a20b2a474174731fd4c5c5","scripts":{"dist":"npm run dist-dev && java -jar node_modules/google-closure-compiler/compiler.jar --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --language_in=ECMASCRIPT6_STRICT --language_out=ES5 --js dist/jschardet.js > dist/jschardet.min.js && ./scripts/show-size-changes.sh dist/jschardet.min.js","test":"jest","dist-dev":"mkdir -p dist && browserify index.js -s jschardet --detect-globals false -o dist/jschardet.js && ./scripts/show-size-changes.sh dist/jschardet.js","dist-size-changes":"./scripts/show-size-changes.sh dist/*"},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"git+https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"10.2.4","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"20.11.1","_hasShrinkwrap":false,"devDependencies":{"jest":"^29.7.0","browserify":"~17.0.0","google-closure-compiler":"20151015.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jschardet_3.1.0_1710806851521_0.24940143807843795","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"jschardet","version":"3.1.1","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@3.1.1","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet#readme","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"39a18bd1a1cdc7e85a6f42eef47490ee79b2f0c1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-3.1.1.tgz","fileCount":57,"integrity":"sha512-Jbygqaa20I+0ImPjmMbrsY3QrMkfwfI5G/VNlb6c9nDIyyOw8msfWHzTy04/sawa4rjn0t9WYy3nahWlSjB5zw==","signatures":[{"sig":"MEUCIQCRTT1Jd6cDahSYAO07t54bXo+MCajhjZj7Qahhs7AM0wIgXk+Z/tDmNP3jyXBB4JvMeHYFI3oYe9/Kv6YrMkMlTvM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1317722},"types":"index.d.ts","engines":{"node":">=0.1.90"},"gitHead":"fcf0697b928df271ef1746af4017e7bfa08d08b0","scripts":{"dist":"npm run dist-dev && java -jar node_modules/google-closure-compiler/compiler.jar --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --language_in=ECMASCRIPT6_STRICT --language_out=ES5 --js dist/jschardet.js > dist/jschardet.min.js && ./scripts/show-size-changes.sh dist/jschardet.min.js","test":"jest","dist-dev":"mkdir -p dist && browserify index.js -s jschardet --detect-globals false -o dist/jschardet.js && ./scripts/show-size-changes.sh dist/jschardet.js","dist-size-changes":"./scripts/show-size-changes.sh dist/*"},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"git+https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"10.2.4","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"20.11.1","_hasShrinkwrap":false,"devDependencies":{"jest":"^29.7.0","browserify":"~17.0.0","google-closure-compiler":"20151015.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jschardet_3.1.1_1711217350921_0.28748390898771947","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"jschardet","version":"3.1.2","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@3.1.2","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet#readme","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"9bf4364deba0677fe9e3bd9e29eda57febf2e9db","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-3.1.2.tgz","fileCount":57,"integrity":"sha512-mw3CBZGzW8nUBPYhFU2ztZ/kJ6NClQUQVpyzvFMfznZsoC///ZQ30J2RCUanNsr5yF22LqhgYr/lj807/ZleWA==","signatures":[{"sig":"MEYCIQCSdg7nepnDzHJ6Y7Ri/huySIO3TZAXOjV4PRytqfFFMQIhAL2ahSj9GHiyl5Xl3E+8HxnKDz4pd7Z2wE1x9dj7xyXb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1317924},"types":"index.d.ts","engines":{"node":">=0.1.90"},"gitHead":"f42d2628722df06dfba02f035c7f83e075b7d860","scripts":{"dist":"npm run dist-dev && java -jar node_modules/google-closure-compiler/compiler.jar --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --language_in=ECMASCRIPT6_STRICT --language_out=ES5 --js dist/jschardet.js > dist/jschardet.min.js && ./scripts/show-size-changes.sh dist/jschardet.min.js","test":"jest","dist-dev":"mkdir -p dist && browserify index.js -s jschardet --detect-globals false -o dist/jschardet.js && ./scripts/show-size-changes.sh dist/jschardet.js","dist-size-changes":"./scripts/show-size-changes.sh dist/*"},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"git+https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"10.2.4","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"20.11.1","_hasShrinkwrap":false,"devDependencies":{"jest":"^29.7.0","browserify":"~17.0.0","google-closure-compiler":"20151015.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jschardet_3.1.2_1711339292143_0.9008735900474134","host":"s3://npm-registry-packages"}},"3.1.3":{"name":"jschardet","version":"3.1.3","keywords":["encoding","charset"],"author":{"name":"António Afonso"},"license":"LGPL-2.1+","_id":"jschardet@3.1.3","maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"homepage":"https://github.com/aadsm/jschardet#readme","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"dist":{"shasum":"10c2289fdae91a0aa9de8bba9c59055fd78898d3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-3.1.3.tgz","fileCount":57,"integrity":"sha512-Q1PKVMK/uu+yjdlobgWIYkUOCR1SqUmW9m/eUJNNj4zI2N12i25v8fYpVf+zCakQeaTdBdhnZTFbVIAVZIVVOg==","signatures":[{"sig":"MEQCIF4Pw5NMq7Z3yn6RoUhNJAjR1dYhjLLw/tCnQam2eD/xAiBaHaLrTksq+qHAqFZWNVqqZZ4ExxpLKQF4RXL0DqBcXw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1320285},"types":"index.d.ts","engines":{"node":">=0.1.90"},"gitHead":"37551abe11e23acf27536cdd490f64dc8afb5cd1","scripts":{"dist":"npm run dist-dev && java -jar node_modules/google-closure-compiler/compiler.jar --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --language_in=ECMASCRIPT6_STRICT --language_out=ES5 --js dist/jschardet.js > dist/jschardet.min.js && ./scripts/show-size-changes.sh dist/jschardet.min.js","test":"jest","dist-dev":"mkdir -p dist && browserify index.js -s jschardet --detect-globals false -o dist/jschardet.js && ./scripts/show-size-changes.sh dist/jschardet.js","dist-size-changes":"./scripts/show-size-changes.sh dist/*"},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"repository":{"url":"git+https://github.com/aadsm/jschardet.git","type":"git"},"_npmVersion":"10.7.0","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","directories":{"lib":"./lib","test":"./test"},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"devDependencies":{"jest":"^29.7.0","browserify":"~17.0.0","google-closure-compiler":"20151015.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jschardet_3.1.3_1718675030621_0.8339025423506738","host":"s3://npm-registry-packages"}},"3.1.4":{"name":"jschardet","version":"3.1.4","description":"Character encoding auto-detection in JavaScript (port of python's chardet)","author":{"name":"António Afonso"},"license":"LGPL-2.1+","keywords":["encoding","charset"],"repository":{"type":"git","url":"git+https://github.com/aadsm/jschardet.git"},"types":"index.d.ts","directories":{"lib":"./lib","test":"./test"},"devDependencies":{"browserify":"~17.0.0","google-closure-compiler":"20240317.0.0","jest":"^29.7.0"},"scripts":{"dist-dev":"mkdir -p dist && browserify index.js -s jschardet --detect-globals false -o dist/jschardet.js && ./scripts/show-size-changes.sh dist/jschardet.js","dist":"npm run dist-dev && java -jar node_modules/google-closure-compiler-java/compiler.jar --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --language_in=ECMASCRIPT6_STRICT --language_out=ES5 --js dist/jschardet.js > dist/jschardet.min.js && ./scripts/show-size-changes.sh dist/jschardet.min.js","dist-size-changes":"./scripts/show-size-changes.sh dist/*","test":"jest"},"engines":{"node":">=0.1.90"},"_id":"jschardet@3.1.4","gitHead":"9c59b6e388ddcdf8708a06da2411f88cc5d294c3","bugs":{"url":"https://github.com/aadsm/jschardet/issues"},"homepage":"https://github.com/aadsm/jschardet#readme","_nodeVersion":"20.17.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-/kmVISmrwVwtyYU40iQUOp3SUPk2dhNCMsZBQX0R1/jZ8maaXJ/oZIzUOiyOqcgtLnETFKYChbJ5iDC/eWmFHg==","shasum":"fff6e3c4b7867b361c2acc3870c42ea25d4f675b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jschardet/-/jschardet-3.1.4.tgz","fileCount":57,"unpackedSize":1322610,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCqbxGMb7swkmKDNCQZrK1JCD6sUdDIp2d/Co/ghNP5BAIgPgrrOxN3Ae35r8kj28/taBAVdcbmdt82j1HMWhYk8RM="}]},"_npmUser":{"name":"anonymous","email":"antonio.afonso@gmail.com"},"maintainers":[{"name":"anonymous","email":"antonio.afonso@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jschardet_3.1.4_1727731150467_0.8027381561488853"},"_hasShrinkwrap":false}},"name":"jschardet","time":{"created":"2012-03-01T23:22:55.537Z","modified":"2024-09-30T21:19:10.951Z","0.0.1":"2012-03-01T23:22:57.508Z","0.0.2":"2012-03-01T23:23:31.160Z","1.0.0":"2012-03-21T13:45:06.175Z","1.0.1":"2012-03-31T14:01:24.826Z","1.0.2":"2012-04-01T16:34:52.237Z","1.1.0":"2013-10-12T17:10:26.210Z","1.1.1":"2015-03-16T06:37:10.454Z","1.2.0":"2015-06-22T04:23:26.715Z","1.3.0":"2015-07-13T05:42:31.219Z","1.4.0":"2015-11-03T07:21:30.141Z","1.4.1":"2015-11-08T17:11:28.538Z","1.4.2":"2017-03-11T19:23:52.452Z","1.5.0":"2017-07-16T01:52:37.489Z","1.5.1":"2017-08-07T00:13:30.131Z","1.6.0":"2017-10-27T05:42:22.051Z","2.1.0":"2019-01-22T02:34:07.101Z","2.1.1":"2019-11-10T18:25:24.309Z","2.2.0":"2020-06-29T02:40:19.723Z","2.2.1":"2020-06-30T04:41:37.377Z","2.3.0":"2021-02-22T06:43:59.036Z","3.0.0":"2021-04-15T18:09:49.495Z","3.1.0":"2024-03-19T00:07:31.727Z","3.1.1":"2024-03-23T18:09:11.140Z","3.1.2":"2024-03-25T04:01:32.401Z","3.1.3":"2024-06-18T01:43:50.882Z","3.1.4":"2024-09-30T21:19:10.797Z"},"readmeFilename":"README.md","homepage":"https://github.com/aadsm/jschardet#readme"}