{"maintainers":[{"name":"anonymous","email":"richard.a.harris@gmail.com"}],"keywords":["sourcemap","sourcemaps","base64","vlq"],"dist-tags":{"latest":"2.0.4"},"author":{"name":"Rich Harris"},"description":"Generate, and decode, base64 VLQ mappings for source maps and other uses","readme":"# vlq.js\n\nConvert integers to a Base64-encoded VLQ string, and vice versa. No dependencies, works in node.js or browsers, supports AMD.\n\n\n## Why would you want to do that?\n\nSourcemaps are the most likely use case. Mappings from original source to generated content are encoded as a sequence of VLQ strings.\n\n\n## What is a VLQ string?\n\nA [variable-length quantity](http://en.wikipedia.org/wiki/Variable-length_quantity) is a compact way of encoding large integers in text (i.e. in situations where you can't transmit raw binary data). An integer represented as digits will always take up more space than the equivalent VLQ representation:\n\n| Integer             | VLQ        |\n| :------------------ | :--------- |\n| 0                   | A          |\n| 1                   | C          |\n| -1                  | D          |\n| 123                 | 2H         |\n| 123456789           | qxmvrH     |\n\n\n## Installation\n\n```bash\nnpm install vlq\n```\n\n\n## Usage\n\n### Encoding\n\n`vlq.encode` accepts an integer, or an array of integers, and returns a string:\n\n```js\nvlq.encode(123); // '2H';\nvlq.encode([123, 456, 789]); // '2HwcqxB'\n```\n\n### Decoding\n\n`vlq.decode` accepts a string and always returns an array:\n\n```js\nvlq.decode('2H'); // [123]\nvlq.decode('2HwcqxB'); // [123, 456, 789]\n```\n\n\n## Limitations\n\nSince JavaScript bitwise operators work on 32 bit integers, the maximum value this library can handle is 2^30 - 1, or 1073741823.\n\n\n## Using vlq.js with sourcemaps\n\n[See here for an example of using vlq.js with sourcemaps.](https://github.com/Rich-Harris/vlq/tree/master/sourcemaps)\n\n\n## Credits\n\nAdapted from [murzwin.com/base64vlq.html](http://murzwin.com/base64vlq.html) by Alexander Pavlov.\n\n\n## License\n\n[MIT](LICENSE).\n","repository":{"type":"git","url":"git+https://github.com/Rich-Harris/vlq.git"},"bugs":{"url":"https://github.com/Rich-Harris/vlq/issues"},"license":"MIT","versions":{"0.1.0":{"name":"vlq","description":"Generate, and decode, base64 VLQ mappings for source maps and other uses","author":{"name":"Rich Harris"},"repository":{"type":"git","url":"https://github.com/Rich-Harris/vlq"},"version":"0.1.0","main":"vlq.js","files":["vlq.js"],"gitHead":"1290b2fa6d5b85e6ef02bacab4d7fd60df5e07d4","bugs":{"url":"https://github.com/Rich-Harris/vlq/issues"},"homepage":"https://github.com/Rich-Harris/vlq","_id":"vlq@0.1.0","scripts":{},"_shasum":"d5158a0a26ef513af6cd19188c87cf85368a0484","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"anonymous","email":"richard.a.harris@gmail.com"},"maintainers":[{"name":"anonymous","email":"richard.a.harris@gmail.com"}],"dist":{"shasum":"d5158a0a26ef513af6cd19188c87cf85368a0484","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vlq/-/vlq-0.1.0.tgz","integrity":"sha512-vrkNJXrRzMszqoQUT0hvYgMfi6tkGVO9f3XV2ZlECLP+nsz9sfOZpe2ZzbO0dv+4xHEu3XyZFNnFticE8vtjUQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBjg/kui+w3ZWeD0gF52wbfIrRKTUYm1FddJ2A1yjJf1AiEA8A90zhadIrcSrjp8SioX/btfHmVzZ+hQv5hl714uRwE="}]},"directories":{}},"0.2.0":{"name":"vlq","description":"Generate, and decode, base64 VLQ mappings for source maps and other uses","author":{"name":"Rich Harris"},"repository":{"type":"git","url":"https://github.com/Rich-Harris/vlq"},"license":"MIT","version":"0.2.0","main":"dist/vlq.js","jsnext:main":"src/vlq.js","files":["README.md","src/vlq.js","dist/vlq.js"],"devDependencies":{"esperanto":"^0.6.8","jshint":"^2.6.0"},"scripts":{"build":"esperanto -i src/vlq.js -o dist/vlq.js -t umd -n vlq -s","lint":"jshint src","test":"node test","prepublish":"npm run lint; npm run build; npm test"},"gitHead":"c77eed2c03bd3bd03b0d43889513dbeb14daf65b","bugs":{"url":"https://github.com/Rich-Harris/vlq/issues"},"homepage":"https://github.com/Rich-Harris/vlq","_id":"vlq@0.2.0","_shasum":"f45f1792d26b4521ae2681fdcca5d0c32461d8df","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"richard.a.harris@gmail.com"},"maintainers":[{"name":"anonymous","email":"richard.a.harris@gmail.com"}],"dist":{"shasum":"f45f1792d26b4521ae2681fdcca5d0c32461d8df","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vlq/-/vlq-0.2.0.tgz","integrity":"sha512-kzWaO181U+du28bFE70OwKvbWunqGFZRrVjuvsJ4PGqls7pkD6+6LAgeHzrB8F57uUbpoXUYOOQh/ytPAu1Rfw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBDVWWIYuxYi8CRbd14WR1Ng3mZ7SBio+wDb0AFmgmsaAiBH3xVvhk5IsWPQeLnk1FxuhE20qJy5EeuFVq8+9gKJ/w=="}]},"directories":{}},"0.2.1":{"name":"vlq","description":"Generate, and decode, base64 VLQ mappings for source maps and other uses","author":{"name":"Rich Harris"},"repository":{"type":"git","url":"https://github.com/Rich-Harris/vlq"},"license":"MIT","version":"0.2.1","main":"dist/vlq.js","jsnext:main":"src/vlq.js","files":["README.md","src/vlq.js","dist/vlq.js"],"devDependencies":{"esperanto":"^0.6.8","jshint":"^2.6.0"},"scripts":{"build":"esperanto -i src/vlq.js -o dist/vlq.js -t umd -n vlq -s","lint":"jshint src","test":"node test","prepublish":"npm run lint; npm run build; npm test"},"gitHead":"bcbd8afe779ca746fcc91c1ca88be214fc5c193e","bugs":{"url":"https://github.com/Rich-Harris/vlq/issues"},"homepage":"https://github.com/Rich-Harris/vlq","_id":"vlq@0.2.1","_shasum":"14439d711891e682535467f8587c5630e4222a6c","_from":".","_npmVersion":"2.5.1","_nodeVersion":"1.2.0","_npmUser":{"name":"anonymous","email":"richard.a.harris@gmail.com"},"maintainers":[{"name":"anonymous","email":"richard.a.harris@gmail.com"}],"dist":{"shasum":"14439d711891e682535467f8587c5630e4222a6c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vlq/-/vlq-0.2.1.tgz","integrity":"sha512-nHsLkUCZjkeZgTWmMA1htGsht29a8Qdf+o2LhJlMN3cIY24DNpHapLWnUTJ3rpZ3eD3240yiS6nRya/km8L7lQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEDn/222V/ZLqgS76Awg0okxtEorY7nB9C6hOmbBDOr5AiB/KQDPbWkIygx0wCv4A9qaUzJ6biehCLeC2QjtAVhKXg=="}]},"directories":{}},"0.2.2":{"name":"vlq","description":"Generate, and decode, base64 VLQ mappings for source maps and other uses","author":{"name":"Rich Harris"},"repository":{"type":"git","url":"git+https://github.com/Rich-Harris/vlq.git"},"license":"MIT","version":"0.2.2","main":"dist/vlq.js","module":"src/vlq.js","files":["README.md","src/vlq.js","dist/vlq.js"],"devDependencies":{"eslint":"^3.19.0","rollup":"^0.41.6"},"scripts":{"build":"rollup src/vlq.js -n vlq -f umd > dist/vlq.js","lint":"eslint src","test":"node test","pretest":"npm run build","prepublish":"npm test"},"gitHead":"a208af958037eeea3b0978b1a353c77e837a4ac8","bugs":{"url":"https://github.com/Rich-Harris/vlq/issues"},"homepage":"https://github.com/Rich-Harris/vlq#readme","_id":"vlq@0.2.2","_shasum":"e316d5257b40b86bb43cb8d5fea5d7f54d6b0ca1","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"anonymous","email":"richard.a.harris@gmail.com"},"dist":{"shasum":"e316d5257b40b86bb43cb8d5fea5d7f54d6b0ca1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vlq/-/vlq-0.2.2.tgz","integrity":"sha512-UA32Mhahru+kz7lDBdHK1enfV302FQl7UDOPK9xOSgR5dMaBHdREi/x22cYYS5jBNAscZSmr1+wtBu7QeaaOZQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICVn0hrsb3glCfZJIt2QTCcoAJtzHwlbcUlsbtrMNSnNAiAscF43jNZ62/ixXPHYOYg89uZ913I5py7h5e9H4j4Hpw=="}]},"maintainers":[{"name":"anonymous","email":"richard.a.harris@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vlq-0.2.2.tgz_1492045338584_0.668944044271484"},"directories":{}},"0.2.3":{"name":"vlq","description":"Generate, and decode, base64 VLQ mappings for source maps and other uses","author":{"name":"Rich Harris"},"repository":{"type":"git","url":"git+https://github.com/Rich-Harris/vlq.git"},"license":"MIT","version":"0.2.3","main":"dist/vlq.js","module":"src/vlq.js","files":["README.md","LICENSE","src/vlq.js","dist/vlq.js"],"devDependencies":{"eslint":"^3.19.0","rollup":"^0.41.6"},"scripts":{"build":"rollup src/vlq.js -n vlq -f umd > dist/vlq.js","lint":"eslint src","test":"node test","pretest":"npm run build","prepublish":"npm test"},"gitHead":"2d55881010e8b7f0bceff58231cfe7a0b3d59049","bugs":{"url":"https://github.com/Rich-Harris/vlq/issues"},"homepage":"https://github.com/Rich-Harris/vlq#readme","_id":"vlq@0.2.3","_npmVersion":"5.4.2","_nodeVersion":"8.0.0","_npmUser":{"name":"anonymous","email":"richard.a.harris@gmail.com"},"dist":{"integrity":"sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow==","shasum":"8f3e4328cf63b1540c0d67e1b2778386f8975b26","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vlq/-/vlq-0.2.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDrKXHVMUV/Ul3tLim+pk7skDfBHEDXeyG4lFLcG2pl7QIhAL+VEwtScYR7LLwvbdqo7JJZ1SpAyXGTpuOj/tXfejOg"}]},"maintainers":[{"name":"anonymous","email":"richard.a.harris@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vlq-0.2.3.tgz_1507042932813_0.24391252035275102"},"directories":{}},"1.0.0":{"name":"vlq","description":"Generate, and decode, base64 VLQ mappings for source maps and other uses","author":{"name":"Rich Harris"},"repository":{"type":"git","url":"git+https://github.com/Rich-Harris/vlq.git"},"license":"MIT","version":"1.0.0","main":"dist/vlq.js","module":"dist/vlq.es.js","types":"dist/types/vlq.d.ts","files":["README.md","LICENSE","dist/*.js","dist/**/*.d.ts"],"devDependencies":{"eslint":"^3.19.0","rollup":"^0.53.3","rollup-plugin-typescript":"^0.8.1","typescript":"^2.6.2"},"scripts":{"build":"rollup -c && tsc","lint":"eslint src","test":"node test","pretest":"npm run build","prepublish":"npm test"},"gitHead":"b7093c21ec6c9bbfed454d2785909b53cec4bd98","bugs":{"url":"https://github.com/Rich-Harris/vlq/issues"},"homepage":"https://github.com/Rich-Harris/vlq#readme","_id":"vlq@1.0.0","_npmVersion":"5.5.1","_nodeVersion":"9.1.0","_npmUser":{"name":"anonymous","email":"richard.a.harris@gmail.com"},"dist":{"integrity":"sha512-o3WmXySo+oI5thgqr7Qy8uBkT/v9Zr+sRyrh1lr8aWPUkgDWdWt4Nae2WKBrLsocgE8BuWWD0jLc+VW8LeU+2g==","shasum":"8101be90843422954c2b13eb27f2f3122bdcc806","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vlq/-/vlq-1.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDGqcqbW70eQM3GxiKzc49ie6jOTmceULJrd2PGJ0voNwIgAvsKJINBEsY1I1Mj5Z4WJzvCnFM2Hi3+NEpJHUJj/mQ="}]},"maintainers":[{"name":"anonymous","email":"richard.a.harris@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vlq-1.0.0.tgz_1515597410850_0.1523158666677773"},"directories":{}},"1.0.1":{"name":"vlq","description":"Generate, and decode, base64 VLQ mappings for source maps and other uses","author":{"name":"Rich Harris"},"repository":{"type":"git","url":"git+https://github.com/Rich-Harris/vlq.git"},"license":"MIT","version":"1.0.1","main":"dist/vlq.js","module":"dist/vlq.es.js","types":"dist/types/vlq.d.ts","devDependencies":{"eslint":"^6.0.1","rollup":"^1.16.4","rollup-plugin-typescript":"^1.0.1","typescript":"^3.5.2"},"scripts":{"build":"rollup -c && tsc","lint":"eslint src","test":"node test","pretest":"npm run build","prepublish":"npm test"},"gitHead":"822db3f22bf09148b84e8ef58878d11f3bcd543e","bugs":{"url":"https://github.com/Rich-Harris/vlq/issues"},"homepage":"https://github.com/Rich-Harris/vlq#readme","_id":"vlq@1.0.1","_nodeVersion":"12.2.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==","shasum":"c003f6e7c0b4c1edd623fd6ee50bbc0d6a1de468","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vlq/-/vlq-1.0.1.tgz","fileCount":7,"unpackedSize":8306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdHRF2CRA9TVsSAnZWagAAF7AP/i9KLS/JalB//uFMCIjI\new8F/yIzvTV305vZtXb1DITpgzjPoZ6bsRl9o+gbsynpVXLRw9Yl8c8+PP5J\nuP6c+oDjLSSTs1RHNXr6CzhTkomyHjDxdkxh9CrCX6s3qZrCg5fuHWPB+BL5\n9BigkKE6ewKUMIn73IB7IRpC/HVs/MpA2ONbUxwVm9y1nct/YKxS/iZ3F17b\nQt//sLkQqTV3k+ZiCaPDhHBwXWZtUO+gJRLLLYVrFs3tliHWzD5yzIvAv+0b\nrX5DRD6qrNb6g++/AC/adQj/Ga1I/NrVU5TtQJJEJ0oMfEpORtPNllC9xgBN\nVBbhx9vWh8xpb/POtFm+niSuzCA48HjtjmaekbfguF3Vttr047+WG7Hrq9Sh\noA5b/GdGtHvA9sH0pYXZn2tO4Vn6sygnsb7aYm3VveCJt3Saxsko2R2vBRh0\n3VHFf/PN8zp86TdOR7a9XfN3s1aPfPUACKH1QyJlLCTGeAsrBdr9fDhWv9AP\nQO15V3VMYwyBX/QmR+3ld2Sf0Yv7qX37n/tf3U9LZ4V5GRMuZAq/atzV4U0A\neq8unWmhZsagethcPbXiMhTzwp9NlmjairIJ8ATfhy3lwHbMGQ1G+hdUSJT9\nd84qjbTC8mBWObXitvw8fH3lfFQ9QBeuANxRLG9TrxAIHsgxnfe655qUqKUJ\nLniC\r\n=PEaf\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDvegq5y75mGl2R3bxBOfNPgk26FYCsa3r/kSleK6GCHAiEAuBXQKwRH8gPP76EWPdw/jXDvnQT+IQAaLLz40HsWeDs="}]},"maintainers":[{"name":"anonymous","email":"richard.a.harris@gmail.com"}],"_npmUser":{"name":"anonymous","email":"richard.a.harris@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vlq_1.0.1_1562186101599_0.37771412789758885"},"_hasShrinkwrap":false},"2.0.0":{"name":"vlq","description":"Generate, and decode, base64 VLQ mappings for source maps and other uses","author":{"name":"Rich Harris"},"repository":{"type":"git","url":"git+https://github.com/Rich-Harris/vlq.git"},"license":"MIT","version":"2.0.0","type":"module","exports":{"./package.json":"./package.json",".":{"import":"./src/index.js","require":"./dist/index.js"}},"main":"dist/index.js","module":"src/index.js","types":"types/index.d.ts","devDependencies":{"rollup":"^2.58.0","typescript":"^4.4.4"},"scripts":{"build":"rollup -c && tsc","test":"node test","prepublish":"npm test && npm run build"},"gitHead":"258252e9ebe3ccd2042fa7e09e77981f633544ab","bugs":{"url":"https://github.com/Rich-Harris/vlq/issues"},"homepage":"https://github.com/Rich-Harris/vlq#readme","_id":"vlq@2.0.0","_nodeVersion":"16.5.0","_npmVersion":"7.19.1","dist":{"integrity":"sha512-35vDfmqN8fRK7SbMqtDXN0Wu/efO60BP2UHjgBgXzVhoIkF13fZkIjpZEwHU6/1t2r+Y3ZeMSsu9pI+1UVSd2Q==","shasum":"a8cd69ebdf18df69d10e7d6845b67540aae6b0f0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vlq/-/vlq-2.0.0.tgz","fileCount":5,"unpackedSize":5934,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEsBZJ6XAuX3O3wpW+BGMWGBSW+YuWTWygwORphlNNFXAiAQykQ9OTyIqcDqMfOpIUMzrtNAFrnMN3AXUxmHRrqtpQ=="}]},"_npmUser":{"name":"anonymous","email":"richard.a.harris@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"richard.a.harris@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vlq_2.0.0_1634403837981_0.4131541849313902"},"_hasShrinkwrap":false},"2.0.1":{"name":"vlq","description":"Generate, and decode, base64 VLQ mappings for source maps and other uses","author":{"name":"Rich Harris"},"repository":{"type":"git","url":"git+https://github.com/Rich-Harris/vlq.git"},"license":"MIT","version":"2.0.1","type":"module","exports":{"./package.json":"./package.json",".":{"import":"./src/index.js","require":"./dist/index.js"}},"main":"dist/index.js","module":"src/index.js","types":"types/index.d.ts","devDependencies":{"rollup":"^2.58.0","typescript":"^4.4.4"},"scripts":{"build":"rollup -c && tsc","test":"node test","prepublishOnly":"npm test && npm run build"},"gitHead":"45414d54eab361721613d9c9b2e95723894dc617","bugs":{"url":"https://github.com/Rich-Harris/vlq/issues"},"homepage":"https://github.com/Rich-Harris/vlq#readme","_id":"vlq@2.0.1","_nodeVersion":"16.5.0","_npmVersion":"7.19.1","dist":{"integrity":"sha512-nHdCPki7dbYV7nnxk/c0fyA6sIGXIp6ODyqZyoTIoXyxtTf4akz9dL/v1Iq6BtSTgGP7ZzB9IpAzmr+CV9vusg==","shasum":"821f8d63d6e2852978653f750bb8488addd156ab","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vlq/-/vlq-2.0.1.tgz","fileCount":5,"unpackedSize":5959,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC7G9NtXtdy8SKLAP3HoRvcwIJFj8g6PvDqkSGhFhXNtAiAjx4c4l1/Ai24k3+YOp5Filzj8fE8e1A6a1i0ZMA9wIQ=="}]},"_npmUser":{"name":"anonymous","email":"richard.a.harris@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"richard.a.harris@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vlq_2.0.1_1634403909059_0.05836186907851637"},"_hasShrinkwrap":false},"2.0.2":{"name":"vlq","description":"Generate, and decode, base64 VLQ mappings for source maps and other uses","author":{"name":"Rich Harris"},"repository":{"type":"git","url":"git+https://github.com/Rich-Harris/vlq.git"},"license":"MIT","version":"2.0.2","type":"module","exports":{"./package.json":"./package.json",".":{"import":"./src/index.js","require":"./dist/index.js"}},"main":"dist/index.js","module":"src/index.js","types":"types/index.d.ts","devDependencies":{"rollup":"^2.58.0","typescript":"^4.4.4"},"scripts":{"build":"rollup -c && tsc","test":"node test","prepublishOnly":"npm test && npm run build"},"keywords":["sourcemap","sourcemaps","base64","vlq"],"gitHead":"8eef3397a6b16f3588bf682a20e99d6d8f061249","bugs":{"url":"https://github.com/Rich-Harris/vlq/issues"},"homepage":"https://github.com/Rich-Harris/vlq#readme","_id":"vlq@2.0.2","_nodeVersion":"16.5.0","_npmVersion":"7.19.1","dist":{"integrity":"sha512-/CdioGwnaPoZvGly0W5oGIAVBCT5EjNVNhwcvIfycNxEv93SUXFpQoeqEbAy7P6dy6uG05fFNRrZiWRlQyNiPg==","shasum":"d545b6be4957e23e765dc3fcea87b513e32fc2a0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vlq/-/vlq-2.0.2.tgz","fileCount":5,"unpackedSize":5897,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCtRW3L6LcjnFbYs4MnIYd5GElDfQXqAcYXt8wShCXEQAIhAIb0OphHYO4VUVwC4YQ/+kQTZCpHs5xu+d9QoBUD23vz"}]},"_npmUser":{"name":"anonymous","email":"richard.a.harris@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"richard.a.harris@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vlq_2.0.2_1634404550138_0.20274487778367223"},"_hasShrinkwrap":false},"2.0.3":{"name":"vlq","description":"Generate, and decode, base64 VLQ mappings for source maps and other uses","author":{"name":"Rich Harris"},"repository":{"type":"git","url":"git+https://github.com/Rich-Harris/vlq.git"},"license":"MIT","version":"2.0.3","type":"module","exports":{"./package.json":"./package.json",".":{"import":"./src/index.js","require":"./dist/index.js"}},"main":"dist/index.cjs","module":"src/index.js","types":"types/index.d.ts","devDependencies":{"rollup":"^2.58.0","typescript":"^4.4.4"},"scripts":{"build":"rollup -c && tsc","test":"node test","prepublishOnly":"npm test && npm run build"},"keywords":["sourcemap","sourcemaps","base64","vlq"],"gitHead":"335d812d66fe7f9b6e8f7c8d298ffabb8c7392f3","bugs":{"url":"https://github.com/Rich-Harris/vlq/issues"},"homepage":"https://github.com/Rich-Harris/vlq#readme","_id":"vlq@2.0.3","_nodeVersion":"16.5.0","_npmVersion":"7.19.1","dist":{"integrity":"sha512-tI0FZD+skOEmTAnv/zy1E+THS7WZD35uqdmq+x9tRPM7uH2eBc2E7hqTRmxy6jW6BqUQh6o/wmx8XXsFEMq6QA==","shasum":"8facf510897f06321ffb256b1e2676481dd30d8a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vlq/-/vlq-2.0.3.tgz","fileCount":7,"unpackedSize":9607,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDlJvpA0HMHuH6j3Eu70hQWoOZWptO0+CIzjYCeUu84UQIhAP5/V8OdGLCoAtpARhedIYvkPBwKvsy6tQxZ67pkywKh"}]},"_npmUser":{"name":"anonymous","email":"richard.a.harris@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"richard.a.harris@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vlq_2.0.3_1634563668429_0.5259286004310046"},"_hasShrinkwrap":false},"2.0.4":{"name":"vlq","description":"Generate, and decode, base64 VLQ mappings for source maps and other uses","author":{"name":"Rich Harris"},"repository":{"type":"git","url":"git+https://github.com/Rich-Harris/vlq.git"},"license":"MIT","version":"2.0.4","type":"module","exports":{"./package.json":"./package.json",".":{"import":"./src/index.js","require":"./dist/index.cjs"}},"main":"dist/index.cjs","module":"src/index.js","types":"types/index.d.ts","devDependencies":{"rollup":"^2.58.0","typescript":"^4.4.4"},"scripts":{"build":"rm -rf dist && rollup -c && tsc","test":"node test","prepublishOnly":"npm test && npm run build"},"keywords":["sourcemap","sourcemaps","base64","vlq"],"gitHead":"e3009f5757abeb0b5b6233045f3bbdaf86435d08","bugs":{"url":"https://github.com/Rich-Harris/vlq/issues"},"homepage":"https://github.com/Rich-Harris/vlq#readme","_id":"vlq@2.0.4","_nodeVersion":"16.5.0","_npmVersion":"7.19.1","dist":{"integrity":"sha512-aodjPa2wPQFkra1G8CzJBTHXhgk3EVSwxSWXNPr1fgdFLUb8kvLV1iEb6rFgasIsjP82HWI6dsb5Io26DDnasA==","shasum":"6057b85729245b9829e3cc7755f95b228d4fe041","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vlq/-/vlq-2.0.4.tgz","fileCount":6,"unpackedSize":7514,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2/7wCRA9TVsSAnZWagAApI8P/jU1UotwHKWadKl344gy\nx5mp6HaBkVH2X56kPQl28LnB797C6i5BAmg+eJWDZQmtwW6SL9JWpw6AiVex\n7Qbs1Hxq9n79pKcUTWzZubYju+xGfRruJzgMI+sjwJJyD7N+vJkRmByXGecS\nXvXt/NrCsT8vujlq5rRal/c7TqXbNxx3iMmbvPbh98UoZ5yspZr/zCy1Y9wL\nCji4Mu9iKvEImX73Pcxt22MxkgTzyP0b9M6kr4L4BrvnXWGVbUmpcyrEIlv9\nIRLN1na1sWiOOmQu2J8g542lQb7CDXiDmGVyVieepq6F8k7G/ZLESeMpFVZ3\nsQOm8L5LE3FFpFph4GiCLl/tKlJhIrjmIjJUkshyT0t1YwKMou89zTo88tZO\nJFrE4S5p9Er/NRm07B8UG8+ZCooQFZ6l0qjXv4JaKpHEo8GKDihbgRnPNmF5\nAWBQjlw5dT6MoAgHI2Dct3QJFVMj3UO5OukchOr724tWyteKvK0A0KszaB4X\nYYl8kcI3j6eUwFs2xYsN3LjTLulAlw8d1YeQgAycYgj4a78lOWDjzQPEE2GT\nlP8lOgl5lpOeHlDphxd0yTiy+P+h+xjtIxT6XzQY+rgceO6dZAFXcEmJJT0i\nUlm98YOTHg9uOOFsDTmArpWSmpQ2PtEFOjtiq72WtQtXcVVfX+dvswWAULeX\nVWND\r\n=YMHv\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFiySzeBiXTWddTA42UsoKwMAstpWke2OpEtjFXNAQEcAiEAxxTNTIQd4yjfR9ydJ7LZTeCoa91iKUfTYMqMoFdyXvI="}]},"_npmUser":{"name":"anonymous","email":"richard.a.harris@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"richard.a.harris@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vlq_2.0.4_1634577153302_0.6749144224205808"},"_hasShrinkwrap":false}},"name":"vlq","time":{"modified":"2022-06-28T18:04:21.654Z","created":"2014-09-28T19:48:06.767Z","0.1.0":"2014-09-28T19:48:06.767Z","0.2.0":"2015-02-05T19:56:06.888Z","0.2.1":"2015-02-28T19:10:10.313Z","0.2.2":"2017-04-13T01:02:19.121Z","0.2.3":"2017-10-03T15:02:13.737Z","1.0.0":"2018-01-10T15:16:51.829Z","1.0.1":"2019-07-03T20:35:01.754Z","2.0.0":"2021-10-16T17:03:58.102Z","2.0.1":"2021-10-16T17:05:09.189Z","2.0.2":"2021-10-16T17:15:50.260Z","2.0.3":"2021-10-18T13:27:48.586Z","2.0.4":"2021-10-18T17:12:33.442Z"},"readmeFilename":"README.md","homepage":"https://github.com/Rich-Harris/vlq#readme"}