\n\n# glob-parent\n\n[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][ci-image]][ci-url] [![Coveralls Status][coveralls-image]][coveralls-url]\n\nExtract the non-magic parent path from a glob string.\n\n## Usage\n\n```js\nvar globParent = require('glob-parent');\n\nglobParent('path/to/*.js'); // 'path/to'\nglobParent('/root/path/to/*.js'); // '/root/path/to'\nglobParent('/*.js'); // '/'\nglobParent('*.js'); // '.'\nglobParent('**/*.js'); // '.'\nglobParent('path/{to,from}'); // 'path'\nglobParent('path/!(to|from)'); // 'path'\nglobParent('path/?(to|from)'); // 'path'\nglobParent('path/+(to|from)'); // 'path'\nglobParent('path/*(to|from)'); // 'path'\nglobParent('path/@(to|from)'); // 'path'\nglobParent('path/**/*'); // 'path'\n\n// if provided a non-glob path, returns the nearest dir\nglobParent('path/foo/bar.js'); // 'path/foo'\nglobParent('path/foo/'); // 'path/foo'\nglobParent('path/foo'); // 'path' (see issue #3 for details)\n```\n\n## API\n\n### `globParent(maybeGlobString, [options])`\n\nTakes a string and returns the part of the path before the glob begins. Be aware of Escaping rules and Limitations below.\n\n#### options\n\n```js\n{\n // Disables the automatic conversion of slashes for Windows\n flipBackslashes: true;\n}\n```\n\n## Escaping\n\nThe following characters have special significance in glob patterns and must be escaped if you want them to be treated as regular path characters:\n\n- `?` (question mark) unless used as a path segment alone\n- `*` (asterisk)\n- `|` (pipe)\n- `(` (opening parenthesis)\n- `)` (closing parenthesis)\n- `{` (opening curly brace)\n- `}` (closing curly brace)\n- `[` (opening bracket)\n- `]` (closing bracket)\n\n**Example**\n\n```js\nglobParent('foo/[bar]/'); // 'foo'\nglobParent('foo/\\\\[bar]/'); // 'foo/[bar]'\n```\n\n## Limitations\n\n### Braces & Brackets\n\nThis library attempts a quick and imperfect method of determining which path\nparts have glob magic without fully parsing/lexing the pattern. There are some\nadvanced use cases that can trip it up, such as nested braces where the outer\npair is escaped and the inner one contains a path separator. If you find\nyourself in the unlikely circumstance of being affected by this or need to\nensure higher-fidelity glob handling in your library, it is recommended that you\npre-process your input with [expand-braces] and/or [expand-brackets].\n\n### Windows\n\nBackslashes are not valid path separators for globs. If a path with backslashes\nis provided anyway, for simple cases, glob-parent will replace the path\nseparator for you and return the non-glob parent path (now with\nforward-slashes, which are still valid as Windows path separators).\n\nThis cannot be used in conjunction with escape characters.\n\n```js\n// BAD\nglobParent('C:\\\\Program Files \\\\(x86\\\\)\\\\*.ext'); // 'C:/Program Files /(x86/)'\n\n// GOOD\nglobParent('C:/Program Files\\\\(x86\\\\)/*.ext'); // 'C:/Program Files (x86)'\n```\n\nIf you are using escape characters for a pattern without path parts (i.e.\nrelative to `cwd`), prefix with `./` to avoid confusing glob-parent.\n\n```js\n// BAD\nglobParent('foo \\\\[bar]'); // 'foo '\nglobParent('foo \\\\[bar]*'); // 'foo '\n\n// GOOD\nglobParent('./foo \\\\[bar]'); // 'foo [bar]'\nglobParent('./foo \\\\[bar]*'); // '.'\n```\n\n## License\n\nISC\n\n\n[downloads-image]: https://img.shields.io/npm/dm/glob-parent.svg?style=flat-square\n[npm-url]: https://www.npmjs.com/package/glob-parent\n[npm-image]: https://img.shields.io/npm/v/glob-parent.svg?style=flat-square\n\n[ci-url]: https://github.com/gulpjs/glob-parent/actions?query=workflow:dev\n[ci-image]: https://img.shields.io/github/workflow/status/gulpjs/glob-parent/dev?style=flat-square\n\n[coveralls-url]: https://coveralls.io/r/gulpjs/glob-parent\n[coveralls-image]: https://img.shields.io/coveralls/gulpjs/glob-parent/master.svg?style=flat-square\n\n\n\n[expand-braces]: https://github.com/jonschlinkert/expand-braces\n[expand-brackets]: https://github.com/jonschlinkert/expand-brackets\n\n","maintainers":[{"email":"yo@contra.io","name":"yocontra"},{"email":"blaine.bublitz@gmail.com","name":"phated"},{"email":"elan.shanker+npm@gmail.com","name":"es128"},{"email":"brian.woodward@gmail.com","name":"doowb"}],"time":{"modified":"2023-06-22T16:32:08.502Z","created":"2015-01-12T20:32:54.422Z","1.0.0":"2015-01-12T20:32:54.422Z","1.1.0":"2015-03-04T15:11:54.539Z","1.2.0":"2015-03-04T16:13:57.996Z","1.3.0":"2015-09-18T14:49:40.290Z","2.0.0":"2015-09-18T14:59:10.292Z","3.0.0":"2016-09-06T19:13:54.031Z","3.0.1":"2016-10-18T19:20:27.458Z","3.1.0":"2016-12-14T15:48:47.422Z","4.0.0":"2019-03-27T23:42:10.038Z","5.0.0":"2019-03-29T22:38:43.850Z","5.1.0":"2019-09-21T23:17:05.017Z","5.1.1":"2020-03-21T23:16:48.765Z","5.1.2":"2021-03-06T21:21:44.487Z","6.0.0":"2021-05-03T20:15:14.160Z","6.0.1":"2021-07-20T05:49:06.969Z","6.0.2":"2021-09-29T22:14:24.467Z"},"homepage":"https://github.com/gulpjs/glob-parent#readme","keywords":["glob","parent","strip","path","dirname","directory","base","wildcard"],"repository":{"type":"git","url":"git+https://github.com/gulpjs/glob-parent.git"},"author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"https://gulpjs.com/"},"bugs":{"url":"https://github.com/gulpjs/glob-parent/issues"},"license":"ISC","readmeFilename":"README.md","users":{"youstrive":true,"flumpus-dev":true},"contributors":[{"name":"Elan Shanker","url":"https://github.com/es128"},{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"}]}
\ No newline at end of file
diff --git a/.npm-cache/_cacache/content-v2/sha512/04/e5/f1bff15ebe7965b93a2dfcb09b2dad2f49b556f0b738a7b09672455538826a3a4b9eed94dd7c1cd746227117de1fdbd701c27f89eb9853d867417d40f984 b/.npm-cache/_cacache/content-v2/sha512/04/e5/f1bff15ebe7965b93a2dfcb09b2dad2f49b556f0b738a7b09672455538826a3a4b9eed94dd7c1cd746227117de1fdbd701c27f89eb9853d867417d40f984
deleted file mode 100644
index 513b21d..0000000
--- a/.npm-cache/_cacache/content-v2/sha512/04/e5/f1bff15ebe7965b93a2dfcb09b2dad2f49b556f0b738a7b09672455538826a3a4b9eed94dd7c1cd746227117de1fdbd701c27f89eb9853d867417d40f984
+++ /dev/null
@@ -1 +0,0 @@
-{"_id":"tsx","_rev":"125-f722c0423a224ad54ce26c44db52f03f","name":"tsx","dist-tags":{"latest":"4.21.0"},"versions":{"1.0.0":{"name":"tsx","version":"1.0.0","keywords":["TypeScript","IDE"],"author":{"name":"basaratali@gmail.com"},"license":"MIT","_id":"tsx@1.0.0","maintainers":[{"name":"basarat","email":"basaratali@gmail.com"}],"homepage":"https://github.com/basarat/tsx#readme","bugs":{"url":"https://github.com/basarat/tsx/issues"},"dist":{"shasum":"f8b515835caff098172c7232bb2b1330be449265","tarball":"https://registry.npmjs.org/tsx/-/tsx-1.0.0.tgz","integrity":"sha512-Qwo1kYs446koq4FD86mgGjkqcQmtNOyqJ2Q8Ddaibs2ALbyFlSf/KjDNKNYqImvfpjCOmsO6gF9yQXMGlXmDBg==","signatures":[{"sig":"MEYCIQCKqVUbTtxCxXahMUey7BAymUaeKpPvgTJodQ3VEiK12QIhAKwfbRz/29gsSA34m3A8ZacYpLBpi+XatB1DXNqEL/EH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f8b515835caff098172c7232bb2b1330be449265","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"basarat","email":"basaratali@gmail.com"},"repository":{"url":"git+https://github.com/basarat/tsx.git","type":"git"},"_npmVersion":"2.13.3","description":"TypeScript Experience","directories":{},"_nodeVersion":"3.0.0"},"2.0.0":{"name":"tsx","version":"2.0.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@2.0.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"bc13e25e25d603f8a09f57df8583a14fb613352d","tarball":"https://registry.npmjs.org/tsx/-/tsx-2.0.0.tgz","fileCount":3,"integrity":"sha512-8Y6SsOteqUBA7vjt49BVQGYX8zmk0lVIEhnfQwn7heLQmA8wlOWmiJPIaRnuhE3EJY4MBlESXnp1H+Z+1R2s9A==","signatures":[{"sig":"MEUCIGgWTGCXpfrNATcvUTqcAExgCSAjl6dWP+swQ/k+Omc1AiEA6VN00Ai+UIh2TRLiCAEkGfwALhDfx9SxtT4oSgzLVpA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":117848,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJievTOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqTLA//QYCi1tqAR8tX5/iWVlZaYbklTkUGK686ycOyW+HHOwLMf7Po\r\ntGORcedL7nN8vuvKz4IWMZVcFMIWKtYApOVRjaytA7DaiNg4yUqfpfhuWfSh\r\nDCeetl+FX3Gh/m7hVj5a4dQVqJVE364LALKsOx39fGy5GQVHwCvusmbbpeCT\r\nGqpxBiTGdhqwNHi6vYR/VqPmfWaX30uFOh/GvaNU2uN4Ki4MuJj8tXZ2p2cF\r\njEqy8I2okt6bJU7U0jW/4LjUuzg+1ypBfIOGra9o95pNbLpbjiovRS6cXQmN\r\nWflUZFA//h09vT6+81Qg5LHHHD5hVIjr5Gg1NYjNWviBFo8DMvsbflkxF24j\r\nIOF3HcJfiFx3M5NtHavZvA62EScWE3Qf+JNaWbOohIx7LIi+ysjJqOKF5vQP\r\nMSyD0UCGOybErK8sqAEg3vHaeT7+63BFeQG7wWPnbmX9R2wFGtwj1QwdXSdx\r\nV6SdzEUwURq3Jw8nHLdfnLwTU5rmaj+XNQYxJe6tAKkIJC0lzSidDH+UNVKR\r\nLYPrKKYckA96fBuQS3NIKa4bO6rjinJ6WtFW8o94Anu+jO62yiQsrF04hfh6\r\nwE/KxHmCeEAx2x2ZSPHyqqO2tOVH7re27qd+M0pCuZ9k/BhU6MWXWjZ+filq\r\nhVgXprqS3ADTUq3j76YxfURdF2p/AqMuBZY=\r\n=YG0S\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"12e64c43401c5f2f7cf41aac716a3432c7ff225c","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"Node.js runtime enhanced with esbuild for loading TypeScript & ESM","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^1.0.0","@esbuild-kit/esm-loader":"^1.0.0"},"eslintConfig":{"rules":{"@typescript-eslint/no-shadow":["error",{"allow":["describe"]}]},"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.0","execa":"^6.1.0","eslint":"^8.15.0","manten":"^0.0.3","semver":"^7.3.7","pkgroll":"^1.2.2","chokidar":"^3.5.3","get-node":"^13.0.1","typescript":"^4.6.4","@types/node":"^17.0.31","cross-spawn":"^7.0.3","@types/semver":"^7.3.9","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.22.0"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_2.0.0_1652225230026_0.9465029692780131","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"tsx","version":"2.0.1","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@2.0.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"9a00daace970793d61c0624e11d374d8cac2d055","tarball":"https://registry.npmjs.org/tsx/-/tsx-2.0.1.tgz","fileCount":3,"integrity":"sha512-qOzBwD5DkUodG7PjIUTPmRdAknYHC4jh7cOchnUScJCyayI8Cy8WqoD1rc7+zhM6x5a4YDoE5CJ+t3a92K4j2w==","signatures":[{"sig":"MEQCIHJjaAK1y8Fc+aSNG48GdzPlLDSWGgxGWnC2I31ZtQUMAiAv11eJ/xkV2n7CVM6vg/ZEy7M0rfq2jH7DvirU66I26g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":118118,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiewWGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqqfg/7BKT2V6qED1gHv9+JXJyMebRsT+kYQ7uouMSUFsEcLr/xQIf8\r\nD8oDSYc57yQXajNCPo0L9WS9sfYdqlnmq8eGAFh9ZRCw1FvpJu8wo40nh9Gw\r\n5qQesd57SR/7gLOt3I26yU3/Hkhg39ZJtar8+Qy8bSp0621O1fyUWxfnhQyb\r\n5vNEkS6Lok3CVWix0HfltcXOQLaEZuzK7mBeeNqkVGiFwNU8NuGzTEwuHzbS\r\n28Xdvhiv4SCaaDNcc0dKcNhFgJscRc6OklpSOtBn2v3MMIqln8O2w+dUH16Y\r\nH7Av0mpJUnQLtrn+PSXuZ9tJunadGiKjFlC3O8uBEg64rnDNIPt5PeFU131y\r\nR1Hj9oe+r9Cprz7ESL0nj8hVRgKgZQImKHT9cTDI5paXRnno0IbO4S8Jsy2A\r\n05ZFbq0WhZjrn7EQlSh3bH5Gn/wk5SBBBoduC9rLrtMWfIb3K/biqK8DcVWE\r\nvN76VlVHedLvLtugHkGhv4qxaksxPx7q8VnwREjM1SZaHCNU3MQYl8iFJqoU\r\n6VejZn4woAsqiYayqKAzzyg/6j/huw65i/HLyyYhgKrfyPqndvw91fJU3iqX\r\n0034TMJDaK7J3Aaw8WpLmFXhtZb0oJHD9tTWcRSzr/M0W0CM+qYKmjryzbDb\r\nMl7tK9hr5IgoZCgfEuo/5BXO3Sf4fLx7Ni8=\r\n=lccy\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"ccf7ee1d506a02513dd4352b369adf2239c4b3ef","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"Node.js runtime enhanced with esbuild for loading TypeScript & ESM","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^1.0.0","@esbuild-kit/esm-loader":"^1.0.0"},"eslintConfig":{"rules":{"@typescript-eslint/no-shadow":["error",{"allow":["describe"]}]},"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.0","execa":"^6.1.0","eslint":"^8.15.0","manten":"^0.0.3","semver":"^7.3.7","pkgroll":"^1.2.2","chokidar":"^3.5.3","get-node":"^13.0.1","typescript":"^4.6.4","@types/node":"^17.0.31","cross-spawn":"^7.0.3","@types/semver":"^7.3.9","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.22.0"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_2.0.1_1652229510710_0.960803908333246","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"tsx","version":"2.1.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@2.1.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"79455ba446ce3b6eed94fdb82d1664ef73b081be","tarball":"https://registry.npmjs.org/tsx/-/tsx-2.1.0.tgz","fileCount":3,"integrity":"sha512-+b4qULxZUFzGGJ4N40wDv0krYW5JWjNB5TkfC3bS4DIA4pa4IE82F/XAInnj0+sWL1XvKzDyFbXvpe8UHSkBfQ==","signatures":[{"sig":"MEYCIQDdP+m+tPbZ6eGtly4GrxWkdS5jHxmPl9CbHDvUODcWkgIhAL4dJIWcEEpbzDRppdIQd+dxwq1c69W60KOM7h/6Si+v","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":118130,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJifqDCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq1ZxAAnh3MlgM1bQ+XGQ3fRjKHur+Z8UEXDoobYcKl+ksE8QrBciqI\r\nefJk20BSLE262gAG2i/g+MUJej2tEKbcsbBjLswJvYg6p/0bawPo8iqfJ9Jf\r\nSscyAXW50ctkTJWZDwfjo9+R2SDJJBxVFByOvdzGHJKY1mxpZ7KOYE3B0JIQ\r\nnOddfEj4gy9BDPZqtFzODoTEGLUYCvpTa0lgBRdIYyNQpdX1dFvV3qFsRtfd\r\nyx8fIzNyOK/q+jCUDN8Lm1GpVU7PBPmE4M6qOE/LSEFwqCSnhkVqpd/svrOx\r\nvPQUyM+ToGNbvkP38FDWQCZ6iBGHp7WKrTr/OonFAjtHIn81qhOMohsq3B5p\r\nI/TCBUUtFOnMTUlVh5ze46gNeWAKiLUblskEkSnf3MN5GeWmPV1atEQGVsra\r\ntFVGixZC2NCH00ieGe9ghSfQR6ILzB/QJlEDSMHr+l+MLr4DT35JuOIyGDGz\r\n2D++wUPDLJfCLJAXrhIK0GpklfkfH9Pw30Lu1ZJ1HCWU0kVNaqGXM3z23SjK\r\nl9Sz2MtUOz3S5xdlzDNwxpazWHgt+IBiFVq4kN9trP9/7lhzzrnY7aB8bGU0\r\nQ8u+jhto31fXNouaavBu6IMl1dls11wBJX4Ray5f16ECQdoIrslDQrbfdGKg\r\nUWfBJ9ut1r3PT6CEjIIOW2mVEA3/il7no1Y=\r\n=3xqW\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"2aeb6cac4f262c5e38ca080de8b6bb2e5244a769","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"Node.js runtime enhanced with esbuild for loading TypeScript & ESM","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^1.0.0","@esbuild-kit/esm-loader":"^1.1.0"},"eslintConfig":{"rules":{"@typescript-eslint/no-shadow":["error",{"allow":["describe","runTestSuite"]}]},"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.0","execa":"^6.1.0","eslint":"^8.15.0","manten":"^0.1.0","semver":"^7.3.7","pkgroll":"^1.2.2","chokidar":"^3.5.3","get-node":"^13.0.1","typescript":"^4.6.4","@types/node":"^17.0.31","cross-spawn":"^7.0.3","@types/semver":"^7.3.9","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.22.0"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_2.1.0_1652465857804_0.10025145012003067","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"tsx","version":"3.0.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.0.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"c056399ddf7ee7ba1471edcb946d4ded139b6f96","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.0.0.tgz","fileCount":3,"integrity":"sha512-e6GTuGfETuzdg8rEXgaX3++kn2spgc6yNsWh+PzTh6KiaE/D5m3OeMoefLVynByTmGQmFNBCMxBerM9642wVtA==","signatures":[{"sig":"MEYCIQDV+NcdD+jevu0xqoT6Zo9pipMnvwuZWWocanAcljY+lAIhALYzgYi62tbLUqK15i7/6ZPzQfaoHDkWXFowTZIJ19+4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":118130,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJig9VCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrn8A//c4u9q0YmJXTjnz8dqJZaST0vEeO8bzsuP4+FH4PnMnbuAjUG\r\ngCVLBAu4ympgsxwc2wARFyXBleaF3WxNh7xlWH4ZDuOGroaVas0lWruOh3wd\r\nsEdghEnCMSx7R90T/nheti0MmGWqGCPTZoX6yqaDZbp6EFPSzXv1eL3zFFso\r\nSJzd0B2pTW1cYWQ36cl8D95t70DJv61YmaEniQJxWiTO4KWQBFFldPRBnYCA\r\nvwcVzUzCSEjRXgrZRM2mL7koOc/rNQk1LN4EdIKobx0Ui1R3gCRboxajW/BU\r\nIGWpqCD6h6pnDQpbBbQ2etUY25EKycQdnURJE0SbxR7k25iFcwlidxIwOvRy\r\nWUbJFcMm4CqBouMXfUXzoiIfhm5ufZi71CFu3Yd6WjpJshf1oQ/QmGN++CM8\r\nDYJatrDxvhM1aQfoLrfLoEwz38/cz311denXWbSF5UABud72+tdb9dqNABpO\r\nSOlOyCwx5xypzWWfo4tinv60lQip+bBlxqDzxB0M2tP+MyAGhu1Kk0mmofov\r\nIRIj3+FudK3Bj8oqkLn5LUnzBtBURH/WjWgcP96GGaUCzC5Ty+FwUC5B0u8z\r\ngR8N16ZK1uOrQEYl64tHKABwVc28jDQ8zb+qr2V54M947Tu/q0v4mVwUBe/r\r\nbf+B9GG/ldBrZJ4W4ji9nLskd4WW8OE+1jg=\r\n=Kya/\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"c56b4e2072ebd6c569cd90529f33e1b79903ea86","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"Node.js runtime enhanced with esbuild for loading TypeScript & ESM","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.0.0","@esbuild-kit/esm-loader":"^2.0.0"},"eslintConfig":{"rules":{"@typescript-eslint/no-shadow":["error",{"allow":["describe","runTestSuite"]}]},"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.0","execa":"^6.1.0","eslint":"^8.15.0","manten":"^0.1.0","semver":"^7.3.7","pkgroll":"^1.2.2","chokidar":"^3.5.3","get-node":"^13.0.1","typescript":"^4.6.4","@types/node":"^17.0.31","cross-spawn":"^7.0.3","@types/semver":"^7.3.9","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.22.0"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.0.0_1652806978263_0.12493945716451216","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"tsx","version":"3.1.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.1.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"ce2fff02a4daa6dfd8c1c748bef8f2b3627ec9a0","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.1.0.tgz","fileCount":3,"integrity":"sha512-MRW0qPzeo6veO4smXFqtUREC4lMXXeIvl4N6TULvecJOrQYHvtPxlRy9rxzQMjR8vix97c0QJMlhAN1rS72Djw==","signatures":[{"sig":"MEYCIQCAAiZCQiYWTUUCfJ/beVnpr9yvkYqjVMDGgt2CpjfXRAIhAPsaMm271o74kVfiCMe1AVjAJEja2hRT/lsMAbozDkRF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":118238,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJig9yoACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpUDA/+INrKgkkFF2i+VpR6nV5RAs0kIU5Xc9r/AbgqH+hNoz64vdRF\r\nYTMe2/Vb8Hi6DqImpVioI6AokHuD8O/gv2PCS8mrcMjkR50+wnCC5Sgyl2nD\r\nT2EWxZHIiUZf0hFbi5q0ffJcrK1Ag1jTB3R4AXsdBnJjJ91oA2DkCOP0D5Nb\r\nPp8OczRntb/KTlZ7simMPEfC3+RLlFcj8bwJeGmHznb7dd8biUUq755pta4N\r\n7tKYowO8rETVVL+WxuOSyjUhIzqMptzfK9nltTfwO7v7A/Mx3qZ2hVX3Seln\r\nKgyOkPBYK2dDCn2Ah7Fo0uzgevmb8fdVbHgYnLgBqiySKmApvJtB2tgSRJu2\r\nbRyX+ixmJcAcxuEU9jXDmEPf53Q2JHk2CrgJ3p3+9Eah1jFXXg5rrFKPqp4+\r\nDxU1BVjwgX6/HB7KyMT/TwJDKhUI8ZEXV2HI44bSXr4NMdNaas9gWeC+/8cy\r\nc5RQl7pPh483n/gJfIihxgXSXpyHsfm7V+Y3iPGZvIQIS0W06Q9r8cg53Yz/\r\nRGUCtl7dUTGqsGgjdY+yxvCjs1AWnvI39FIHGBuLCe6lHUbQiTVyKZhmjFfs\r\nyXAXvLiKmTvARquYR0jnyqNTzw0B20oI4UnlrzXkuZzRafJvYyMZTfwCRrgx\r\npRghn1xodArEJLb/hIlfwWepoNeV1yfnJEQ=\r\n=Dcgb\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"6680dcefcb510d5b56ef392304798945279bac06","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"Node.js runtime enhanced with esbuild for loading TypeScript & ESM","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.0.0","@esbuild-kit/esm-loader":"^2.0.0"},"eslintConfig":{"rules":{"@typescript-eslint/no-shadow":["error",{"allow":["describe","runTestSuite"]}]},"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.0","execa":"^6.1.0","eslint":"^8.15.0","manten":"^0.1.0","semver":"^7.3.7","pkgroll":"^1.2.2","chokidar":"^3.5.3","get-node":"^13.0.1","typescript":"^4.6.4","@types/node":"^17.0.31","cross-spawn":"^7.0.3","@types/semver":"^7.3.9","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.22.0"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.1.0_1652808872431_0.6174978046684061","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"tsx","version":"3.2.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.2.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"c8f37626eaf9e063cedba666ce53aa7037f5b67b","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.2.0.tgz","fileCount":5,"integrity":"sha512-7K/UTePojiu6wOiWXG3RiZN7PWOwJUE3aSWnFiOKJ/A5MP2VhCIZdPIJWFcsv2KC3GG8KKpvf45MTfYnvIv2gw==","signatures":[{"sig":"MEUCIQCmuP/0ercqYeTXm9fcATe0s0lTXRw+7ozNOL4Ncn2oAgIgEe+OGUP/TXgyh+P1bv+UBnmHoqej8Rr4Kg2puOEnUiU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":119732,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJihDaFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrfRBAAikCrGT1sC2EX6DeQbNmOlK/6wCD+Nj2G44NqmaLzsiaMOObc\r\n9AGl468c0+t36SpGUqyBbYp+svL15LcxvrySK10lDdjLzdqy97zhtnKDDu06\r\ncP+EMwMz8+zawZv3gYABkBM6iBkIHy9ToijwjYVg7ZuCVyitfS1DvOoP6wyn\r\nDdmIChAe4245h2xoapQebBSUeS9CWnBxBmTbeRVvUpnng6tWH76a+o8fV3iX\r\nLhMJltxk62H5heG/r7K5RSCLGnWGzJZhAWEARtPgmhbLDGBpg3vQYMsdm4ZG\r\ni0IoIArRwqTRid6hXM8gKq58G4fPfn5UQh35YabXjwJquJwpMJcGWfSYWJq0\r\nV8UvLRSj2ozLqcKFqyjWx84IOZ2825ieQwUPfnG7Al+bCTepIyPCdL5NoXsd\r\njO67NLL/GrZ1cG4GFXdNWWN0MP+I8JopqvXrp8a+BlBDmRpXLYlxdnwrYEPk\r\nJ1bf8dgM/5Od8Bnn050dVQiQH+AuwgnHpXAD30EYVBALUaQ7VrxVWEGc7QKO\r\nLyLyt+eQPsxMKqZpxCRbKwAM2YDf4Z4nCy+Lyrm780Aax0860PNBv0RwnYrt\r\nuLOanZz9yXCZyVkEQmo2AFR+U9o7oDlhAHluxew36E9q68uEyk2t0bAjyv3C\r\n55RPSYxS6mexHLzwekvCjcOpsf067jIQw8Q=\r\n=WJbQ\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{"./repl":"./dist/repl.js"},"gitHead":"b2a33d28ea48f2afcaffe43725e4cc8f8f37947d","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"Node.js runtime enhanced with esbuild for loading TypeScript & ESM","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.0.0","@esbuild-kit/core-utils":"^1.1.0","@esbuild-kit/esm-loader":"^2.0.0"},"eslintConfig":{"rules":{"@typescript-eslint/no-shadow":["error",{"allow":["describe","runTestSuite"]}]},"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.0","execa":"^6.1.0","eslint":"^8.15.0","manten":"^0.1.0","semver":"^7.3.7","pkgroll":"^1.2.2","chokidar":"^3.5.3","get-node":"^13.0.1","typescript":"^4.6.4","@types/node":"^17.0.31","cross-spawn":"^7.0.3","@types/semver":"^7.3.9","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.22.0"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.2.0_1652831877195_0.7508116531324214","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"tsx","version":"3.2.1","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.2.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"2c9cc0837af3f7f8cdabf1c523ee3e6c6782ca22","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.2.1.tgz","fileCount":5,"integrity":"sha512-j+Z0kzm/+WMMgbKotcOJml3hHd4Tq1Dr/V5rL82NrNP2dbq0DbyQ9TplIZ1xOZQcsZmb4W1IrK7tueGWyppJjg==","signatures":[{"sig":"MEYCIQDfsWRDnLbhaAi9NDk5Yhbd70mdYs7hs9WVgPDQyZJbnwIhAPM3b0GIR5FQF62bAxPOe5JBmxAeXEgVWLAQtA1iCfmD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":119891,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJihNsmACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmroRg/+KxwpZnqVZvKQTudbZC+e/LUmFyGfJO87+w+UbrZlpbMV+SON\r\nOTBcJf5wzmrWLYArBSoYSDXF7BzTlQPV2mybdgh1KG9PFqAweaLUCrrfsvZb\r\n9DXlI9yThQ/a2qNK9M9svqM9C8i8jhbmpSXTJNQ2XuuqeWOJoQvIGCvZL7wH\r\nugtLquvjAjDtMtSy16n6ZuNGHbpnjiTuZPKUnG3mDP+k19PMneGwpZDauLf7\r\npH+GlN/28ajyt3zm00NFHlhrlntwiM8qytQDijv+NVTlktT7DUjcOZB9WWsv\r\nLTiW7Bdp89sn12M1ZbwYiGBe34iczmQlaryzcq0p9CorK3B4MlsnPOTtvH0Y\r\nk+omEs8muX59Y6w6cKRZ2GX8cinGM07pHnB2WCW+JQUsXuSEF8vwN6UX5BAn\r\nDgfXcHKzzJbYS7HRYzrYe9Gz3geHZR+bAsnJAyYwNEQzSUuucjXxvS4tSb4f\r\nDRFFPmMH0Aae746tuq8IUZzjDMUterv8mSe0QpTjIySiziUCRuyFkxwEkINH\r\nhPgwxUG/wCv6+75gy3g+I4ssmz4jC3h0cBB9PV+oSiO9rinuCjj2T+QxuMxU\r\nBjZBiciY+cPEGqpl5b7k9bGMjv5yifwEXFwZBLFsQeAhPY6EW7IO76VixhWI\r\n10eNU2DPlIhNP/qet/i24zyfFo9SlbGmjfI=\r\n=DJ0u\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{"./cli":"./dist/cli.js","./repl":"./dist/repl.js"},"gitHead":"9cae68a37ecb349a2b3ba99e8979c954f3fea946","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"Node.js runtime enhanced with esbuild for loading TypeScript & ESM","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.0.0","@esbuild-kit/core-utils":"^1.1.0","@esbuild-kit/esm-loader":"^2.0.0"},"eslintConfig":{"rules":{"@typescript-eslint/no-shadow":["error",{"allow":["describe","runTestSuite"]}]},"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.0","execa":"^6.1.0","eslint":"^8.15.0","manten":"^0.1.0","semver":"^7.3.7","pkgroll":"^1.2.2","chokidar":"^3.5.3","get-node":"^13.0.1","typescript":"^4.6.4","@types/node":"^17.0.31","cross-spawn":"^7.0.3","@types/semver":"^7.3.9","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.22.0"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.2.1_1652874022007_0.40991532449320034","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"tsx","version":"3.3.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.3.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"0b558314b2bf41e72aaa78cead6aa1e2834f225d","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.3.0.tgz","fileCount":5,"integrity":"sha512-fOzOyMZzxuOSUMg+QUQrO69SVPxFYqpJJ5N3dYbRnLhMixfhcLgx/Tsq720R5zgM8IqNz+c5i/cvTrEYjCHiuQ==","signatures":[{"sig":"MEYCIQD11ljQBeK1omQSD+NZEeo7AcUxPhf3Dq5aqU5kGzTV9QIhAPhT8TiKq8H1YjfG4m48KNIsyYjokcptinmZNUcSs/lo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":119891,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJihRpKACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr5IQ/8D/qepdIRSJ5VoVvOruFQ6Mqv4FjMWHTIR17ug5VNtsYZkdAp\r\n1vaLKbIL8T4pXsea87X0n9ZB1kQC0VEsMvy6NSyDeEG/xqNUI8FRsu2wdx1+\r\n3Z+b/FcUHR774lDtKcrl4lBN/tyZooNggtvJ7EgH8ib/7muX7jUJbZwIGscE\r\nF1GFVvlQ+C0uX/+lyMxYPHMgmE5xd/hSFv68YWwnBvu5WN6gZieI/FYDporZ\r\nlpSGQcOzO1dLG6bU63szReMfJhbPbSSw9wViYbrFvf50b3ziZBqCfcvKLQyB\r\nxno5zlKRg2TX09cGhg/wim4OOwpuj6O1F2kRJ9q+EKAs8XM6ph/JTy7klrif\r\nMntC5OcKuTOLlHEp9GonPba1WpyMSOF8K12p3jdyxbGpLblssMaFo8Zg/kNi\r\naIAcaciY4Xjg1bZAVy/VCiFL+xoZ0lOqXaDj3n0VYSWmSf+qYbUiwuJRNb0J\r\nbGGj6rnB+mfdyqd/5RauWB/dBBjTBqvQkmI0z31JcpaqasEwYwkI9csA+e9c\r\nClcXEbrJ/WGLYIfah/sOuVvOe8yx0GZp8oYGCEc0biAVmnBFLVlPJXNfmdKH\r\n2qDIUo26Nyjb9V4+o6EnvvwIUlyZIzk+j7q2AU1TAcKKYjV+WLAbTp/6oqYb\r\nPGbBkk8Opw3pNPHcLCc8IqCaw0yJk2QVBSc=\r\n=mujN\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{"./cli":"./dist/cli.js","./repl":"./dist/repl.js"},"gitHead":"c63ab45b71b6f1aa326937ca0dfbd379ceafa2b3","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"Node.js runtime enhanced with esbuild for loading TypeScript & ESM","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.0.0","@esbuild-kit/core-utils":"^1.1.0","@esbuild-kit/esm-loader":"^2.1.0"},"eslintConfig":{"rules":{"@typescript-eslint/no-shadow":["error",{"allow":["describe","runTestSuite"]}]},"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.0","execa":"^6.1.0","eslint":"^8.15.0","manten":"^0.1.0","semver":"^7.3.7","pkgroll":"^1.2.2","chokidar":"^3.5.3","get-node":"^13.0.1","typescript":"^4.6.4","@types/node":"^17.0.31","cross-spawn":"^7.0.3","@types/semver":"^7.3.9","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.22.0"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.3.0_1652890186621_0.055119040294154154","host":"s3://npm-registry-packages"}},"3.3.1":{"name":"tsx","version":"3.3.1","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.3.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"61292c997a688eba193cbc321744df9c90d905a0","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.3.1.tgz","fileCount":5,"integrity":"sha512-YYaW4+MWtSsc659Olt1XKPl9AEWHTkcb3X1UPe7JHp1ykYuOWJcGQEq4KZYo2Q9lWgTdV4hkxW81M8txJ06srg==","signatures":[{"sig":"MEYCIQCPqJtscB3Jqz5liGhDVDZI5tO5k46OKg293uQJ/CrcrgIhALOYHq1RC7Cnb/p8SaMFqMUtv1nb4Ow2lH8cCY/9jlze","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":119954,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJihVf5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpCNQ//e2YiQugW0xKZwMLpCbNJp8TuwOTWs0kU4tRwx9wG6Ti+1opg\r\nG4i4BRwo4RKDQSJvsQ5k1WpFQ1sPEHD72D97gbt/edcfy9O37bOFD4Tn6HdA\r\n5TNpowZ+6NmN8dRctwkkmRN7+urXtvk2ujH7GhLDnWmG87GrPjQo8H/O2A9u\r\nFOGwBLcE2oZXUXsYibJvAXoRkvH0rrsz6sn6keT7FA1nAix5R8HA0TKryniI\r\nM7pg4xu9Ff3KK4xSfxEjyAc2Lu977WdDE64UmV8OCWGH+IIt6JzhoxA4OoUK\r\ndMiM7MuBKVxWnkUlhZoXcv6mELZISBWjlE8hEQxXufXxuGxhPtKaqQ7rYfy6\r\nsj8PRll8T+IyNH/PxlUkaZFHMCK8NOTOZ06Ps2f2VvYVREqxi+gtmWuazrRp\r\nK0tD5bVcxtMu6OMpGq8CIcsOIIfDlh9mrv6m6iQD/DsX1/E48yft9GYsLZdz\r\nghenXDvmqn3oJ9oglPEpHe4hMQYGTzF7Px+Az+VmEdks9ha66CX7gqKDdIQZ\r\nCGAuODGyJrux3z2CtxNUdWWkcU2U6nzPjy/CeJesJPubVZVE3JwayByqoCRA\r\nqvgkmxsjAyZPlSsJh67e+0hIUyTyqtXmpduk27Qy+74j4+md6/9hEiZkicB9\r\nF7m2A8Ek9M7VM8WtOHNFpSPYB3R4dTTMA4M=\r\n=AR/Z\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{"./cli":"./dist/cli.js","./repl":"./dist/repl.js"},"gitHead":"1273318a215091bdc9229cbff0f31fec30c97a0c","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"Node.js runtime enhanced with esbuild for loading TypeScript & ESM","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.0.0","@esbuild-kit/core-utils":"^1.1.1","@esbuild-kit/esm-loader":"^2.1.0"},"eslintConfig":{"rules":{"@typescript-eslint/no-shadow":["error",{"allow":["describe","runTestSuite"]}]},"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.0","execa":"^6.1.0","eslint":"^8.15.0","manten":"^0.1.0","semver":"^7.3.7","pkgroll":"^1.3.1","chokidar":"^3.5.3","get-node":"^13.0.1","typescript":"^4.6.4","@types/node":"^17.0.34","cross-spawn":"^7.0.3","@types/semver":"^7.3.9","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.22.0"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.3.1_1652905977383_0.5132793577997836","host":"s3://npm-registry-packages"}},"3.4.0":{"name":"tsx","version":"3.4.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.4.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"20aed3831464c0183396d7c4f7c813a8c8429647","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.4.0.tgz","fileCount":7,"integrity":"sha512-WWakMoC5OqUXvOVZuyAySyETjAZ9rJxZXRbbOhYXDCeHF95hQUBa07UwUFu1yprlnrJ/W7XWfA99YTNKO//KxQ==","signatures":[{"sig":"MEQCIHR22ZiFjuKrcM/rBiPgu7CcND2GFSg9ZzIcS9Wka4nTAiBTcwWRUtvXfwLZf3WcecRGzqfzc7QVap/ttI2ylczdHw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":120919,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJihmHpACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpkPhAAhxiqNewAVNUVM/pNl1mIMFJ35mw7866wQtjU2VPX6hWtjKX/\r\nKSKb0aC6x1S/a8pk66xEtpv7ClSgUX/LqiilgyGzQeFQjsVY7Txmd/04Pzd9\r\nA+TbsoUjV52pIWNbDOgxl8nynhsIBCJSMELV3RZ6QDUHvWNhq7aAQgAqVKbE\r\nd0LSyyTsdB4CkXBSQ5miAvafAZ5H8r25P1gGYtIlcAOgAHVt2w0wIOLXyIfu\r\nj/Ym5nx2CzblhYGCPDSQp5ABqjJVLoCUto9tzALCH7YKdejvruiBfJuDl8Vv\r\n7niQcP+sm/D3E3ryZ2J5tzX/fMZUsInD5WcdJZkfvyjkloehhEd7HB5fJBmH\r\nb0quVysJmMbZEpPpFZg2zzPcSvRanDRkpML/xhF/j09sN+QrjZ3PTXpLUkm/\r\nA+qLQCEcv3SFwErT1L8WMNfFXQb10mhGPXaGuF5RyNOf5V6YQB5/P2mvOpJ5\r\n34T+yw3/YaiIycJyDlO0TbF5qBaL0lsmFsAsfv0WLR2ucsLUyvVsBJJlMM+/\r\nOc4D5gSzQReI68ZXKNUr6fhAG9r+rhJJwTj7VIT0oOp+6k25rUyMjqogWGok\r\nW1x6YZYMMdAbGwH4/xx6Zl8Aasj6u892bBTQifx6ugfchHjlCS5/p32i9pif\r\nxzaoMDNZfpc5eFAevHX0Jqu/zE3s0OjkCKw=\r\n=D/Dc\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js"},"gitHead":"a271f4d1773bfb0ffdd072aa36e996c6e8602b32","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"Node.js runtime enhanced with esbuild for loading TypeScript & ESM","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.0.0","@esbuild-kit/core-utils":"^1.1.1","@esbuild-kit/esm-loader":"^2.1.0"},"eslintConfig":{"rules":{"@typescript-eslint/no-shadow":["error",{"allow":["describe","runTestSuite"]}]},"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.0","execa":"^6.1.0","eslint":"^8.15.0","manten":"^0.1.0","semver":"^7.3.7","pkgroll":"^1.3.1","chokidar":"^3.5.3","get-node":"^13.0.1","typescript":"^4.6.4","@types/node":"^17.0.34","cross-spawn":"^7.0.3","@types/semver":"^7.3.9","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.22.0"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.4.0_1652974057568_0.8857279161621041","host":"s3://npm-registry-packages"}},"3.4.1":{"name":"tsx","version":"3.4.1","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.4.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"463808d768673b63f0875303052fa14909cd0bd3","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.4.1.tgz","fileCount":7,"integrity":"sha512-ksemgcHyR+35wmPWyWBnZPCyPjt+vZj0DIo7Ze6dJzA9zoPo6LVRx/JgJ+hsGgVhFxLsZhTgqORZQORc2WOzKA==","signatures":[{"sig":"MEQCICwWf2aRJa0jN6ksRS3ZrnL8SjO8hi7vzmtWDr/OM/9CAiAYZXE0HZKxmuYMGU7cWonZ53qduA9QiEZnK//16LrV1Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":121217,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijYYQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr6xA/9EuOt2w5tmbV5kRfYj+WZ/qJQ/LqtZ5xSrULMzsQxYilfkDw5\r\nvHrAprwSCg3ddbsgWjLg9dRFOJvAcrhowV+/WqlShofVV4uYdHYeOYUThSGn\r\nUtTdkjG9hSjqn1EpSBk4sRopT/dI9IopR1nfsLuey3pla4VCwVVo9owo6hnD\r\nTt5FLFYaZuvRR/uNTtTsadVoR4MFlPeD58KWeq24ihTxLaNWuMtID9xhAaTL\r\nxX0La/VJJ96Uo8rR4/MGuSvWfLlxkM6riBqd0Fw1aNsphqU9SGgUjoXYfRRm\r\nY3mHxONMVgue1xAI0mkCNIt/lH3/3A8fiaWFfTYYM/KWNERxAa15uNa3OSgx\r\nug9gyDVhk0fb8u4CFFsZibXwaNCxHPDtQTjYypg/VJHCs46IQBQRKqtJwr4z\r\nY34jXFoUcHs/SUFYuQwlNcC/hUUBdypeS9sTcu58hrNsDRHA48dWgKuin8QZ\r\n4hbzg9/VtpFwo0br2LcWQ23bB2OWHRiAOsYsTp4Of5hjdeBuRKSb7btBIuOl\r\ngxl809N2D7eLImKGp0UZOhUdLHDVOsNEw2CJFBkIJeUWoXizBUQC3G/VF+42\r\nOWd8/z/Dncy449jorXyD2QKpF0J6/7VOHpEhy+MOJq4zkLH0iRuYijoUkQOl\r\nXeSAK+xsq7umLVvvnh6dgTUdzuTqVbitvRc=\r\n=819q\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js"},"gitHead":"85f52194ab466d92283a2a520df2cb85db18eedd","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.0.1","@esbuild-kit/core-utils":"^1.2.0","@esbuild-kit/esm-loader":"^2.1.2"},"eslintConfig":{"rules":{"@typescript-eslint/no-shadow":["error",{"allow":["describe","runTestSuite"]}]},"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.0","execa":"^6.1.0","eslint":"^8.15.0","manten":"^0.1.0","semver":"^7.3.7","pkgroll":"^1.3.1","chokidar":"^3.5.3","get-node":"^13.0.1","typescript":"^4.6.4","@types/node":"^17.0.34","cross-spawn":"^7.0.3","@types/semver":"^7.3.9","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.22.0"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.4.1_1653442064593_0.7210398853908122","host":"s3://npm-registry-packages"}},"3.4.2":{"name":"tsx","version":"3.4.2","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.4.2","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"6197b57a07dbaad5bcdc7e1a5a1be4fc88bdb64d","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.4.2.tgz","fileCount":14,"integrity":"sha512-Rd1gm2noOUiVynF+VFxo4bVBNbzS6haWKWtlQ0bEfCLLEqm+GG3R98D3Rqk6foQ3NnJk6JAWOx1ragwcAPj4Lg==","signatures":[{"sig":"MEQCIHa7KP6UKJuDYkYj+Xus2zOKMo2og3QnjTQ0FsjU2Yz0AiBn6gTqAKmyLXdNOX+90rTFi/LkgrAGjBYGcisqiB1IbQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":236777,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijpiJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr0Kw/9Fv/Yyi8x8HYIwLjz/qvDb9cWufJt/WZlMfsJh4R5UNM6EHJr\r\nEgzGCquQ1+jW8CKOR1wxwndIJuiQOm5uP1rvXnS9/teaRi3L33g6dLoNDBt/\r\nUuk5FDCqYef5Pwv3q9IkX9WONbA0uOqdyUL3V3helFQNWB2daV1IGFrGSBOF\r\n4GzEm8jrjbW5qxRIVNoCxdvWHXCvuemoEqeyHyf+R5c0FslftAkj7R3l0qcm\r\nIhWP0YXuPSKJT/ILgVetYGhFdcEZxCS3Ql3M0esQl+bGZO7AiU8AHSbknp6u\r\nvZYpQ5JpktmuEOTRNIEZjYIud58pRUW3WZ1nS/uBxp8awf5BKCibZvDJByMR\r\ngdIlXhHbXm0oxyFVmCY1mxcgg+hvb5537RqDo9wk8X8MsN2WsIAzYVPtTgC2\r\n/Uz1Ah6H9ycbIsRsOU/nCwv3RT3gjJIy/6PMlYC/WNCg0MC2/JS0Zp0cLygM\r\nGg18Lr4ZiOsT7OLMOOwW/w9nywt/aBfvyNquxFonX6clZNnwuCt/YhbAXPqo\r\n1yldz6axUHAhpRUUnXRk7I5a6lUffuueFN3Ikh9u1P0corSen+kBf/I7hcCb\r\nj4wfxswvxlaoGH/iEsqwWu8yYNvpv2ARQrkTho5nlnQusXkQTTGVssj9p8ZA\r\nbmBeahlZ9tI87hDn7isMD30EfKHemQJ12kE=\r\n=pH9h\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"3e81d19bf759b512eb74360861f5abeb9d638ef0","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.0.1","@esbuild-kit/core-utils":"^1.2.0","@esbuild-kit/esm-loader":"^2.1.3"},"eslintConfig":{"rules":{"@typescript-eslint/no-shadow":["error",{"allow":["describe","runTestSuite"]}]},"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.0","execa":"^6.1.0","eslint":"^8.15.0","manten":"^0.1.0","semver":"^7.3.7","pkgroll":"^1.3.1","chokidar":"^3.5.3","get-node":"^13.0.1","typescript":"^4.6.4","@types/node":"^17.0.34","cross-spawn":"^7.0.3","@types/semver":"^7.3.9","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.22.0"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.4.2_1653512329298_0.8678739244834315","host":"s3://npm-registry-packages"}},"3.4.3":{"name":"tsx","version":"3.4.3","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.4.3","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"c9a30c85db250003c147eb47c2251d5c0f950783","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.4.3.tgz","fileCount":14,"integrity":"sha512-2joLNBKxg6Jn+qEMlzMrS2K6uxBG2faQNX7J/w8cO56ysCxJPbfeyWX5Qxbv0l8GeCkkc0Q0/wlH9eEI5LkZeQ==","signatures":[{"sig":"MEUCICxZwZVJsSFcWSTyAGohP6PYdmpSmwXJwIy9DhQNuJRGAiEAhGy5TUYTH1CqC7UKIIPi3MuN4+YsNQty5x5zQg3XcNk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":237544,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqrFyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp7kw//auQnghJ84szIA6cM/x9LKh+aHyZN5VhCKfWqJgLEjYdfuevv\r\nERYFNuQAIVA2Z04mbFyNmlOEYCudFBoAdUU/pl7P7KNxL+ig5Ar5KzI3LO4g\r\nOO4ZfRvOoY5wD1S0Lav6ZhRS6YboncmhknSR+eTG5yu2j/IDCevj4MY8mfN4\r\n/pSlnRwzPEJYbPcZxo/Z+pVGHKjnow7NSTZ44TlekUWa2fHqktSvA8U2jAUZ\r\nEwdGp2Jhxe3y5efdLiKOgBmUi5CTAMlOWdAOjFMfeWYpMI33C4GeywA9ceQe\r\nKGZ3FgVIFRP/aSWyAyXPoMFV3hs88OgcazXSlQ6GvmLUJ7vhArF/DUGy1p3A\r\nLhp3yxw9+y4859jPXCMHXKAuHc8dJFZl8qBbHKiUHqe24442O8Yba35JmwGb\r\nEjl5i9NQjA8+PBzjXk5T7RVZamUUbY+6SZOm59pyLG8IdvkNrxCTa9kXccIu\r\nVUTHl8mLDpVvrBpeR6B+CxMW9EHMl1ola6eS5mTF2TrmH4RNDvES92xLpM9D\r\nCzXnxE2nkwhvbXfmJe0ixiIlsE4GXA2OpeGGp5WE/CjAhRIuwM477GWNFhr5\r\nq5lfn+kQNgemT4ItzZXfsWTQW2ArKhB2ttfARXtKutznfRKWg6EPF665Kmkf\r\nm5PPXr1ovnpg12HE6w5/rs52QM/F4D+taTY=\r\n=TG8F\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"10e31f96bcbb762e03ca16618d47632af4ff7fde","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.1.0","@esbuild-kit/core-utils":"^1.3.1","@esbuild-kit/esm-loader":"^2.2.0"},"eslintConfig":{"rules":{"@typescript-eslint/no-shadow":["error",{"allow":["test","describe","runTestSuite"]}]},"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.1","execa":"^6.1.0","eslint":"^8.17.0","manten":"^0.1.0","semver":"^7.3.7","pkgroll":"^1.3.1","chokidar":"^3.5.3","get-node":"^13.0.1","typescript":"^4.7.3","@types/node":"^18.0.0","cross-spawn":"^7.0.3","@types/semver":"^7.3.10","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.23.1"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.4.3_1655353714017_0.6616207527762683","host":"s3://npm-registry-packages"}},"3.5.0":{"name":"tsx","version":"3.5.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.5.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"bc5bcc8745ff21351ff3c5af3194f6f8c09ef5d0","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.5.0.tgz","fileCount":14,"integrity":"sha512-hLqNvjXt4EjliUKCY2mJA+tTJ3WRdPpqYdU6Q76Maa4VJONj4hBa9dPtcyRJEPFJiNxoJ0gqMak9ki0zXioJDw==","signatures":[{"sig":"MEUCIQDVSQ4FDXvggNHuec4plU8r9C3/u0jnYrZTu5qhBeHH0AIgaBBEAUalwmiMPWoSp3juEl5zwAhBkSIEHJFHQw+91r8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":237544,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJisjuhACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoGqw/+N4GCw3AGbaOPRN+EJl8BDpSFvpdys72X9T3Ug1hsBfdoK+m6\r\nVthvKxCfQOj+++PSqikcS2fw5tDwH/6RgQM23fUtKwFfd8Bkd+Lf5lJP8E7G\r\nAUwn5SsV27GHVggg9262RG3r583Y5VC88MJPBW08OOLu9w5jTn2LpgoBw7vh\r\nAv6rkUNZexOdiFBpmZpZjkGWDtihX++rONgbzDdfYpR+Xpn+MiUpIB6nCrTz\r\npiuAOcT28j+Gl11frBjEbY/DikuaFY9zcp88DqCIhyOZ8cLyzlkQcjVfJdSd\r\nz3KB42ExQ3AbjG1ItAQSnP9/wSQjR3hpOxON84LNt/4EuThuGXbSmntUwkNH\r\nOKG3cQF6bj/uJN04sOty9fPmBSJPycg0bXHFZafwl+vRMhuCLqL9BM1IrFRa\r\nG/xyBMcm9MGvZavyb5N2O+GuhywmRt/qFL0tCGG+vJLOk6+q7OFCJGPmy9Wn\r\ncz8SukBed1XUmlAmrFfDUaC53b7jajDdxht+Gw6UTaGMzp7uWKmUMemtnDjg\r\nMOH5yFGGmFc1oFerDRRGJX7Gsy51lYnynFLTFzTsvQsez8bjpZd9UZyvgTbb\r\nEF9eTW3O/jxkLAIkrhi0lsWOMItawrZXrfE8KvYKTmDZjl2iuCJSzfLvm5vl\r\n6VKSNf9bDDHqQIoaCAX36RHmJNzwK2JyuNk=\r\n=pbbD\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"4b5531df5f31b1a7377ced18e418a670d6746a3b","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.2.0","@esbuild-kit/core-utils":"^2.0.1","@esbuild-kit/esm-loader":"^2.3.0"},"eslintConfig":{"rules":{"@typescript-eslint/no-shadow":["error",{"allow":["test","describe","runTestSuite"]}]},"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.1","execa":"^6.1.0","eslint":"^8.17.0","manten":"^0.1.0","semver":"^7.3.7","pkgroll":"^1.3.1","chokidar":"^3.5.3","get-node":"^13.0.1","typescript":"^4.7.3","@types/node":"^18.0.0","cross-spawn":"^7.0.3","@types/semver":"^7.3.10","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.23.1"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.5.0_1655847841257_0.0952574965941766","host":"s3://npm-registry-packages"}},"3.5.1":{"name":"tsx","version":"3.5.1","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.5.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"4b3a3f7ddcb16e7cf17cc681da789b10bf365c95","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.5.1.tgz","fileCount":14,"integrity":"sha512-g4XEV5uTHOU5Lq3Fv5CgaHapBNrlfXn6tRUMPYd9u8LVD7kNcxksasC625IkwPZQlmAYPSZ8W9aJWgnhAzV3zQ==","signatures":[{"sig":"MEUCIQDeypva4xAcK23OGgWKqJwxpxARIVuu7OZTytPyVYaB3AIgSu1S2DW3igT1YwNtpulJQrkU/7JAnWUIhp8O6Sd+SQA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":237732,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitMQcACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp43g//U6YAAm4YHLFXyOJaeOVsUwhSnTIVTeirkuB6DyYWnr8YS3sN\r\nzCSIFFBCIevD1pRn+lJmgQWgOICgfZ1qvLfMEluhy+E9pWRD/wSdn3BsazRJ\r\ntKzocEBjp7WoT+RzWJ8S3+VatiRNOiWdxr+OWa8+m6kP8xLXQH3P0Coy7K8Z\r\nnxIQISETEizBNl1x6+rOdJ8SxN6O/ODvFxDp3Y58qZMXCeVdq97JD/KlE4Y5\r\nuo8OU2NSDEt8vCZfPmb4aDueoZ5uTG8qBmCmWRIk5lkD5YzenTarQvm/w+KH\r\niVVNiR88XWzto8yKHyYdWT5fJrdooOWOVBroJwIWw4RXJjuDLCavqJtRNSEf\r\nodHGPNlwKzGPO/1IDSSD6rzcxKfftczwzcE3UYiMAElDWLkxDfKiXJHcUpXx\r\nfkefawvZiqZNhbE9sXHl2vcI2MTu8IldrC8NH3I7tOfUk5zI/v7Kp2lwoASs\r\nMyjI2B3/y7Y4M4/ftrX1mFmxdtk1ciZKQz7q+B5SbNPxI2a3yRlXDrzd04Up\r\nfps+Hqzd/WGJaLm7mIn1/3xT4XpNB6SVu/NIE2jlaKGiKAZU9JbgQkeMngoy\r\n1R02+uoZiEc1qY0RIVxM3fRrMYSmCAq3zRMCUsgJDEQNTACR//quifqNDw8+\r\nQA5C/8AigFOdnapbJhEbryETaJa1kJqYMrI=\r\n=PjuM\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"2609f2d63d0510ad6b8acbb3112f31b1c49a7827","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.2.1","@esbuild-kit/core-utils":"^2.0.1","@esbuild-kit/esm-loader":"^2.3.1"},"eslintConfig":{"rules":{"@typescript-eslint/no-shadow":["error",{"allow":["test","describe","runTestSuite"]}]},"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.1","execa":"^6.1.0","eslint":"^8.17.0","manten":"^0.1.0","semver":"^7.3.7","pkgroll":"^1.3.1","chokidar":"^3.5.3","get-node":"^13.0.1","typescript":"^4.7.3","@types/node":"^18.0.0","cross-spawn":"^7.0.3","@types/semver":"^7.3.10","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.23.1"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.5.1_1656013851947_0.8969006465378093","host":"s3://npm-registry-packages"}},"3.6.0":{"name":"tsx","version":"3.6.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.6.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"32b6fa3d1a348fbd2ae1e6e6b98139e4acd8178f","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.6.0.tgz","fileCount":14,"integrity":"sha512-XzqSxPmyJnI7ZtEX/CLE/CSDkqbL7dK4jwtJRIZpV0EhCxWqtb1OqJPlUc4CVS3/MFdpt8ZxLpvPFohWRTHbzw==","signatures":[{"sig":"MEUCIQC/VftI1t26ZeA6OuY6KwWLH2YLJTT1zEPyQYSrRDg4ZAIgEF9F8QHnZC4gzSYjs1q1fXfIExUWFSyJv9diNpDY1dk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":240094,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitP7CACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqiBA//aN58qGFhKT4wza3jSZYfaPMAPtB9QNIUISx4eHx2fGeOJ49q\r\nL65eFEauyt73TidYn1VJrJ3i5hbQp8o5aWksZalYJtMzowPhqjwnfQRJVuCm\r\nco7Ifm9zymkP7E4UIsRcv3u5B41bn+PZewMvrgAC0yCnTBha0rtf/f9m87jn\r\n3IlnuJrLO5DXR15yza8rJQdwP0j6XA60qbYBtCKKsJhCzZtMLYvUwhiM3u1Q\r\n1jXbfiLNtiNEF2AjvdtBL7C/6R9gbiX0pqSPJmggv5U/ELsyMhufNBGQEPxU\r\nf/dIPd1BxupmyA+IBkCDE/16OQoGyO+R49Q/l6qsXe3xQsxlWFCHB1KeiMQt\r\nbwbQ9P94y1Nty6cisxmKAVY01GjiO5OHJSHjeiMfnaURPTDDyH4LhIhiDkHc\r\nEmTE7ug8wXTLm+QkFdgLCe0Ezq6eByc8wJoA2sGVntCmsA+Sl+cJU0QQIzvs\r\ngcVebljrPT9JJoTlKgrP9JkMJJaGNzD9iN9tFiz0b+MbjlWRp6820nQ1zPwD\r\ncdJU/mikO/G0I4QI7bY1TeFG780IFH6EF26i6jVEgp2E5XTYvV7+J9JbXRJB\r\neyRKaDQhV+Wd2NS7xG3jsF6g2CejciJuDfnRsG/HZ1Z5besuDpXFJ3n5MN3q\r\nn+EeZ1tLzHUIrx5ZCXAaHCRngwemruIlwMs=\r\n=ujtV\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"9d7bb20b365e4515244f3a92ea9408bce6878948","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.2.1","@esbuild-kit/core-utils":"^2.0.1","@esbuild-kit/esm-loader":"^2.3.1"},"eslintConfig":{"rules":{"@typescript-eslint/no-shadow":["error",{"allow":["test","describe","runTestSuite"]}]},"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.1","execa":"^6.1.0","eslint":"^8.17.0","manten":"^0.1.0","semver":"^7.3.7","pkgroll":"^1.3.1","chokidar":"^3.5.3","get-node":"^13.0.1","kolorist":"^1.5.1","typescript":"^4.7.3","@types/node":"^18.0.0","cross-spawn":"^7.0.3","@types/semver":"^7.3.10","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.23.1"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.6.0_1656028865853_0.963049345710731","host":"s3://npm-registry-packages"}},"3.7.0":{"name":"tsx","version":"3.7.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.7.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"a40b9c2d5e6c81d1c6390a4d6f59daa245c6cefd","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.7.0.tgz","fileCount":15,"integrity":"sha512-cYPixpDs2AeCjhTspIeCjgiRzXTnIeaYrQT9jkvqlenxRYZpT7cLSRR0PcWUqy8VESDjkTI0/HkYW/qWC4Sj1A==","signatures":[{"sig":"MEYCIQCqlL/J2Y/3rr6jm8fi1dQbOsomSzIi/nKU97P3hNgHbAIhAPBPdDn3TsjKiEbfOhpiyFGIXNLlVWcpUHasYXXY/0hK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":243690,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiv9XEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp30A//WhM8IjUv96DI/O1UPbO3jtW95lAXqMrrIimNPccEIas0r1dT\r\n6qTNPCL3GMT+bag73tkDYEo4sd+SevHJ0/EHphtzjE50sWC4tBcxLL6SMzqT\r\nZam130L1rcCKxQ0ANZtRIm8QeeJH3oj+oYo+0jcv+qMYNYiTRc3VKy5mxce2\r\nLl9lDAsvVijvsg7qRaPQCxZuqxp5L7QwD0iUk/d13l6eVIJPEWqWM34dyqPP\r\nngIXDubXaIzlGP0gmjCT3XYemB+etFj5o4pOpa+iBH0div5YDNtlWiDELIF+\r\nfHyqiFHr4uqJnHjFsUd/nho0TfI4z/rI43ZSU5xX1szmqmJ7i3BnUbwo0IJk\r\nmqhHIHqH6RzW/h5OmTR6ugFs3MAolPya5lvdAwrE/zXNk7GLzHJCwTRUJqcn\r\n1rZue1642DHIx/gGkZEqnbN1afA3hB8oqZGjpvXiOAa7U3cySa6AAZEPFyZh\r\nVmkNOvn1NyvNEqRYBsulxnfYEyCe2ZbZTglY/2LpfzroEyHgAk29esh7ilwS\r\ncGokKJkp/XIKBnKEIYAqpIJWxn4aUahv4HvBmSazOvjBxvBK5AaEoqnse1hK\r\nkT2dd+UnyA45okU9CZA/wD2I5V23LprtPrn1vYbDiAhMeBIQc+R5/q4nx7MU\r\nMoJ88DYjEmKVEsucz9O1qpgQ/b9kKAK4x60=\r\n=AFHL\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"6fe25249679e62a2f67764eda2a816ba0de246c0","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.3.0","@esbuild-kit/core-utils":"^2.0.2","@esbuild-kit/esm-loader":"^2.4.0"},"eslintConfig":{"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.1","execa":"^6.1.0","eslint":"^8.19.0","manten":"^0.2.1","semver":"^7.3.7","pkgroll":"^1.3.1","chokidar":"^3.5.3","get-node":"^13.1.0","kolorist":"^1.5.1","type-flag":"^2.2.0","typescript":"^4.7.4","@types/node":"^18.0.0","cross-spawn":"^7.0.3","@types/semver":"^7.3.10","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.26.2"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.7.0_1656739268392_0.06233897353216533","host":"s3://npm-registry-packages"}},"3.7.1":{"name":"tsx","version":"3.7.1","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.7.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"36b76628c33abc8cd9cbab60c15a00e50c631f22","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.7.1.tgz","fileCount":15,"integrity":"sha512-dwl1GBdkwVQ9zRxTmETGi+ck8pewNm2QXh+HK6jHxdHmeCjfCL+Db3b4VX/dOMDSS2hle1j5LzQoo8OpVXu6XQ==","signatures":[{"sig":"MEQCIHjD5Y8O18EgJAq0CHMb9EoG/Bz4Pc8Wyzv3TYRa3kmCAiADUG+wsSSva5yt4PrP2mleH5y8g4RNw/qOEwGM41H0vw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":243802,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiwJJQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr6+g//WYQHTVSc123aOIQlIkv6gck4x+xrru8zC4BwPwgep+zZ9Xeo\r\n+ryzoETBFRYAsP3BLGS9RftFRNotX7GnTfrwQPVjTLRJeyqGImZ+STwokLN7\r\nDNxqoiU7DDdwwVnPhgQa6xdplL4hNiXUOv0vQZ9gW8n3nBxbJRqtJHUDEgYx\r\nqCv5sbQCZwrCupZVaAtim9zRpEzO4+3jMhumIkl8SsESzakB0dHvervWl0lP\r\nyXOK8/Gjp9kFqRUeeA8sd6UviruXlINI9GyyDjjUJIakakJ5AMvsiVmCXUY+\r\nwuKSLAlcgqF2Uc2sq+UOn+cp4mFkVRWQhtwmCyqR0bdAkmASN4mjlZ5g30Mt\r\nblR1xkhVpQqFutlbu3/Fno+vfBavm5qvXG3cS80HeEeG/knANQ6SNALgnX3c\r\nF+N37vWaULbvsaSwkZMOWE8Gy4y7QoG2CwnmqrHcaMCkcY9wSo4US6K6Ql69\r\n5qzqyRnQqchhfh9gupXNsWTQTtBBk9JFs3x4NGuwjhnhzlsQlpaVJFKDP8Rm\r\n22P61fEuz0le0NpKujxxv2K9LCnIK4NGu873YKXHhhmetV+JnP06GynK21FS\r\nYvrGqZoDZqLX0IIZ+T891G3enmtFZMGOqHsokgTw4B19a2glaqhF2xPSe6tb\r\nJ/SVtTIzy87fboxdsuq6YtjO8Z5K7urvLzQ=\r\n=Alna\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"30c56dbe74ec4c8c8e6b31ad8bd40cfb1002eecb","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.3.0","@esbuild-kit/core-utils":"^2.0.2","@esbuild-kit/esm-loader":"^2.4.0"},"eslintConfig":{"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.1","execa":"^6.1.0","eslint":"^8.19.0","manten":"^0.2.1","semver":"^7.3.7","pkgroll":"^1.3.1","chokidar":"^3.5.3","get-node":"^13.1.0","kolorist":"^1.5.1","type-flag":"^2.2.0","typescript":"^4.7.4","@types/node":"^18.0.0","cross-spawn":"^7.0.3","@types/semver":"^7.3.10","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.26.2"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.7.1_1656787536501_0.9416828406052238","host":"s3://npm-registry-packages"}},"3.8.0":{"name":"tsx","version":"3.8.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.8.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"40528c8e5d44fa98877db9dfd463b46fb1c00a23","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.8.0.tgz","fileCount":15,"integrity":"sha512-PcvTwRXTm6hDWfPihA4n5WW/9SmgFNxKaDKqvLLG+FKNEPA4crsipChzC7PVozPtdOaMfR5QctDlkC/hKoIsxw==","signatures":[{"sig":"MEUCIQDRS1oapfWK9SVsvXzYLdixNGQ9C98CB6c7Kr7AhvcY9gIgRVfB3I6lr/3qMrmr3wJa+vbCd7u35CXVJxFPU1yacao=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":244014,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJizhhHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrVjQ//cmxCOKcBT74+8fCBDuA3RydAt/7mSSqmHvIKoZFJ2ShLt4x/\r\nIy9xVgxn+VPdI9513EsO72zjJoa1aetBqoMbnNXSMST4i2zTumYPP7CBO5MH\r\nNcTyGRlPTOTcLvfNqsPh5fNwh/W99u5JgDKjq1AgHXdu9Aq9Ma1Uq8Fg3nIs\r\nS67rRsbk7kzaSSpM+XvnSceckd52z/RtqNgu54k4YZtRXtWKael320QKaZ82\r\noVNZ3VATL6523k9gAX0mt1BHaAIvScAPRJ+qcDLcw8Wn2zwbvQGIMD3XkojQ\r\neac8Rezg+WDYAXjo1SjQLDhFyI4wasCCKBYQ7KHflq4iQFDKG2YIcIAzoTUH\r\n8QGO5qyz3n6YPc7sE0EeyKM2NlnipfLd2peleMbsrJbobM9nCvgix3YvApVu\r\nVqBhM+V9iVfqzBsNTuyD9gTqRdW7+EqocKoPBhDheCAuzYmQQlKlRpVkVljI\r\nb/H1b7NZAEi8UQ2FMpf67mAFmrTXpGAYnCea5c+Ou0S9FEZDQu82aBxB8kCQ\r\nyu3ANv4fMQPpA8ZWzOwh9sUliwoWgD+dV0gKRsu+476lVPS21Q67roT8oTNp\r\nhEs3EOaFhyIMh3KPTD2ybTgIAJ5cMguuz529cFbyNVGLLEylbDl6afheeQD6\r\noe9g2x+uoq8aepImzpIjwyj1KbUt+xmG7nc=\r\n=iHgO\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"a64c8be944a3871d1005c9a517da7a6312516dce","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.3.1","@esbuild-kit/core-utils":"^2.1.0","@esbuild-kit/esm-loader":"^2.4.1"},"eslintConfig":{"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.1","execa":"^6.1.0","eslint":"^8.19.0","manten":"^0.2.1","semver":"^7.3.7","pkgroll":"^1.3.1","chokidar":"^3.5.3","get-node":"^13.1.0","kolorist":"^1.5.1","type-flag":"^2.2.0","fs-fixture":"^1.0.0","typescript":"^4.7.4","@types/node":"^18.0.0","cross-spawn":"^7.0.3","@types/semver":"^7.3.10","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.26.2"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.8.0_1657673799104_0.0922852970082586","host":"s3://npm-registry-packages"}},"3.8.1":{"name":"tsx","version":"3.8.1","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.8.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"b23a362859f73a6592b12b2c8c537ed78ab29850","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.8.1.tgz","fileCount":17,"integrity":"sha512-YA2fDf1V9j/6qX/QSnapMmzulbqlx7FeVL6d9ySHDJoECkslAlZO38UuyFCiNPjam74hbyHbJfUF+n2ZT14KDA==","signatures":[{"sig":"MEQCICnBZGLKGxSyL2p9Gdo+NEhaevnI+pxtMHzg+ZQ9nA5YAiA05eFrvj0vDG0jc0JTm3K0tpczEOXsU6ZcILwj+gBHtQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":241676,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi8GImACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoKmw//ZOoF7SHdiXw4KxzqDfXACJfxovX0H8hgefh4ijLPsHmBcBDF\r\nvkFexAbdGpBEFx4cYGMagtLLXNUInACFFYHk9Xw4v1kED/FQUiJi+F5Z59oz\r\nxpSgbX7ph3SLvL3QPYZbtARZa5028dZfmlo8g7rzEJHm1IVbE7fzRNkxEyun\r\n7DIZjOAgnUehzyFAiHS0ZagZl2Y3pJlhPA7Cd2cMsjFiE+cuVNuCCewyNASu\r\n8YTXnnc04lOkgLRzc4212xiCcKejRRv6kM/tZgT8nA8mZvtm3Zde1oj//A50\r\nRgfAO2dFLzGProjkJyS0T78vhJF6tigZ9dagI5kRGcv4HxcHQ3qbs2jUBdxQ\r\nxvsGokpaMBqKt1z5zcQq8uWX43Oe5R+a9pEmEaM6xTxQP8ECl5FSueSu4Xel\r\n9Glhu11fsnqTA7azZVAIWIugEdSqt15HaUv8ijO5e78f5yWLtK4qCz09lRLU\r\nTFOmv8wH1KPWmA/saTlbRyt4DrCOs89By9M78V2KSUVmewFGeEOFUSW0MTA/\r\nIQSLZKaXb4NmtBhHPcY/LTZxpx22/4IRSlNj9wjc6b+etkJnAChdVZ4kRoPR\r\n+CpQ0z396l/0FObQG2DJVbxnHbCkZYn/MW5Wa7ykD8ROJFsJyuKzpZPHpE4S\r\n/MgiMEC2jCNwxBfWPmzCng6867SbYraEHOo=\r\n=M2gT\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"af38265c171ee18b02fe3749354268d9ed5f4fe2","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","prepack":"npm run build","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.3.3","@esbuild-kit/core-utils":"^2.1.0","@esbuild-kit/esm-loader":"^2.4.2"},"eslintConfig":{"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.1","execa":"^6.1.0","eslint":"^8.21.0","manten":"^0.2.1","semver":"^7.3.7","pkgroll":"^1.4.0","chokidar":"^3.5.3","get-node":"^13.1.0","kolorist":"^1.5.1","type-flag":"^2.2.0","fs-fixture":"^1.1.0","typescript":"^4.7.4","@types/node":"^18.6.4","cross-spawn":"^7.0.3","@types/semver":"^7.3.10","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.27.0"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.8.1_1659920934719_0.021402197520851596","host":"s3://npm-registry-packages"}},"3.8.2":{"name":"tsx","version":"3.8.2","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.8.2","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"5522dbe28890b63dedb659fc86fb9c5224207c5e","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.8.2.tgz","fileCount":17,"integrity":"sha512-Jf9izq3Youry5aEarspf6Gm+v/IE2A2xP7YVhtNH1VSCpM0jjACg7C3oD5rIoLBfXWGJSZj4KKC2bwE0TgLb2Q==","signatures":[{"sig":"MEUCIQCFFJjP2ZvLZ12MVh/jB9YmDJzQ7AFf56O0jexKZEwCfAIgAIIf27nKdrA3CG0YLiWDZPrEtJX50YGFmIqyACdSEOc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":241744,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi9TGkACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpv/w/+LK3D1F2wFmAdAbShvDCBUHAf0gLJiTuflt7sY2JeoIRv3COT\r\nL1RnhUjMB42ckSqKVrVvCzGqRRwHoMOM/1woeIgiSGHJiWI5XKgcc4hEHBD9\r\nDPYPKH4jKlsL8bjv1aP1o0C+NufLvDZW+GekeT5AJ5mHwSl+6h1Xms/BZZjE\r\nKPR+tmL8uM2CqDdbY67hH1raRalRjyXDFX2BInZYXIPHjcMn2318SAAIcOQi\r\nDFjO47OcZIU62vhx4BRzXf6nF1jxt2RZ4RG+7Ljeos9lwa/z6zoj922VMIid\r\nfs13fkE8nhcYsbQj8xpj6Ev2I34DVnCG6tZ0DcC27CI8dfyiSBGBJxOXNddu\r\na0nG8EhsfHxLGnrbf4iiYzPDkq15tTDh/+tnN5F/dbd1gS5l8gN46eR9RmGY\r\nXufGPFVZg5DDHEYTIkdT30gmctpeYWpKBeVzSrsCINErr+u2qKBl65FWEw0b\r\ngLO+OyowKv18Yp7nz97fzJKZpbsmXEPeRaJ7Gdj+MYbUR5noHjDzM/o4qsru\r\nJ/RwkAHvNJeyXQ+N5qi0DP07EyuX11Hk8edAR1Bkb8mu156e9XjbsNZZUQK+\r\nuCpwArVH56jrQeIhEZGCwSnNNFODk+KH7RcHFPvyJRs4MAPQHu9rFqtFWdMZ\r\n5uHDvQyn2TfRCAgKC/PHeMJUUUoNMk6t+6g=\r\n=o06Y\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"2efc7684cbcd973c73458751b252c13a2495d8c3","scripts":{"lint":"eslint --cache .","test":"node ./dist/cli.js tests/index.ts","build":"pkgroll --target=node12.19 --minify","prepack":"npm run build","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.3.3","@esbuild-kit/core-utils":"^2.1.0","@esbuild-kit/esm-loader":"^2.4.2"},"eslintConfig":{"extends":"@pvtnbr","ignorePatterns":["tests/fixtures"]},"_hasShrinkwrap":false,"devDependencies":{"cleye":"^1.2.1","execa":"^6.1.0","eslint":"^8.21.0","manten":"^0.2.1","semver":"^7.3.7","pkgroll":"^1.4.0","chokidar":"^3.5.3","get-node":"^13.1.0","kolorist":"^1.5.1","type-flag":"^2.2.0","fs-fixture":"^1.1.0","typescript":"^4.7.4","@types/node":"^18.6.4","cross-spawn":"^7.0.3","@types/semver":"^7.3.10","@types/cross-spawn":"^6.0.2","@pvtnbr/eslint-config":"^0.27.0"},"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.8.2_1660236196288_0.9171406565858067","host":"s3://npm-registry-packages"}},"3.9.0":{"name":"tsx","version":"3.9.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.9.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"315738e2fa19dc5f2efd05517ed8fd3a52461acb","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.9.0.tgz","fileCount":17,"integrity":"sha512-ofxsE+qjqCYYq4UBt5khglvb+ESgxef1YpuNcdQI92kvcAT2tZVrnSK3g4bRXTUhLmKHcC5q8vIZA47os/stng==","signatures":[{"sig":"MEYCIQCzsyldQ+Dd1ZtoIOZRsTWhnY/vtuiwXYi4Eme1nsFKiwIhANfp2bC0+Twk413V/dRGX1xvmScltgqDOZe4/jSCAAC+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":242380,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjDL+rACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmorJhAAl9+W1qE45yIqtbV2LfyPvUJFBSYC9Mh2FJpi085FOKwFdXgg\r\n79IxCb79rfwk3PNDusQM3uS4YMEyVS90qTTSMszXn3qolJ1ZZAFo7Sc6YRzC\r\nV6sJtahMfEzFZhqavyCQY2gIAVd6hE0vJkOsNdh1OxpE7BWforUYVM6HAekn\r\nqBHT7pTl2epatN9B4IuJhpsm7K/AYhkAYLiEuquoiLujlMhJQkh1tQFPa+p4\r\nRCa1SgV4wrDcGv4B9itEZiC5VOunpuOmzEKLDozqHuNx15iScHyJ9B9FZdY8\r\n1Zx8DKN1ZM2wgLD6Sd5rvLfD3A7shMELmtcohq8hGw0F1ns8eTIY2QsU5K5I\r\nzAmgXVt/6GxMD+pkwD0YN6viYFk+RCTd3rCyq0+grSSTUCjqcAG5yxwxunH7\r\nJ0XCCd2Ac3U7bYDK1IcbSLafNu9DUJl6H417U2QGXNzzprlPNvRpzaAwCZaY\r\naDMdoHmIUkvi5xKbNM36rpZ7qc+pDhzfGdQvtzwu0c9f1nJ5ptAoaQiERRYG\r\nOMnvzidTD2Dbx6qpu/Yz8qQYN0QaqF2TCb19v+PQr4CyDlOxI4k9vu2bmpF+\r\nTFA7P6plvSaaIXQKHh92zhlSnpTudbSfV1KeHP8xBp5g2Jkza8pj9SFBtNLB\r\nwVRVq61aPatzt+efetLJE+uyr/vBPCjq5lM=\r\n=djvN\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"afde7587b58e96153a7b243d4d0bfaf2f997a026","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.3.3","@esbuild-kit/core-utils":"^2.1.0","@esbuild-kit/esm-loader":"^2.4.2"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.9.0_1661779883675_0.5677834990504418","host":"s3://npm-registry-packages"}},"3.10.0":{"name":"tsx","version":"3.10.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.10.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"8e9e25333d9f97cb7f984366c36ee51c55e4fed4","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.10.0.tgz","fileCount":17,"integrity":"sha512-ojkfrn6mPwdubwVRh+LXj8qgtFSoSz2bxs2Ad/0cFdW1lru/JoyDwWfnyLygETMM8qFmi/97mCJY3IguUF2XdQ==","signatures":[{"sig":"MEUCIQCiOf26Ret+l7+kVvm2l7+5T0SpAeSU4sq9xlrYwyWEBQIgHeQbquvF0x+2ly/mNAzSEgIz4W3e1c+dyW5VFH99pgw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":243974,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjP8mNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrk/xAAoATsgVXOY+G+9oO2CLQV5dW84qzEG5kxAdy1j+T9cLV1F5GD\r\ntGeeSlOZnozjQifjdrzKwgkju7NvmXmKiSgH6t3qkcCHJOdTx8BAiBLw/PCL\r\ntErYt4hJ5JPHaatjZeLwPfR/iutAMs4WvgSMzOgGggOZRhDu1lAEQSWoUCX/\r\n6Io60ON7pSte9dbOWYrSS7Pt0ky33iJZudLYOekt7kzTzqhnsEN2mqHx5Ezs\r\nqZmSrs22vFCE9hfMqGECmFjd5Fipf5lCTLSNXqrU0qKmh+z3YvwgeOEePAej\r\nu8NiLzQ+6yhyom16Rm0OEiNQNdlLdixz6Y9AHrxLuqDRHb9Lo76NrrjnqfJe\r\nUlsccrRdt1TVBS5NlkMNeC1I71cK21mZjdxUncQHfeGPb0A549YAfVscvRar\r\ndaUrTX6be9lYS6wN66lQTWU1ogitz6j72XG+WAqNE9YnqIUAy2TJAva75wXk\r\n0w37Pjy1h2ug9ii6QlBQCb6yl9b6Daj+h7JRnaB0svo9Od9B68gXD/H07kBr\r\n6iHHqrKkS4p1skq/JNAWSHIi79+n2PB5weLoEFJ8H5Ezps3X1q0Qy1M9dMOx\r\nhbHTi6QxzSKhOWgXIBEchF7R4PS1hyicn18i5m8fjZcFpCLXAtP4M4rQEbvz\r\nPPCrexE+p2yzFk/BOaHFkcjAGw0lCOvljAw=\r\n=P+Cz\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"5062245a3c36822ed4d8eacd3a814611313e80bc","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.4.0","@esbuild-kit/core-utils":"^3.0.0","@esbuild-kit/esm-loader":"^2.5.0"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.10.0_1665124748961_0.9229936579560469","host":"s3://npm-registry-packages"}},"3.10.1":{"name":"tsx","version":"3.10.1","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.10.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"4ffb1229077f648bbf46c0ed2b098f4cd8dd6d6d","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.10.1.tgz","fileCount":17,"integrity":"sha512-Gh6xoW4xrdnLs6hYZydVHIQtrgmbZ/DbnJoLsYoI8MxhKAIyu8R7RyF0D5qg9UKi74Nmr4iSlijdz7Q43IGLyQ==","signatures":[{"sig":"MEQCIAYC6cD+UHL6DS4lrFbok6POTtTkuLEXmeu0MpZcZDmBAiA2K4ZbfqRY0P/53HbcB1NNSuc/r0Ti/NyA/OEr/+TObw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":244010,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjQAMlACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoUUA//fmCSNesZBJCpZZ0hEvY1/h7GxqfaEZnqSHADN3/v/kOrY1Bk\r\nFMTm+doqhyTJ3AxSGiozZAqUoEBSTmQ54hTgBGqeMZMJfK1TbQLFAV7FRKbc\r\nLIm8SgwfVjCeyl+zNOVXRshBGv0BQJxYHFb7tYMl/26vJBCfLDukFvSP6Y+e\r\nDzJdnA2pMkdq273hNsTE8sLaXUFVUQhmm8gzLRJKtgKnd1gJlltiLV2LpUdl\r\nRVPrRYUOsklHP9UnX/FaClalA5eO1MYRUt7Ls3KlDHH4duA9uq/6UBEr2Qfz\r\nf4+9kjNEdkh2auuUzITmiTZ1ZrCV8Mmg7oY2xUfvsAASAaUQL4mxZIw4eAHC\r\nxbOOWCFSXYkGUUCHyXIj1RJxOm0Bfsd5ca6VZMVK2PNdobA5XGwxhkI7gs/7\r\nqObvbqkAQe5EXCLXeA5dmuPcdGQaSoSYHHMlbA357W3hxhd7VgvkotRN3krM\r\nXMZZPBjhqHz8uXxf58yVOBYo+luwLs3a6gTrWaHqMT96sMY8ffZlX5s81wnu\r\njLWO5MofHbb6w8TZjBeLO+vt99pY7lzPw3QJmMkyxTMcQRnONssYKMcd/UYJ\r\n/11EjznGQvW1s9SQziDnWr127io3iFj63Z55roxWm3RhsYkbm28B0LyIJXB9\r\ntUZ6T1tud/GPFhChbMr3fowVr+l05SalBRM=\r\n=on0g\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"332f24261ecb22c8a35dc5ff7babd7abaee6afdc","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.4.0","@esbuild-kit/core-utils":"^3.0.0","@esbuild-kit/esm-loader":"^2.5.0"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.10.1_1665139493053_0.4996307503265214","host":"s3://npm-registry-packages"}},"3.10.2":{"name":"tsx","version":"3.10.2","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.10.2","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"0779f766b904c6d182901e6df6ea5ccaa2244645","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.10.2.tgz","fileCount":19,"integrity":"sha512-xqXmj8Fi8Cz5MpghMN8E6OYMo8P7JMCRsd3k67ORvteHy5j6iMIHr2GqiSY9QkKTzzGwWHalRY3CvH3l0dXUmw==","signatures":[{"sig":"MEUCIQC+c4l83nV4DqGuUl+jV2UBVugzDuSQC+xCjCStGQJLFQIgJcW42R99XDlLaauPVcWuiFpVa092I2dMP3NWTrAtQJg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":245196,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjTZUTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmorwg/7BzaS3r/m4veKDdQ9AduTyl+RTKVHQXL36bMXdyIhspkiNdAB\r\nVmNT4zrp0mJ72XdDo/d817F8/ipUMzp7DXbY52KBECf6DAf8sIA5zGWS7Ssp\r\nhYVsMYRAg0lgWnOdAajgIQlqKQA4wxmYQR+QLphmDpYkxGiioPsxH0f+h9Uy\r\nRBFY0SbRIVVTXVe2kjzNp98HnAxHJIv9lzSHS5aknh218snWGaYF/j5G9EBW\r\nhfS7QPKpQhxDAOy0ij5Bboc6LrPbxqE39/tHQhDo9Z4hH9wggXLWCOhlTRt8\r\n1v3Ad0OcLKKSvFraxVhq0gAEaC+W+QEEdrlruNfTuPMPcdzEe1x99rC2GyQE\r\nb3L9rJoGqOWXviH7IM/D6htPxjPnMXm2SKUbE3gDh0XiWLbp0FAdgCzXkG9A\r\nC7oAMSOe0WVy+IIjDPIX55FvBScDeu5SW0BRN9dhahHQzh++4jRG0DkQETAn\r\ndcKXl0i+x61+vOEXAJnU3F+rSqhwAt9QrGziA0Xd+k/WGRYFJuRhqua9DYTl\r\nZPt57f2RZiyF/2M6693sxasD+U6zh4uI6ovWY8QV9Gtwn5zmnsMrboR5AglH\r\nr9APY7YbtKrwHZlKUfX3mBnkhoP77VaH0JNa4FHpdkbydudqjWTofHOQyJOV\r\nqqfWZUSCp0QYpUsc8hrF3yoVgYLhVJG6yAE=\r\n=+R/9\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"5aaa60fd77c69d5b452ee5c2d33827b25769e5dc","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.4.0","@esbuild-kit/core-utils":"^3.0.0","@esbuild-kit/esm-loader":"^2.5.0"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.10.2_1666028819497_0.32193120997068436","host":"s3://npm-registry-packages"}},"3.10.3":{"name":"tsx","version":"3.10.3","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.10.3","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"33e5324dcde3b40fd2ab37b8dd1be820ad38f04b","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.10.3.tgz","fileCount":17,"integrity":"sha512-yni2/n09VMOihGw6fCTKAowvQZ7BOWRVlpW9RnJPDakoHqHIlpxWieUUr5fnQa3zWoR1Jb902Un4Bv/JsKQ4RQ==","signatures":[{"sig":"MEQCIBPpM780Wj098/OzzIw4yiYL49ic5yDEyWmdIUDpBlcYAiBKR5vEmbE0Vl36K/pmoyrPjvA2YsrbBBNAdBi1ExemEg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":245052,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjTgGJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrduA/+K6vnk62jD86g8Aw3buzNvSWM1paw8XRj/Azm2civSYgmIiY4\r\nPysFZ2nkSMfcvi1N02yV8EjapohLDdtRlLig36VnJRjNhNHDQdXkFjOtccNE\r\nKJnmT969HXRfQFCGE3sCLEGjYee0kFr9Y8PccdihlquNTKfbyir0blFRGWkV\r\nVqYd1BCS4WpkO7Di+/fWMWCoYWQgz/J4zoqW7NAvOEsgSzloSL9rVYkXGUvL\r\nI4+zJPpyyS2Nd7+sUNp/6OdJdKnL76fHNaou8qi5pQXjRUZdD4KjxNTNqwrI\r\nX1Y3qHE4Vg0W7yp8qXuh131ebrlN9X0+ggOlItzgi9WxufwphJe+sdcnmURv\r\nAUZcU91+3uAwmQoKC9E2qPjbLJ8YPcaorXfiC1UwgBBDn+IOZZkNPYgegCko\r\nUzdPtIj4PViWcncVqs+1ZCI9YVKshlUMd/jR78/ktY96QQO0SPX2GqCXt3ie\r\nzyccwtGZsqBRRQMFPZGuGNPwCX2z3kqnu/MIIWm79ytvvUoeNNMlQyPQwtQQ\r\nTEPi5eYdN/Q3DYxq5VBXvvTabHW9v9rK/Hiwl3CuLNvvUOvPJGAV1rdtAqXQ\r\nKqK2sjYuudB5BaXkfCBhQxxltfkFEHbwTScjA5BfQjy74MtWJo9jNRymqcVv\r\nVGkaqC1DAF/9/jOZOPJwExtN4lGBy9gMjYY=\r\n=aO7L\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"817b4a5a7ca289d90610ceb7ecaaa70bea6ea728","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.4.0","@esbuild-kit/core-utils":"^3.0.0","@esbuild-kit/esm-loader":"^2.5.0"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.10.3_1666056585338_0.9104802505894287","host":"s3://npm-registry-packages"}},"3.10.4":{"name":"tsx","version":"3.10.4","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.10.4","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"f46a876747f517263027e68121335bb294641b34","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.10.4.tgz","fileCount":17,"integrity":"sha512-sBxeSgUAPVqRgBPk6TY0yFiNDUlva9rA+Nj46oYEd89FXVD2MFWChFhybTtq7Qh1Ies/O75mQNwpLuO7m8gToA==","signatures":[{"sig":"MEYCIQDWEE7fuVwoqS0wBVzeNlJDvYmaZXVfxgRksSrAQIj53wIhAKbbwcUvMarPiWD9Gj7VFsdrA9GddPrPY/MtlosWPRi2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":245340,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjUCSIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpsuQ/9ET9aXdJX4Pv2Sm+fdI9gU+KtPOEwWASxjJNchfLkxXMSrzaG\r\niUGfU3kFfAj8d5bIXC9uT/Ld5ZUUzQ07dXSo+3B1wLhghJqgLvNtALO1LBas\r\n2NHp/ajMANhWyKbHHG9p/cNPhCfJ0y+jj/BGFzTvgAqDmBQRhYibOhJv9i+g\r\nfLnosHTYNjXEi+QZaacdA1OfNwRYJOqgubhvZpyGoD3OB2bxJA5t0sra9jpb\r\nFmN9vnygGhLQx51cnDeCroyYvAvcDML3u9EPFKpyvCUW++xQhSbfMDm3wl+7\r\nkGPpDIxYa9tiRsw9meMWgKSWkOoimSpeSbpviCHVckDMhkbp81HLf3r4SMdT\r\nqOnjvD50aYmFq7GBsrJsfI4jW1G2BttYhX+aJPpg8LP1pW/Fel/5EaX32Bvc\r\nDpbuGRtehCmHTIPTD+6GcJplcf2Zp8Pby4LnbC24EOnHO3vYeoleAUJORyGg\r\nxBM0Gef1zg59rv8NXxSnpRYMAiiNi4gg0IF3dZNIVsXZnPf/U2WFUaW4XFdW\r\n70CeL2az60CLaiENoVGYxxXGIHjFCcFcAbGrFDxsYpxHUKDh7cViVY5k+PAM\r\nNBX+q5jKpXdJGSefU6EkWTibONWGriFP96AYIDYM3SSltj2E9W0VYw+wIs18\r\nJE+lhfYsnX2fJ+XiDSV9CSLTT7qmdgVqF48=\r\n=CWS6\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"b7dddfb23307e2bf72b12006a447e0e0ec43113e","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.4.0","@esbuild-kit/core-utils":"^3.0.0","@esbuild-kit/esm-loader":"^2.5.0"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.10.4_1666196616357_0.8113410257214906","host":"s3://npm-registry-packages"}},"3.11.0":{"name":"tsx","version":"3.11.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.11.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"866dd2de4b4b26d92d3e132b9795db2f65db44d3","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.11.0.tgz","fileCount":17,"integrity":"sha512-q+q4xxu41+AafVwvAGqtNJ1ekPFd33ZhTMXvgIpHMqv/W89efwDRE9IyjhEAZm5iTHsshKaf1BYWSk789BrNCA==","signatures":[{"sig":"MEUCID4Gy3EV1GuF5GK2GigE1BCfMwbJEnzs4FlBrmi/JKkqAiEA6he4vrOaqUliK4qwxXbsO9ekiaHA48e2itksI2WWmgU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":246217,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVdYwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoXAw/9EkNYx6ggw4D/6bdsM+3yqsJASDy0pXEFuzHRSEfsz5NvYWGw\r\nVQRnslGVF/0XBStWrLCdTVJfl9ZjMiA63XsGNpKbgRz1jWsym+KymvZE+kqp\r\nisd2C0dNytSb83yE7pOE3i8RRzBJGtx33GNc30VlCwdupM8wJhLYszzCSJyS\r\nzRdrhnxXKUW/Px+lDjrHl+h6ftknSZFNV+vJ3PPQ03rLmnaHfdqXRNZaI0ZI\r\nNxRDobWBrqMfu52CcXBdOAU5v6c8G/rMr51fdI9eULHdLG33UgBwAZkiOjn7\r\naizlM4WM4Ttuex6g9EA2N/MEx9XaG+3+mLV1hTuMjwvaLRXE3hKM2U5GEsrl\r\nHrdhDfNxXibLcWnEp35E1j1dnZPLAix4QUo0m35M6PmFQokzCPPcVHCQ3mSC\r\nB/L74yTaURVHWngxb0UctbDQcBUBRxOOVQI2aThQcb/Neg//hHPoIpx9TIZ/\r\n9tx+5bBE1tzlW14blPHUBeKr7seqvE2onanfWfrzDXeQMLMwBb/4VxLG2/pB\r\nRt4voN+0hI7R4chw+XjLEQSmz5Q4ShH36EGxKPUheIeOqW9T/VmF4D01RTcy\r\nS2ii1QMyZxuJTsb3vTW+TJKHDogGaQNk6EL5kkHg7MpVCm7coo5Qx1sH96nZ\r\n9j3uskxphrDHjM4Mu6zyefyE7O3Kv043Xbk=\r\n=rfCU\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"5d8cc04c5a2252bc55bd28b46b8010562ac6d0fb","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.18.0","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.4.0","@esbuild-kit/core-utils":"^3.0.0","@esbuild-kit/esm-loader":"^2.5.0"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.11.0_1666569776047_0.15082112751352428","host":"s3://npm-registry-packages"}},"3.12.0":{"name":"tsx","version":"3.12.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.12.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"0df550aa4311da32a382b1f31941fe1b41cfba8a","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.12.0.tgz","fileCount":17,"integrity":"sha512-Z9drA8U1/jRJRWVTS2rOwdsCfkAShwfYBlE+6BVZsZChDsgYsEZZe44MGNNK6V6wQTTtu1kRNV57MsKRMJfdpg==","signatures":[{"sig":"MEYCIQDN8WMHrueN3ARC3zuE8Ri1E4rKQtDdiLxRWQrs4C5PbwIhAM0lSTB/FSU025iB1X8p0mXAdZzTBBfI2ATbDUcTsvLe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":245004,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjbKpuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqwLg/5AViQV/8AQcHIb1uPtLqIEB1cG5cQm3y1PwhCOlOScqupDd18\r\nUK/0aNRCxDh1DTZcsfRoCH4pSRyjuS8Cbe3/6acuiYHLKg+C0j9bnjeyRyc7\r\neadsQvnTJfMMSgmxIS22DmWYlEwheVIstRy6yUhUsmMT+3QfsU6bjmlNIoBe\r\nK4F6LbRloQ82+ZmAApY7PvQ7mvBK7C9lj5xYV17155RKodNOUUq38MRgK/0x\r\n7OR/rPasCpYOyQFo/EmR9fZrOXk7T12SqzveOTgoviqd2HV3NI3H2WV0vRGi\r\nhH91imXPk1iY0sa/T4qsfMOqOI5mG0vDxLmuplix+6P6eewRlH2yqZfMHKbY\r\n9kLg+0k1nCZhjp1Me/ntg5DNLKhIQgMLEmZVkVfI8qShhJPMuq4p3V/JzTYj\r\n9AWzRBL2ciLC6JUkkP3R02B0j/Dj6tWbU61DHEtpSm7Oznnc5aL31aIGzJbI\r\ne0i2fZBHGTJb1Od2lyDc/aiGZxSzvDRxKtJiTEVmzO7cwSGrGsWgBVrSXxqz\r\nZOXsuksTi8Gvd1VcYF+MfjvXjak1FfaC+wf6Drvp3gQ/x4mmoc4kFmPw9g/J\r\nTAG4QqlMm5yNNx1+w1zsd94bCDnZU1xi5eNfBEWQalTc5UvpGz+dBnH+kByY\r\nfNXeqqeJEARS2Rs9cR1leox1//9Egtg9hmM=\r\n=v0BT\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"eb0bcc8593857174c86190a5034f32d83a4c1f54","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.18.0","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.4.0","@esbuild-kit/core-utils":"^3.0.0","@esbuild-kit/esm-loader":"^2.5.0"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.12.0_1668065902111_0.9945887370450401","host":"s3://npm-registry-packages"}},"3.12.1":{"name":"tsx","version":"3.12.1","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.12.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"d07532004c573bfea50a4ac687aa7270b3e34277","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.12.1.tgz","fileCount":17,"integrity":"sha512-Rcg1x+rNe7qwlP8j7kx4VjP/pJo/V57k+17hlrn6a7FuQLNwkaw5W4JF75tYornNVCxkXdSUnqlIT8JY/ttvIw==","signatures":[{"sig":"MEUCIBE29xIbSMd9SqdQdd00zLH9NkWY39felNUkiyD4roo6AiEA7p5eyM5tEs9N0s4fuqDKmcvBoH8mo85hXI4G+5qubRY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":245002,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjb56hACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqbKg/+KIy4+gbK4c+Hdt6UMtWyQs+mbQ3vqrX4GtbyDznoqR/PbVAi\r\ngXPqaQTrV0G4IW5p5msBtVG49LB1sb5XedgN4oz54XKwikmBrsiw7J41vmT1\r\nF5i0n9HeTSfY1Z7X6J7vYR4cETJo/KjVv7G/RCx9zRrv9t+yoy1QBrfpdRJK\r\nHj3CppZmCIznrwXJDTPsK6PRX95R9PgPQYVarQld9vu8x3wK0b+8kbsJhfJ4\r\nB0ZisnbxcohdQrzme46jGhg2syE4lwU67dF2MCc6FBRWdD/HVraLF/4TGSj2\r\noi59lWdUgIUTLj1zeIq2JRigQzMGnBZ/sAs9ViTH/cT9qtyyyLpUgHrGZVAV\r\nWW7NK8uaECp0mKj7EzVjp0H0J11Fr4VizNNSJlBkCWYAzZEWsznPRTovj/fI\r\nB82eTgrapttOhQ9WWwxz8Y1iGMoNLu+i1VDv9BTm2NBsDOy2b07UQj2nEDbY\r\nBXn9nd++Q7eecx+1kKgdT9Y55rMa6ct6CZwQxQ5w/M2B8nHGAVJGFEKBIwUj\r\ngWU+ZpCHh0+Zm+PnlkN8lwoFY0mCVDQvDtC0UIGh9DD+wrFBzLezwNT7tqmA\r\ndDFsAVh2oC9ts6DxtzNOkcdiK8wjJMoqA6yAiwTz5bNalbDeJM9FX5zfb4zs\r\ncxmwVFuOrE52V7n7u6HL6ZHgvuxOq70kBNY=\r\n=RvPm\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"cb89f95ba5274833fcea033c8c818c829c5e02be","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"16.18.0","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.4.0","@esbuild-kit/core-utils":"^3.0.0","@esbuild-kit/esm-loader":"^2.5.0"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.12.1_1668259489175_0.749965026173856","host":"s3://npm-registry-packages"}},"3.12.2":{"name":"tsx","version":"3.12.2","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.12.2","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"1c8a4fa08a97739e6eedf0ad464bd8218e1a64f0","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.12.2.tgz","fileCount":17,"integrity":"sha512-ykAEkoBg30RXxeOMVeZwar+JH632dZn9EUJVyJwhfag62k6UO/dIyJEV58YuLF6e5BTdV/qmbQrpkWqjq9cUnQ==","signatures":[{"sig":"MEUCIBbGcNMjTferxwQmviJBJCMO4Fr9+GcN0aT3LMLW2wWEAiEAovSdlZV8IcMSUrcg8tXStUvIUyTumDJAfGSAjI5boOk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":245245,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJju8qdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqjmQ/7B08+DydrQLKOW9isTEFnJx9NuM69OxswWtdPt1kWUMmxphJo\r\nMhYgUzGRiZVJQn86+hjAl806V6HU3oLcqtOhz65UQGw3yAJLafk5qheLYuEC\r\nh5CQUhs33eiWmWzMMmizS5ax5Izgqa6YvR34Fnc0Ym8iB/UcGf2LWdkx/jE9\r\nxBECv8DwTswkLSNsY0cmEJ5P7ha4I0IhJLlCUpAq9J0Xak8gLc5pUF3Vv+8+\r\nWfZoSgALJUJ5vwG2xYTShZsASLGZ3hrZ8CdVt89NbHhRebuzciHvWPHuRwMJ\r\nR4va+BQNBDtkiIMvUTPliO+wfP04EZgPgOMzlysQtMk/1yJhLpVTNGOf8Nas\r\nd9bt18aurauccObsNbZX/EaGSZ0eRDeU8mCiiNT2IJEcYbYalFSJjk5cjuFy\r\nO/8jC+isl3gIbnQFrcz1uBRAOw8c+lvjYx6VYx8XTO0714QgATuKfLpHBnu2\r\nnfEcCyDxJBBjSWnXL7sspCo24xZ7/x3oPrT9+2JaTSahLciDfD98qNuYAn6G\r\nM0+XfvVH+urbDUXHZtqugIV8edN8ffbttMLwau7CBID4F2B/JhhcO2cRM7lv\r\nTyxh4gY7xoFLtXq1kpJwM3n6wwWNeb5XC5tcehM8kbk3B0S9gXokAoAyKwkp\r\nLNBuczTxpcyCPAbEPswbuHvH+RCH88sOsjU=\r\n=D7Hh\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"67837e80d1df992c8b85c106934697f6ae6486eb","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"18.13.0","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.4.1","@esbuild-kit/core-utils":"^3.0.0","@esbuild-kit/esm-loader":"^2.5.4"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.12.2_1673251485379_0.7923223477736254","host":"s3://npm-registry-packages"}},"3.12.3":{"name":"tsx","version":"3.12.3","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.12.3","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"b29f6c9246d4e3ea46451cd81d7cbc98f45c4b8a","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.12.3.tgz","fileCount":17,"integrity":"sha512-Wc5BFH1xccYTXaQob+lEcimkcb/Pq+0en2s+ruiX0VEIC80nV7/0s7XRahx8NnsoCnpCVUPz8wrqVSPi760LkA==","signatures":[{"sig":"MEUCICvTtMmvaVu4shRxWsAQS3Fp3VG9Y/lChSP5PJwxijo8AiEArAeFVzA72dN0oHRZ013jUp7JC7hmXW6lnpakqig/BjQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":245303,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj4HOHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo7pg/9GAQw4gBWVdvxTWAmknN6PWAsPL4tvzPcVWcAUwNKNTUzvj01\r\nfpOZPb2jXvOZhR5AFqZinjDHZ1YXqKGf4v02FauAJArkPXVVleKfDfuA4TUs\r\nLwS3p3S2vKNnvB4QSRE+yUwivclbE6+LeCKEwfSuPDniBcwyy6zcUiFSx21N\r\nQrcT8Bnqu/lmOMdIQ5T8ybQesJJR04+/AnKP/xg/JWGyaDY1Bq8wAx+F/ePj\r\nBwP94I9UvLhFTWDZw6omVZw+pZquzBqrOWsBCVhE94CFxLyA0rlZH7xLhZKw\r\nRbpncaI0Mb7uI9fBw9DSfTSCbRUelmSg2SoMKk+p49iZoUPbOSC67+TWNfBs\r\nHHff1TaHZBWD1XAtrWbrree3oDVEUIJ4dzKJ7lpDUHauvvQYImkouNTZ0VIg\r\noMeGLLWdUPq5+qfeTu9iCkUlmOcvH2DEkIUJs4K7fdw+sOKTKoZCjHZqjDOl\r\nNeRKnUl7YUZWhv/U2k8i2YXQanC1TDGv6rOBmpJq2n8FuSp3gkQ91QIPXKo9\r\n33AlyjkpKmPiHzlq/+dwmZZx71LQ0Onimdic42xMd2J1crqYba/cHBxZl2sj\r\njCUTO/uKdPg5yVCYCjTBQxRppFCjZJ9rLFspyVAflNPjKwG0CTVUHXfJfY6x\r\ncC/oRcnJgeVMW2zXvcwDNYLQUiKTMOtbjQ0=\r\n=b4Hj\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"7a35586ea3a8b46ab0f36c305e2d2a343ff13cd3","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"18.13.0","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.4.2","@esbuild-kit/core-utils":"^3.0.0","@esbuild-kit/esm-loader":"^2.5.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.12.3_1675654023138_0.8165820080958908","host":"s3://npm-registry-packages"}},"3.12.4":{"name":"tsx","version":"3.12.4","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.12.4","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"afb04080850d2a125a44642d71d6cd65b621c0c6","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.12.4.tgz","fileCount":17,"integrity":"sha512-IZ0Sqm2AwB3pgE+n/g63jLNoZZXinbXfdvNWB06wdwey+/7dlOurdS1Vb5pBGa7VO9nTjAOODbQgKCgHk7JsPA==","signatures":[{"sig":"MEQCIFoStM8y6WhMK0BCLOth3qkddoo3s6pI3yccbKIXeIJ5AiA5t+VKr+1y36OkmZk57GHJNmPLLgMk91dDAgs8BOTUiA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":245583,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkDdUPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpjOQ/+KTXwLC78swkDp1sMZYKxveqE04G0ke4y4dUblQxBBlWY1Xrv\r\n11obmY55Exs6G2shhuvf7jkz+uNxg9tEF8kZrQ/DUApBPLoDr/3UpdvY2PJQ\r\nNDJ3ihG1bcNnMEC3/rxKmE77JtQIagi1cAQ5Je5OPdFC4pRt9G/evrjrqvoH\r\nny2Qzlxjrg4Qpxs9ZfCDza0AHJ8AT1gGtLA2JZCs8ZdBspWOs1pJLAy7myxD\r\n+ScvOnWescIn3YT8s3ZOAuMioIMi/b7IdbiAKnr8bbosq57G+MXBQpx6q5wL\r\nj/n8pRwykZUsmjbQMlUBn4UygE2sgqcBIY+A3RuVeZij6dJJ599hzarUGfTS\r\ncQWG90C0kj1bTrRpLV4ulIsttdSO7+zob6IMD4+smPlJpH6QheiopZcuuX+k\r\nYuu3CLu8bbuT4XsAheZF0b6bty2GuFcyEdXd21SKX3oKZQu2DI4m+H2y7Zzt\r\nrkpXHTfSLOl0jkRtKIsTnT4+lGcqNYRZ0aywEJaOrVFuePkmDHacPUG5hc1c\r\nj6OKJ2WURcQwO30wP6EccDLsAeLhP6diUuJNJFgdjMFCwNZ9ZZ0LQd1Ym5Xy\r\nOde5qoHarxp/TSQDtAVkNnHmf2jsuRsIdHDmN0UYxfzNyKD3SEuiI5CYncEt\r\nZVq3LdFlEFNU5FYbK1bD0nF5kbc+49lRo1c=\r\n=pXkq\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"b6793b2a87327e0540ee97b2ccab46595373463b","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"18.13.0","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.4.2","@esbuild-kit/core-utils":"^3.0.0","@esbuild-kit/esm-loader":"^2.5.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.12.4_1678628111084_0.25487686373639473","host":"s3://npm-registry-packages"}},"3.12.5":{"name":"tsx","version":"3.12.5","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.12.5","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"6d60d3c9ca2c5f9b8d2cef2cf099867591244264","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.12.5.tgz","fileCount":17,"integrity":"sha512-/TLj30xF1zcN9JkoFCyROtIQUi8cRQG+AFchsg5YkWou3+RXxTZS/ffWB3nCxyZPoBqF2+8ohs07N815dNb1wQ==","signatures":[{"sig":"MEQCIGHWbeWnXVQit6mxyAY8pxoD6+YVnNdzq4m462h7CKtRAiAlqOcz+7+Q/awarJTI0O/7xgxuo8xRJGq6088oX7povQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":245599,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkDsh9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrw8A/9EygzS4InROAdYnceNNqZG7sEKbsbBieSTH8fj5qk9dw7M4L7\r\nKcmV0LNnsD0cC63NwMGm27e3XzHSFKEiPLorBdG7ne9y/HtTQS5ttJAxe9oz\r\nmS4+ta5uaPIb250wkSriKGb+HIYqS/9Qoc/SD7s4kq1ADnSERf8ZiwARyQrL\r\nQuWUgSuHFKo2YtG3xsRiBKPKdmlSzc10aBe6HhGJIEuUCjdqFt9/iQudjs3E\r\n0Wfn7JXcM2OTYczLr8Hy+1rXjC3fOXzh9H0M8/iQQLcvLOdiOae/G7UXoPt5\r\nW7rUO0pLXLpK5jM0tjXmP3Q9z2+IXA2kb942eTPIgvyuuvdu9kxrPfm11Q5Q\r\nfb5YZX1wdETtcwCjvwhfi0dOwMRhJJ9p3wHBVt8coZz3PWF18PY9k5h70v1s\r\nLKPHG2P5dqGwDE58/2bJ2ru4n6BOPYSPhsjQnTfF53zop2SqskWGCX0fXMaW\r\nseZ+BBKWMtvF0hJeLBXGmXbeJrSHr79VIuZH61AayoRwZg3ncHslnwfhnRQo\r\nzjd+ywm40N+aL5yPf+BrEc+LmRvaHaLB5+mOOjFE67XYWUkTk9qRb3ZpcjjM\r\nVL4nd6mUve8rbrWqhyorNq3QUnL84SKDo7qzTpRf2IF2CPAvs9AnYgPhgZ95\r\nRUuo1GJZjV218eL9Wgl0nE0Ea9+MRBJJ0G8=\r\n=aN+t\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"afa3c78ebd90d4d9bb6270ad32997aaf585a1f04","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"18.13.0","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.4.2","@esbuild-kit/core-utils":"^3.0.0","@esbuild-kit/esm-loader":"^2.5.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.12.5_1678690429045_0.8972711418738006","host":"s3://npm-registry-packages"}},"3.12.6":{"name":"tsx","version":"3.12.6","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.12.6","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"36b3693e48b8392da374487190972c7b80e433b4","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.12.6.tgz","fileCount":17,"integrity":"sha512-q93WgS3lBdHlPgS0h1i+87Pt6n9K/qULIMNYZo07nSeu2z5QE2CellcAZfofVXBo2tQg9av2ZcRMQ2S2i5oadQ==","signatures":[{"sig":"MEUCIHQEoeuIJPSvkQNM8xsLC4EeK1CCwetYv1avg7CpRD8hAiEA4spVYUvvwtIajxW/2fEF5HgMR1Azo8pY01ImLWGus64=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":245521,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkGJexACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo5og//eWL5eyt5iJOUDckdyxZko74gWXW185/wL/m8MrVVx25XXl9/\r\nqbqBHJ0RYzxxSH1M86w8riEQIYuuzxQX/UyoKJdzSW04seoVATqEgEGN965I\r\nq9R752/C25kobYN+ntMW8/kMbC2gQfEthRhpFmn56cCQmI28AMjJFOWvkSkx\r\ns0XQGTHqMJBvg8fwjb6b3URs8tP1jgbkJ6K7KulWxvB65zKwwNh6Sy8tBFvH\r\nAOOftAEcjAK1TiW1/x0NVJT9onponyL2/146Z9iRugl7rQoy4pP3kKLsLEOl\r\n2fDQCBbJa9u6E/GU/Emf2smFVZFoaeXqUtys3Z5syLrHkBZ233tN7HsUEXs9\r\nqaIhZUsgJYI3qYLhp7joQaeMYwXwcXqb4+R1N9F141tQF21mFonB6bUV6a72\r\nF0wL74u0/GqdEkOEe8SqIY4TdqOpA2wkwpvMBuB7c7ZJcy6tazAV9TcSVEPV\r\niAsmOlpzHeEgMeHoeZPYUZ3tJWSw6pyYpMf3GBYFG8EiTp6UdNbxDKoboiLu\r\n3khKD5SPxeybt/rGB4WdXmcWeS6WgHL4V9hm6sPEDcPQBNcCsUhO9q2Fog8C\r\nIptSlWj1u5ATRfk64xDDbqH9s1pYBohSOJga8QleFBgtcrmRvSJ/NiqKzGiF\r\nyT4IgGB+6jXn716RvbHB+Qohpdc6LY9pYiI=\r\n=Mzbx\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"8e1958db41addf52bbe10505099b9e8ed223e62c","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"18.13.0","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.4.2","@esbuild-kit/core-utils":"^3.0.0","@esbuild-kit/esm-loader":"^2.5.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.12.6_1679333296558_0.3233424749200138","host":"s3://npm-registry-packages"}},"3.12.7":{"name":"tsx","version":"3.12.7","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.12.7","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"b3b8b0fc79afc8260d1e14f9e995616c859a91e9","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.12.7.tgz","fileCount":17,"integrity":"sha512-C2Ip+jPmqKd1GWVQDvz/Eyc6QJbGfE7NrR3fx5BpEHMZsEHoIxHL1j+lKdGobr8ovEyqeNkPLSKp6SCSOt7gmw==","signatures":[{"sig":"MEUCIQCj7kInNt/oRXUcdK9KF5h7ZRrNAC/DQL8aSHoU7ob+qwIgDG3EDaYPDlifYVZ3K6v3ijT3eA1eEcXv4iBimijfHIE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":245537,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkTbqnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpY+BAAkGEzGr7xEgcHFQ/lmHqnAKquIkFp8h4aTIUiIJF0TeGYwBlz\r\nHQSzflMMKK6bjAxA7fHSVhHcQfJFGRoihAhR70BCCWPBdA+fFN1KJqWL6xz+\r\n7M1jI14fWgc1CMq7vpkzHIazytrtY32J+/9qnQ9jBSV7J3JhTEyX49q2Xgwi\r\nP3DWwZgaJ1eBxHHh20gmkU5uYBXy+5+NWSENEFHMIEELPx67L8ltsF4TQZBr\r\n6DIUBp6PIFrnHylSrIJBOt2RWSIzwza4POa/qzXw3p39E2rcRZIvayetbeXR\r\n574U0Av4bDinBW7BYlb7lxrGWmc5K7/hcsGRWij27XqbHo03hZcthYyCOY2L\r\nri35Kl1KD7dvavHMN0tW+m78sLLzdV9cYTXZb/fTAwMJWyPzl3WydboAqAN1\r\nkiwQ4lMZfUl+4GolPz97aNVP3aVfkH1Z5YoU3hKBbhba2nBt0TFrfqemhT+F\r\nc9Duo3IlYVlFqLVo+N2e4MQRs5vdptdbIPEc9PYawSMpP+b9GzNcEphmMwbl\r\n2wJrg/WhTAj1RNENLb7Fo12CHF05PjETQWiv7qBLnOfZqjJ64nqCRxAYxKnO\r\n9LUA1biquECzO1JlzNyL3pZaev//NKvJVJBMvotbmDb1UPynFcv2AdcxNRYD\r\neHFx+70tfA4waZDdr4q9oOFEI7RV0L85fzc=\r\n=ge1k\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"5366c311c81d63b081af6ec1795463e747b1ebf0","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"18.13.0","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.4.2","@esbuild-kit/core-utils":"^3.0.0","@esbuild-kit/esm-loader":"^2.5.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.12.7_1682815654886_0.13797544307194598","host":"s3://npm-registry-packages"}},"3.12.8":{"name":"tsx","version":"3.12.8","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.12.8","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"e9ec95c6b116e28f0187467f839029a3ce17a851","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.12.8.tgz","fileCount":17,"integrity":"sha512-Lt9KYaRGF023tlLInPj8rgHwsZU8qWLBj4iRXNWxTfjIkU7canGL806AqKear1j722plHuiYNcL2ZCo6uS9UJA==","signatures":[{"sig":"MEUCIQCc+tzVKH3XwjaDtB9rCEKvZ1d/CNTNmODx2NE/GNw0YwIgfVhX7HAxN/kNJjEn8V6eVKRSoinx6JX+P6Risj2UIw8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":249762},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"e9116f906c87244034fcdb6827fd7ba066748491","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"18.13.0","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.4.2","@esbuild-kit/core-utils":"^3.2.2","@esbuild-kit/esm-loader":"^2.5.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.12.8_1693566621676_0.9409335399444347","host":"s3://npm-registry-packages"}},"3.12.9":{"name":"tsx","version":"3.12.9","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.12.9","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"026e920d91930f005ab57cf2fbf1513292e1bac7","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.12.9.tgz","fileCount":17,"integrity":"sha512-N9Cpuiy55IcemQ2kouH1ZqDvjUa31mkhIYmnJKnvDp0sLQrK9MUrRuN/XzW70iTk5a2kX2A63wLYWORwa34vug==","signatures":[{"sig":"MEYCIQChUt1pEsEYKwsBfKzbJhqX5pFfC6SGNExZwiCoo8+AWAIhAL/z44TXzzq3+1pDOOc6J80ITCsviZP8eDbaTv8KFNAL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":250396},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"f295c506acc30ba9d88e01e0e8530db81a3dd36c","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"18.13.0","dependencies":{"fsevents":"~2.3.2","@esbuild-kit/cjs-loader":"^2.4.2","@esbuild-kit/core-utils":"^3.3.0","@esbuild-kit/esm-loader":"^2.6.1"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.12.9_1694523105264_0.30700693246184096","host":"s3://npm-registry-packages"}},"3.12.10":{"name":"tsx","version":"3.12.10","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.12.10","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.js"},"dist":{"shasum":"073b7c8368c61dd6b816523eb203e6c8099c27ec","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.12.10.tgz","fileCount":17,"integrity":"sha512-2+46h4xvUt1aLDNvk5YBT8Uzw+b7BolGbn7iSMucYqCXZiDc+1IMghLVdw8kKjING32JFOeO+Am9posvjkeclA==","signatures":[{"sig":"MEYCIQDllZgu6aFqWW0pw0aO7CGiHeRjb1xGcx6c4Vtwyn9CwwIhAMa+LbTey4yCZbcwjs5MpCU9yjmJ+tfBhIy4oi6hAOfv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":250399},"type":"module","exports":{".":"./dist/loader.js","./cli":"./dist/cli.js","./repl":"./dist/repl.js","./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"ccde4657810931507209da3b4f2ea85bbf525d2d","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.6.1","dependencies":{"@esbuild-kit/cjs-loader":"^2.4.2","@esbuild-kit/core-utils":"^3.3.0","@esbuild-kit/esm-loader":"^2.6.3"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.12.10_1694608488614_0.48631514479744586","host":"s3://npm-registry-packages"}},"3.13.0":{"name":"tsx","version":"3.13.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.13.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"f860e511b33fcb41d74df87d7ba239a0b4012dbb","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.13.0.tgz","fileCount":31,"integrity":"sha512-rjmRpTu3as/5fjNq/kOkOtihgLxuIz6pbKdj9xwP4J5jOLkBxw/rjN5ANw+KyrrOXV5uB7HC8+SrrSJxT65y+A==","signatures":[{"sig":"MEUCIQCNO1uyCE/dCtbo33a59/ltRPJsWSBp2aG5crEFCqGZKwIgeSfa6xP8r6Njl8UxLzgfR3lh8vggVz9D7Ac7+krCHU4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":386855},"type":"module","exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"e46366d2308afdf2dd197165854ff48f94a4b753","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.6.1","dependencies":{"esbuild":"~0.18.20","get-tsconfig":"^4.7.2","source-map-support":"^0.5.21"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.13.0_1695563708666_0.44394130091227835","host":"s3://npm-registry-packages"}},"3.14.0":{"name":"tsx","version":"3.14.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@3.14.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/esbuild-kit/tsx#readme","bugs":{"url":"https://github.com/esbuild-kit/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"be6e2176b6f210fe8f48124fb6e22e0f075e927b","tarball":"https://registry.npmjs.org/tsx/-/tsx-3.14.0.tgz","fileCount":29,"integrity":"sha512-xHtFaKtHxM9LOklMmJdI3BEnQq/D5F73Of2E1GDrITi9sgoVkvIsrQUTY1G8FlmGtA+awCI4EBlTRRYxkL2sRg==","signatures":[{"sig":"MEYCIQDTGi9TiFvG2B9ToQ7I35QGYdOBvyBEO0gs6yw3iOVu0wIhAL+A+pF9dHI+cS/3t3Pg//lj5v+eiD1iV9rgXJilpwJI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":388723},"type":"module","exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"7e916f5a1db5b21589cedc1dc91b0c498f87adf9","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/esbuild-kit/tsx.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.6.1","dependencies":{"esbuild":"~0.18.20","get-tsconfig":"^4.7.2","source-map-support":"^0.5.21"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_3.14.0_1697579944824_0.9075101356302893","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"tsx","version":"4.0.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.0.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"08675c880204de55cfd6a4216f5f52aa899432db","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.0.0.tgz","fileCount":29,"integrity":"sha512-jd3C5kw9tR68gtvqHUYo/2IwxaA46/CyKvcVQ4DsKRAPb19/vWgl7zF9mYNjFRY6KcGKiwne41RU91ll31IggQ==","signatures":[{"sig":"MEUCIQCer1Myo90fwXfwA0+zYo/HxSpKPssd2Q7mL6KP6mYWPQIgZ3Sk3xvaG+0a6Wob1QnHmvCRU+tPIeSj0qHqZQ+kRc4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":387828},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"2995601ce5fe7d91608833f3ca9a04cab3a54f59","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.6.1","dependencies":{"esbuild":"~0.18.20","get-tsconfig":"^4.7.2","source-map-support":"^0.5.21"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.0.0_1699516300463_0.9261202620964288","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"tsx","version":"4.1.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.1.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"d63aa74aa23a82502ea31704760719ba26938434","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.1.0.tgz","fileCount":29,"integrity":"sha512-u4l17Yd63Wsk2fzNn1wZCmcS9kwJ/2ysl7wuoVggv2hd3NjLA5JQPpyJMXoWSXOwOvoQUzNcu/sf/35HEsnXsg==","signatures":[{"sig":"MEUCIQCFBLQ4UYv1nbIZ78LHeV7Uq6O3rgE/Qz/cdF10MyB22gIgBg7efzNQI4tUiz1WyGA08uYU+E0wnzksm0N36pk8r28=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":387367},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"bf033b0dd759ba51edfd451e3cb5c90f32f11190","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.6.1","dependencies":{"esbuild":"~0.18.20","get-tsconfig":"^4.7.2","source-map-support":"^0.5.21"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.1.0_1699615677148_0.8155865310079373","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"tsx","version":"4.1.1","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.1.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"cd08732708aad17b28c28358c341b1d9d0ed21bb","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.1.1.tgz","fileCount":29,"integrity":"sha512-zyPn5BFMB0TB5kMLbYPNx4x/oL/oSlaecdKCv6WeJ0TeSEfx8RTJWjuB5TZ2dSewktgfBsBO/HNA9mrMWqLXMA==","signatures":[{"sig":"MEUCIQClg434oPu57fMA0sXLIaF1NC4U/et2F3S61aw58K2POAIgcFxh5kFMpJ1X9S9y717kNcTOjbDHhpXC1FivoneSh3Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":387369},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"0039b605a4c6875f2b3308c99dada684bb16beff","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.6.1","dependencies":{"esbuild":"~0.18.20","get-tsconfig":"^4.7.2","source-map-support":"^0.5.21"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.1.1_1699671584851_0.3978416972633503","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"tsx","version":"4.1.2","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.1.2","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"32ffc80efa6f77748928293fa8f77fcf2b90feab","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.1.2.tgz","fileCount":29,"integrity":"sha512-1spM1bFV6MP2s4tO4tDC7g52fsaFdtEWdO4GfGdqi20qUgPbnAJqixOyIAvCSx1DDj3YIUB4CD06owTWUsOAuQ==","signatures":[{"sig":"MEQCIBID8kyM8Ten3mpD2fjuwaKjMBOwcBLVHH0kVzKxsTGxAiB9AiS14VlHm9f33clv1j2BDWVg/Spw6H2KcUSmBTUlmw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":387383},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"6eac49bb78e812bb75af73bf96e7c8d7ee1c7269","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.6.1","dependencies":{"esbuild":"~0.18.20","get-tsconfig":"^4.7.2","source-map-support":"^0.5.21"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.1.2_1699943165903_0.5901986448332885","host":"s3://npm-registry-packages"}},"4.1.3":{"name":"tsx","version":"4.1.3","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.1.3","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"afcc6e26a0395a9287a37376b510c0d8e97dee25","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.1.3.tgz","fileCount":29,"integrity":"sha512-DLiTy1eri4nhqgVVy+15YKC6Ij2BMFxGdDMkVrSDkNuISUJLv7n0NgZpFLpdM+qmwXar34XllgYi4cxkNMbDwQ==","signatures":[{"sig":"MEUCIQCHWwLreVhNEmDsIyNXv+vWIsh2qD2hc/J0dBqn+OebawIgQEGwDJdwv112k0ODL+QFIF5tQE23EYvWoHfWPSG1Xbw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":387588},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"497f69a65bc12b961c1114cd036063721cf6aa94","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.6.1","dependencies":{"esbuild":"~0.18.20","get-tsconfig":"^4.7.2","source-map-support":"^0.5.21"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.1.3_1700216946506_0.7203942334367088","host":"s3://npm-registry-packages"}},"4.1.4":{"name":"tsx","version":"4.1.4","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.1.4","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"e8c18cb5e890b410915d3cfa92b94d5e3147f465","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.1.4.tgz","fileCount":29,"integrity":"sha512-9X7uBCIyUsvMzIH+o8m+5o/5eL461cChCF+XUtOZsPr1a4pZx2lTQx0Muu5G5VwJWZwAGKBe3sJHLk82BENAVw==","signatures":[{"sig":"MEYCIQCb8nSYIEw8fa9FAIvAdWaqy1esmRh2msFtcn+qRIbQzwIhAKz0kfxXYnJcPKE1bry82zMyQqNRdS5sg7SLKr9uGaZM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":386666},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"4d3d33cf1692c81fad6ce2a2b18b6dee94d3f2c6","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.6.1","dependencies":{"esbuild":"~0.18.20","get-tsconfig":"^4.7.2","source-map-support":"^0.5.21"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.1.4_1700376461243_0.6116733330516557","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"tsx","version":"4.2.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.2.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"cc7d62bbea50b98ea37341b55d86cd4872500a27","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.2.0.tgz","fileCount":29,"integrity":"sha512-hvAXAz4KUYNyjXOjJJgyjT7YOGFUNLC8jnODI6Omc/wGKaZ7z0FvW5d2haqg1GLfX49H3nZOpLYRlHMYGI8Wbw==","signatures":[{"sig":"MEQCIFjj0aUAPAX8N72TEyCFo614h2HkWwMXLSNVf4B/gIkTAiAmb3rjN2R/UHmpiBu9zfmRsvI6IOUCN5g5fDfh5xB/cQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":387540},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"9233f6799f5e7e5e595156b6d89268ce4b61991d","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.6.1","dependencies":{"esbuild":"~0.18.20","get-tsconfig":"^4.7.2","source-map-support":"^0.5.21"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.2.0_1700549894566_0.07436384181901445","host":"s3://npm-registry-packages"}},"4.2.1":{"name":"tsx","version":"4.2.1","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.2.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"ea37cdc0cd6f47e2e13d763f373b292677dcd555","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.2.1.tgz","fileCount":29,"integrity":"sha512-rvRrYn6Q5/97TjafXgye7/yrR5oEBlKgOfNXcqpZ87Tu5lh7DFcq/VtznTbpbnV7XMj6Ghvf8j8PlYTQse/SKA==","signatures":[{"sig":"MEUCIFAGaEHxDjYNLOYHyOE/YkBiwG56f91aLEPCeXLMK3gyAiEAvA2pwYt0GHL0jkKEmg1YeioBjx1gXTxGw7sOmr9kt90=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":389492},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"7a0eb7e826c4330521298f2833d03f74431b0ff1","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.6.1","dependencies":{"esbuild":"~0.18.20","get-tsconfig":"^4.7.2","source-map-support":"^0.5.21"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.2.1_1700663883646_0.8582664692708097","host":"s3://npm-registry-packages"}},"4.3.0":{"name":"tsx","version":"4.3.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.3.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"81cd6f29c74ad7f794f96c69c1ce3e5bdb4e1748","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.3.0.tgz","fileCount":29,"integrity":"sha512-zalfbBdr7tvYok5sSbnsv4uL+DhT1wRZwbWwuOXjhH8YtJxN2bpl6lpXMxuPThMAKzZ2qgrhuf5ckq/uSsm3CA==","signatures":[{"sig":"MEYCIQD8zenTI/u+fMhR5NqwsYOJM5CYnj5BVTQQHLPoFHW6iAIhALEsGOybsfN7pr/fs3U1X6ZR7QgUVOISJarHp+OFdGSj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":388518},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"15b4277502db96ed3e6028c1ba1bd6e9d491f535","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.6.1","dependencies":{"esbuild":"~0.18.20","get-tsconfig":"^4.7.2"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.3.0_1700673355080_0.9319429724624086","host":"s3://npm-registry-packages"}},"4.4.0":{"name":"tsx","version":"4.4.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.4.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"01c4ff94f7f9186e34c0b37ba3b34c7546df1b3c","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.4.0.tgz","fileCount":29,"integrity":"sha512-4fwcEjRUxW20ciSaMB8zkpGwCPxuRGnadDuj/pBk5S9uT29zvWz15PK36GrKJo45mSJomDxVejZ73c6lr3811Q==","signatures":[{"sig":"MEYCIQDReQLmIaHJ024XmDZct6QkmUn2weSKhGofMtXX5UdX0QIhALl5d9tLMJj/juWf10qv4UKoDTvxxgckvM59wfzEVQx/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":388915},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"af1b911c0ac3bd13e12a8b71588b2178bf73e345","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.6.1","dependencies":{"esbuild":"~0.18.20","get-tsconfig":"^4.7.2"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.4.0_1700737819462_0.5191845332798257","host":"s3://npm-registry-packages"}},"4.5.0":{"name":"tsx","version":"4.5.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.5.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"47384fffbd9d2e0273cfa6cf8b4caa4bb83dc742","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.5.0.tgz","fileCount":29,"integrity":"sha512-hgxdziy9KLaHh9KE+a6tIZFP6kb0MLq/1D0sJVifbGP4QVEYhy6+2FNn7MyCm1pMc63p9CW/L1OzdqTNPxs6rg==","signatures":[{"sig":"MEUCID9hSeFNs3j9WF67BARiYRy+IpxgUIpdB0/AAO+I3j8PAiEAlZXRiqN+yhKLGg0H81LFQpa1OP+mJfzdEUJpZv4ZyMg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":389817},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"737dee5eaba8dbf43f91ccef6ffd7c2bc1258155","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.6.1","dependencies":{"esbuild":"~0.18.20","get-tsconfig":"^4.7.2"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.5.0_1700861543580_0.34287904925670754","host":"s3://npm-registry-packages"}},"4.5.1":{"name":"tsx","version":"4.5.1","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.5.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"4c387c6b785dbe5332d79b89cad9771de39e0bff","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.5.1.tgz","fileCount":29,"integrity":"sha512-/5KxoXKkiKnlQm+adAMOgfGP0/QEmdE6fL9/8LxtWYJlzaFx89ou3eqnvN3KDgm+jZJOvsg0klOFymJ4/k00qQ==","signatures":[{"sig":"MEUCIQCBmxmvsE/T5nFjd3RWa5B6Y0bhgHk3qpN7Q2QK0ZZvWAIgJ5oZw+wluJTjmH/eWdVD/oAkFcjyPwtdEvPxSLAvp5E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":390198},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"3b17ef6126cf821dd1faa77f77140a61c74b8bbb","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.6.1","dependencies":{"esbuild":"~0.18.20","get-tsconfig":"^4.7.2"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.5.1_1701128167469_0.07620767268121154","host":"s3://npm-registry-packages"}},"4.6.0":{"name":"tsx","version":"4.6.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.6.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"d899e0d8725ec2a6db6d9315105bf09a004b8c64","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.6.0.tgz","fileCount":35,"integrity":"sha512-HLHaDQ78mly4Pd5co6tWQOiNVYoYYAPUcwSSZK4bcs3zSEsg+/67LS/ReHook0E7DKPfe1J5jc0ocIhUrnaR4w==","signatures":[{"sig":"MEYCIQCp09yJaDZOpKgReRF+lrU1KTfWiTsqLGVrwFK4Wc000QIhAMWgMchDd2a32rMPVTiRZRXopuRD9hwUeK9VjYPdGKlh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":393442},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"4f4a99ae17768bbba49b9be42cc1700a4142dc73","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.6.1","dependencies":{"esbuild":"~0.18.20","get-tsconfig":"^4.7.2"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.6.0_1701129178273_0.08877464217086128","host":"s3://npm-registry-packages"}},"4.6.1":{"name":"tsx","version":"4.6.1","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.6.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"fc5456aabace99733eca23b42f223771a0ec1909","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.6.1.tgz","fileCount":35,"integrity":"sha512-OQ4TAPHXAPUo/NZAmmIybl0o8LFOTlycQxFepLBAp6EV87U88fOKYGCQI2viGAEOVU9UW/cgQcxcOMnfEKVY3Q==","signatures":[{"sig":"MEUCIFFbLSSX6Bo7ggkz1tK4hMjIHs/SRBJNAshCBJCDI85QAiEAw8ENWUrGlzwx5596WIfGac7Mtzqeq/bmpjF+km/UAKo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":393554},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"f4f19e0b87ba00a8bc3a701f2416ed307f9dfad4","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.6.1","dependencies":{"esbuild":"~0.18.20","get-tsconfig":"^4.7.2"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.6.1_1701310197406_0.3489201573989955","host":"s3://npm-registry-packages"}},"4.6.2":{"name":"tsx","version":"4.6.2","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.6.2","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"8e9c1456ad4f1102c5c42c5be7fd428259b7d39b","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.6.2.tgz","fileCount":35,"integrity":"sha512-QPpBdJo+ZDtqZgAnq86iY/PD2KYCUPSUGIunHdGwyII99GKH+f3z3FZ8XNFLSGQIA4I365ui8wnQpl8OKLqcsg==","signatures":[{"sig":"MEUCIEh5jsOlyRHkYMxMzS6fclu1anaa3QX+ikOv2XPm6gAxAiEAtwbwQzehDeBXhKMmUayZj3L2lsS3KamksTc064WyTcM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":393811},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"d0ffc29e022c1c876fe5b5a4d9ecb6d1a4fabb23","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.2.3","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.10.0","dependencies":{"esbuild":"~0.18.20","get-tsconfig":"^4.7.2"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.6.2_1701506926490_0.962271777846045","host":"s3://npm-registry-packages"}},"4.7.0":{"name":"tsx","version":"4.7.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.7.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"1689cfe7dda495ca1f9a66d4cad79cb57b9f6f4a","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.7.0.tgz","fileCount":35,"integrity":"sha512-I+t79RYPlEYlHn9a+KzwrvEwhJg35h/1zHsLC2JXvhC2mdynMv6Zxzvhv5EMV6VF5qJlLlkSnMVvdZV3PSIGcg==","signatures":[{"sig":"MEUCIQDiSEyyKd2b5gBv/lrjYHwKQ/AvsROtqf1KBKoGgbjrXAIgdDB/PmMRxV4g8nJkw1/WHHgBkLF+T08lXVtPn/o1b7Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":393583},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"8c778919496a8164ec63d0b488c805bce1aba839","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.2.3","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.10.0","dependencies":{"esbuild":"~0.19.10","get-tsconfig":"^4.7.2"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.7.0_1703000996407_0.7628795709806366","host":"s3://npm-registry-packages"}},"4.7.1":{"name":"tsx","version":"4.7.1","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.7.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"27af6cbf4e1cdfcb9b5425b1c61bb7e668eb5e84","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.7.1.tgz","fileCount":35,"integrity":"sha512-8d6VuibXHtlN5E3zFkgY8u4DX7Y3Z27zvvPKVmLon/D4AjuKzarkUBTLDBgj9iTQ0hg5xM7c/mYiRVM+HETf0g==","signatures":[{"sig":"MEUCIQCsH++UpIEok5orA10G5wwyNouwkmt3fru81rd5QTvrngIgfoaZKLl6R1iRjyKwme6xANPd5PDkaSgRKlYlj395zyk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":393521},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"2c829258a6ca238b7a22c85cc8a09a531267d472","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.2.3","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.10.0","dependencies":{"esbuild":"~0.19.10","get-tsconfig":"^4.7.2"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.7.1_1707526892006_0.8299856028584136","host":"s3://npm-registry-packages"}},"4.7.2":{"name":"tsx","version":"4.7.2","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.7.2","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"a108b1a6e16876cd4c9a4b4ba263f2a07f9cf562","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.7.2.tgz","fileCount":35,"integrity":"sha512-BCNd4kz6fz12fyrgCTEdZHGJ9fWTGeUzXmQysh0RVocDY3h4frk05ZNCXSy4kIenF7y/QnrdiVpTsyNRn6vlAw==","signatures":[{"sig":"MEYCIQD7FZ/ptgd61DtyU5GvYGDxjQLJcPlnYQXjiiu6pIAsLQIhAPJHq7hspbvqkIYx2tD8Q9fJ3BNggrOzq+IFqSn5bvRT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":391513},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"1a10da7bf9d0ca66ced6c897ade8f5f9aae0268d","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.0","dependencies":{"esbuild":"~0.19.10","get-tsconfig":"^4.7.2"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.7.2_1712218641205_0.5989722594595712","host":"s3://npm-registry-packages"}},"4.7.3":{"name":"tsx","version":"4.7.3","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.7.3","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"c32f3f5cb928708a5c6becf617e432b395999242","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.7.3.tgz","fileCount":35,"integrity":"sha512-+fQnMqIp/jxZEXLcj6WzYy9FhcS5/Dfk8y4AtzJ6ejKcKqmfTF8Gso/jtrzDggCF2zTU20gJa6n8XqPYwDAUYQ==","signatures":[{"sig":"MEYCIQDtGn+eczYjkMnD2MEJ6F7xv4tHJTFi9cX5KJcw9AvisQIhAKdmHgKzFwS+e+8+8gjd0rD4FstNyQSLgUSX6D2r+Wd1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":380173},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"bcc5f639871f45da832018c8c9a679707d9ab1ef","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.2","dependencies":{"esbuild":"~0.19.10","get-tsconfig":"^4.7.2"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.7.3_1714041279133_0.1382184624963576","host":"s3://npm-registry-packages"}},"4.8.0":{"name":"tsx","version":"4.8.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.8.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"b548e20b872c020060a62ca3d3a211ae163aa31d","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.8.0.tgz","fileCount":40,"integrity":"sha512-lp2y1/L03n7HUMujPgJQ/BwLDT4QEPPY5gBsDohsx54o0d0FqC8uL7QeQwv29ZVrv6S8rH8nzQ5cPn5ry4KBZA==","signatures":[{"sig":"MEUCIFT5Sm+xF/HOlVRPvxWQI+ANjly+ILaJDeeMUkpjfAbTAiEAn1Zly7CUftzEy7TnaOCbYZX1W+WVa1j6dRWRIYkEsOc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":388966},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"types":"./dist/cjs/api/index.d.ts","default":"./dist/cjs/api/index.cjs"},"./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"99ba136afc89de486f99dc41562fa5f3a033d6b5","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.2","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.3"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.8.0_1714529437083_0.8582224379899472","host":"s3://npm-registry-packages"}},"4.8.1":{"name":"tsx","version":"4.8.1","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.8.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"edca9c16f1f2327c8a1fcec95616889999152096","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.8.1.tgz","fileCount":40,"integrity":"sha512-xkdE3/l+gZPHKfcZDCeCrCj2aJS5V8WFF2lPmMfj5ZAPa9RNN74XQsXA6lnPDe3uToGMCZ0ybytLvoP2rv8f5Q==","signatures":[{"sig":"MEQCIFn+iEEieUlwLZqVMu9iwKyxz1p9bTuIofeGqvvuzcs3AiA4lW4cUZQdtQWwoJOvWfVEv2o3DEpB/8ZqbDDE0pGWLw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":388818},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"types":"./dist/cjs/api/index.d.ts","default":"./dist/cjs/api/index.cjs"},"./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"084dec008149b29c0f56124d4a1400f2bb98f101","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.2","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.3"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.8.1_1714538822410_0.4040598517572864","host":"s3://npm-registry-packages"}},"4.8.2":{"name":"tsx","version":"4.8.2","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.8.2","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"0897b1ef4b5aca4b2bc6803e5058a2b2633fce4f","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.8.2.tgz","fileCount":40,"integrity":"sha512-hmmzS4U4mdy1Cnzpl/NQiPUC2k34EcNSTZYVJThYKhdqTwuBeF+4cG9KUK/PFQ7KHaAaYwqlb7QfmsE2nuj+WA==","signatures":[{"sig":"MEUCIQCcGQKthp8B5GtD0H2/Ug9g+lw5aoL2WKCVHueVaa7HfwIgElCPiX1GUChr9A6qng9zT0iIv2T7CLs9wLvJ3mggRuY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":388819},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"},"./preflight":"./dist/preflight.cjs","./source-map":"./dist/source-map.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"4b1f03c29000a28bfdbc1247eeec131f39078246","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.2","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.3"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.8.2_1714548112094_0.2478744238589219","host":"s3://npm-registry-packages"}},"4.9.0":{"name":"tsx","version":"4.9.0","keywords":["esbuild","runtime","node","cjs","commonjs","esm","typescript"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.9.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"08d7ea58df19d87416d26cce8caf93d0c3619852","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.9.0.tgz","fileCount":45,"integrity":"sha512-UY0UUhDPL6MkqkZU4xTEjEBOLfV+RIt4xeeJ1qwK73xai4/zveG+X6+tieILa7rjtegUW2LE4p7fw7gAoLuytA==","signatures":[{"sig":"MEYCIQDI6UornvcvkEQ44Ifpy6nIXPoUYroxq0RqjqPxiSl+sQIhAM4J1bmR29Yi7RC986g+GTg1UfB85DJGyCZcFWuUm2a2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":392928},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"4f515ab0bb8f3c8c610dc57556b978cbf90a5560","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.2","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.3"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.9.0_1714724234915_0.10884867027584688","host":"s3://npm-registry-packages"}},"4.9.1":{"name":"tsx","version":"4.9.1","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.9.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"e8eb1ce2766ce9067d577fba237a3cf884b229fa","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.9.1.tgz","fileCount":45,"integrity":"sha512-CqSJaYyZ6GEqnGtPuMPQHvUwRGU6VHSVF+RDxoOmRg/XD4aF0pD973tKhoUYGQtdcoCHcSOGk34ioFaP+vYcMQ==","signatures":[{"sig":"MEYCIQDp5PkeQnaVFpE30CtslUfebJm1WZkc34osFHc0ip+A6wIhAN/vPD1EosdEuBEQePogIGIoKNOmYPk4QGr25qELVzgr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":392967},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"96bc59680c7300ab6f4f740da26fa16e1970c7c0","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.2","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.3"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.9.1_1714831158146_0.5506762396596692","host":"s3://npm-registry-packages"}},"4.9.2":{"name":"tsx","version":"4.9.2","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.9.2","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"9a7caedf02da5382ac3290ff1b760c915c96809e","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.9.2.tgz","fileCount":45,"integrity":"sha512-D2UoeJ8nBsrqQyMrikW5X9CaelelZTx/5Nm8l94NhDAOsv6dkcEoFOq7232upStYPuEE5Z4I8IpYi4RomDzKKw==","signatures":[{"sig":"MEQCIEpSHWr+WQlX10arq118FcC1TfU3mLxJVUvG9tLi3tUwAiBbkVk3dpt1wQFpi/SLmR6zohcGgqlv1/yYBokyIFlLgQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":392996},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"3a0ea182d7be3eae2a34e1a028ae6a2e4e9c94fb","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.2","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.3"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.9.2_1714955904277_0.38254717204873034","host":"s3://npm-registry-packages"}},"4.9.3":{"name":"tsx","version":"4.9.3","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.9.3","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"801ca18ca22b3d2f7acd89d4b888aa2425ea1302","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.9.3.tgz","fileCount":45,"integrity":"sha512-czVbetlILiyJZI5zGlj2kw9vFiSeyra9liPD4nG+Thh4pKTi0AmMEQ8zdV/L2xbIVKrIqif4sUNrsMAOksx9Zg==","signatures":[{"sig":"MEUCIQDEuzlbYQ9f45Rs2itGA4K7B6enZNh2o/DM1opqjXpjGQIgLRDdzmb5sDAAq2rnL2zfN9D8WczBQUrvAI47AsO8UaI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":392972},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"8022fcfd480f21c53d4d351ba4bfbb611145d396","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.2","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.3"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.9.3_1714959380934_0.8180047347213235","host":"s3://npm-registry-packages"}},"4.9.4":{"name":"tsx","version":"4.9.4","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.9.4","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"a7c37d944f0d88743c8b6bb030adb3cfc488435a","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.9.4.tgz","fileCount":45,"integrity":"sha512-TlSJTVn2taGGDgdV3jAqCj7WQ/CafCB5p4SbG7W2Bl/0AJWH1ShJlBbc0y2lOFTjQEVAAULSTlmehw/Mwv3S/Q==","signatures":[{"sig":"MEYCIQCsZSfhXNiOstKPlPvMcxNdg6R8MeXW94IdAirTA/oCcQIhAP3k0L3LJlU9Gu9rwvDTpAIS99eX/ay48HXkMaINxtZQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":393028},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"48f0a7552fb6743fa06b63f6f600a9af95cb19f9","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.2","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.3"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.9.4_1715356977432_0.3415510405594069","host":"s3://npm-registry-packages"}},"4.9.5":{"name":"tsx","version":"4.9.5","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.9.5","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"570b91748ec5feeac08c338623cef432a7c45724","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.9.5.tgz","fileCount":45,"integrity":"sha512-bVKowxL5sqd5Pxkkgy6M9IGpxyY9+SPxWPNviZyqNBT/i6/X9EHbmuLDUw/6/Tugw1ca8VXNDtcM/amQjXcEOA==","signatures":[{"sig":"MEYCIQDtAVIZP595hQhQXfbGeMhTgNSRuo8Q2ag6sElU/NF+IgIhAJRXNzrB2sOwx1E8jFP8cLMitIkKt0fu4T+NvbJqwh9D","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":393356},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"dae9f0d62dd06591ad2b7abb970e412a15f417a6","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.2","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.3"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.9.5_1715433730064_0.8308821616394177","host":"s3://npm-registry-packages"}},"4.10.0":{"name":"tsx","version":"4.10.0","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.10.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"c9efb353f59219fe9056d4c271ef2f77563345c0","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.10.0.tgz","fileCount":45,"integrity":"sha512-Ct/j4Yv49EFlr1z5CT++ld+BUhjLRLtimE4hIDaW9zEVIp3xJOQdTDAan+KEXeme7GcYIGzFD421Zcqf9dHomw==","signatures":[{"sig":"MEYCIQCABBplrXEjifI4FkriJFzPgyZh4QC5wTdD64LijTop7wIhAKbbC3p+AX7ybGUQhQOtpqLq2z801Rh7wo2LSv8qH99M","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":394619},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"53bb4aa51e0f5c2b85b6c49515a9f2f1b3757c09","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.2","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.3"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.10.0_1715442697095_0.17653282885059718","host":"s3://npm-registry-packages"}},"4.10.1":{"name":"tsx","version":"4.10.1","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.10.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"80085dbb27e7bdf7292d9f712ef11ff99aba55c5","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.10.1.tgz","fileCount":45,"integrity":"sha512-G+CcyTOopwhuI81FU+KpzGN5UBhHgGEDlGt8mHAXKxv8pDGr6WI7hI7aRjTRol5WzFVsSNuzl3ekCZ0eLIJlEQ==","signatures":[{"sig":"MEYCIQD6i/X+pzV4s6SbsHJEt5KGeEM1pyqXUPwqXu5sC1Mm/gIhAIHBrWHU9gq1zvxztIMIbGDvMIqAQoLiDCbR8ZLs3ZF9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":394830},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"efb35094f23ea48c51e8f0ec4f1aade47e91dd01","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.2","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.3"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.10.1_1715512491743_0.6551274539752081","host":"s3://npm-registry-packages"}},"4.10.2":{"name":"tsx","version":"4.10.2","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.10.2","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"ed1a39f556e208e899d2d8b204aa4108fe7b4668","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.10.2.tgz","fileCount":45,"integrity":"sha512-gOfACgv1ElsIjvt7Fp0rMJKGnMGjox0JfGOfX3kmZCV/yZumaNqtHGKBXt1KgaYS9KjDOmqGeI8gHk/W7kWVZg==","signatures":[{"sig":"MEYCIQDDDOsyMreSBEdolpMu4F+h7VMVPcqPWzrPwl4PDRIjEQIhAPzH7I84q73e3V4ZGj8atmUGZabBt9pZqjyeRwvfMend","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":395584},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"2c87fc156b6343b1ac789ecd5de0a4b64a2f7361","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.2","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.3"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.10.2_1715594277399_0.7667604032239632","host":"s3://npm-registry-packages"}},"4.10.3":{"name":"tsx","version":"4.10.3","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.10.3","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"c0b1dac1e3ebb3db4465363dc8eef7b3ae0e7538","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.10.3.tgz","fileCount":45,"integrity":"sha512-f0g60aFSVRVkzcQkEflh8fPLRfmt+HJHgWi/plG5UgvVaV+9TcpOwJ0sZJSACXmwmjMPg9yQR0BhTLbhkfV2uA==","signatures":[{"sig":"MEUCIQCRTmUgucgqn5/Fe9SFcoUU09CjIx9d1r8xNqqaCZONDwIgT4Hy3eRnpP+yC2lDxNr/s0S71FWNFuvFWqH5+1croEk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":395756},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"5cdd50bc3fb406c02b9508ea15e33c4f9d597bfb","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.2","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.10.3_1715842484129_0.45558417863426093","host":"s3://npm-registry-packages"}},"4.10.4":{"name":"tsx","version":"4.10.4","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.10.4","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"4a24716968702ab0d917ef03ed58eee6e8b2646d","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.10.4.tgz","fileCount":45,"integrity":"sha512-Gtg9qnZWNqC/OtcgiXfoAUdAKx3/cgKOYvEocAsv+m21MV/eKpV/WUjRXe6/sDCaGBl2/v8S6v29BpUnGMCX5A==","signatures":[{"sig":"MEUCIH7rDBsOptGbupjKGkGJSGOmyT0uDNozIWizDqyc8a+EAiEAupZ5Q7b3CuJLj6NWMDBYw7DWuNKJT1CP0fZrebyqzB8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":395989},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"4a8a2dcce25e1223dec65219659065901fd7620f","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.2","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.10.4_1715914786431_0.6553443305682805","host":"s3://npm-registry-packages"}},"4.10.5":{"name":"tsx","version":"4.10.5","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.10.5","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"157139bd2472dd64ff4118385f3eccd27868bb36","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.10.5.tgz","fileCount":45,"integrity":"sha512-twDSbf7Gtea4I2copqovUiNTEDrT8XNFXsuHpfGbdpW/z9ZW4fTghzzhAG0WfrCuJmJiOEY1nLIjq4u3oujRWQ==","signatures":[{"sig":"MEQCIH21h/P7HZykXcrDvV23JCCUHoauY4//CW3uSV0jnXe0AiBbaB8OBobUS+RLoI1lfOsuwY9w9GJaeChm8DRK2YAgZg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":396307},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"86cf87c861991eddb39cf8ea88b2870b9f536ff5","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.2","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.10.5_1716016409809_0.6599195224148096","host":"s3://npm-registry-packages"}},"4.11.0":{"name":"tsx","version":"4.11.0","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.11.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"fdd8ce7ccaa0a84aed64c11e2fc5da314e1d8d14","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.11.0.tgz","fileCount":45,"integrity":"sha512-vzGGELOgAupsNVssAmZjbUDfdm/pWP4R+Kg8TVdsonxbXk0bEpE1qh0yV6/QxUVXaVlNemgcPajGdJJ82n3stg==","signatures":[{"sig":"MEQCICENcIMFnPvBwyWr41o9LU0It3ER6Q9o0CytnmzZFD6AAiAG1+tg2YraZFh7ad96vrZLwry6nWAuIJnRUWMrWDzIAQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":397048},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"b6bf39b1cc4ca037a16f5b02c619ed5c36e6d598","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.12.2","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.11.0_1716436296587_0.01523040040835455","host":"s3://npm-registry-packages"}},"4.11.1":{"name":"tsx","version":"4.11.1","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.11.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"133adc0e08324553e820a813347e697761339b31","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.11.1.tgz","fileCount":45,"integrity":"sha512-8ZmVC4OlQipEh3XBclB9YIih1XlNerBJ5NSwo5p76lIWIZdoSF+jFOVm9Gc/FQQ9554mZfxEEq9yTZfdghGYrw==","signatures":[{"sig":"MEYCIQCqgBKXy9X+efzVXWN+Y6HWxmEqw4KtSL40dpeD3EkWtQIhAMXpStA6/yOhAOhDo16m1HSzrL5hd0SFIy3qSry8umf/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":397192},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"5e701051c4eb639bfd204c805310777789907a55","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.13.1","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.11.1_1717383689813_0.5469625621626211","host":"s3://npm-registry-packages"}},"4.11.2":{"name":"tsx","version":"4.11.2","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.11.2","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"91791db82cbcd3f7515e623cc9ff288f2aa663dc","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.11.2.tgz","fileCount":45,"integrity":"sha512-V5DL5v1BuItjsQ2FN9+4OjR7n5cr8hSgN+VGmm/fd2/0cgQdBIWHcQ3bFYm/5ZTmyxkTDBUIaRuW2divgfPe0A==","signatures":[{"sig":"MEYCIQCS8nMjAXHPAUrd0T7QnDFHp84v84kAR5dHXbKGImPnEAIhALnh4dSKhM0gXsYnRyXptKLyslrbIWISZPP7g3Dy9teD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":397278},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"aa2b639a9bac8ae28a46b847013fda7f5cd4466b","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.5.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.13.1","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.11.2_1717386947861_0.24165786291090408","host":"s3://npm-registry-packages"}},"4.12.0":{"name":"tsx","version":"4.12.0","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.12.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"2a2483d27f2073fc36e8f89bcb1b753d031d699b","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.12.0.tgz","fileCount":47,"integrity":"sha512-642NAWAbDqPZINjmL32Lh/B+pd8vbVj6LHPsWm09IIHqQuWhCrNfcPTjRlHFWvv3FfM4vt9NLReBIjUNj5ZhDg==","signatures":[{"sig":"MEUCIBfgjOgK1C5WZ6NBbUoSkCX2rDGQDluomFIDmio95AVlAiEA1iz9nQIs8xZ2qkvjMwevUif5SkiO0ube13AWds8RbZI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":416562},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"7c85303b6f049eaa6bad0e75c26c03348049bfcd","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.14.0","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.12.0_1717649907914_0.10463003974591412","host":"s3://npm-registry-packages"}},"4.12.1":{"name":"tsx","version":"4.12.1","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.12.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"90ae8e51c2bdadd444cd10bbf23909a4fec0a5db","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.12.1.tgz","fileCount":47,"integrity":"sha512-roBBguHaP2EpOheka1uHkD4XMSsp1/K5KqtMOjuA+TqRzUsmwpVjHdoNTm/XJWltjB3opmPmYQoE8c2rCS2bqQ==","signatures":[{"sig":"MEUCIQDVqP8L5ZHMXsoMwnGmSWs+jKtG6cbo+0LoOna/h8uGjAIgecrddlHkk5DSpi/DTR/Lew/wOhH7FeMXFGq/9v7QdoE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":416689},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"de900a196a5a66f5363f40fd6d38b879aee96875","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.14.0","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.12.1_1717721375779_0.44194801725885857","host":"s3://npm-registry-packages"}},"4.13.0":{"name":"tsx","version":"4.13.0","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.13.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"f0f98d1adcd8de397e46b3242805e9098449b8ac","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.13.0.tgz","fileCount":44,"integrity":"sha512-kNY70P2aLMdVBii1Err5ENxDhQ6Vz2PbQGX68DcvzY2/PWK5NLBO6vI7lPr1/2xG3IKSt2MN+KOAyWDQSRlbCA==","signatures":[{"sig":"MEUCIGyFCw8hP2sU0i35fmuLxvmQFexYF5JMMhs9xwihR3lCAiEArQC8TCiI/e6U/TCG+ecHRLBThFwqsquoieSUTzqvlO0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":419688},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"0eb4e911f31c478400c7f31027f218123450d108","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.14.0","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.13.0_1717729289326_0.3190815041392798","host":"s3://npm-registry-packages"}},"4.13.1":{"name":"tsx","version":"4.13.1","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.13.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"929019f83fddbdaa4dd1724983d2ae219cab7546","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.13.1.tgz","fileCount":44,"integrity":"sha512-MU1IshdvSdIvf0U9ofr5ZWCWjLAPvf5gIvRZygGisoA/fq/FmSxjAfLIxF8ZoZtvHffY1NRkmxIR5/RW1Qc84g==","signatures":[{"sig":"MEUCIQCzcRpNc/mBqYlUrW0DcMX/kuiV4V86yA5Itj/UC5fdoAIgcqHUJFp/zjsmidvgg3GFieyeGdaczRz1HH4EZMnn81M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":419604},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"0a78bfd11b20fcb6460fdcdea7d3b1daebfe3ad0","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.14.0","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.13.1_1717742177900_0.7028509451018472","host":"s3://npm-registry-packages"}},"4.13.2":{"name":"tsx","version":"4.13.2","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.13.2","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"e59c0a0abf955d1c352081352657a3f92c832e36","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.13.2.tgz","fileCount":44,"integrity":"sha512-s+WGqChkA77uU8xij1IdO9jQnwJAiWJto0bF5yJLbAZpLtNs82Qa5CwMBxWjJ7QOYU9MzBf4MCNt6lZduwkQ+g==","signatures":[{"sig":"MEYCIQDHSQITQpgZeEw2ukWLk30mNLd1vN/YelwOozR7IvgHngIhANXEH5xdD22y0MPRF9IGh9KsIUZcGngeh7RdovwcTVzZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":419695},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"87a7683ab3d686918ec8f23b43df2961067fc1e0","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.14.0","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.13.2_1717754876408_0.6358766980526493","host":"s3://npm-registry-packages"}},"4.13.3":{"name":"tsx","version":"4.13.3","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.13.3","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"7ec1d2ec3e011555c56433a24f990c9dd4f97494","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.13.3.tgz","fileCount":44,"integrity":"sha512-FTAJJLQCMiIbt78kD5qhLjHIR5NOQDKC63wcdelWRDBE+d1xSrXYhXq4DzejnC2tGhFZHpDy2Ika0Ugf7sK8gA==","signatures":[{"sig":"MEYCIQCJ4WSKunF/OimmnZkaSu8dtZ5vx3sGPD52v6+/cqlO4QIhAN7Vj4LFfKCJ9B1ibuHc8f8ozQgRqefbXJydiB6KUcAu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":419758},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"c35dbaa7c4c5998ec0febef112f7c3c3b715ff5a","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.14.0","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.13.3_1717815979553_0.7558725256538796","host":"s3://npm-registry-packages"}},"4.14.0":{"name":"tsx","version":"4.14.0","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.14.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"71eb2abacdd6187befda3883ca46ae4e32f38bd5","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.14.0.tgz","fileCount":44,"integrity":"sha512-DsDLlJlusAPyCnz07S4y0gqJoUl8GciBeYcXQd75/5DqkZ4gfjKpvAUFUzmZf62nEotkcqC7JCWrdL8d+PXSng==","signatures":[{"sig":"MEUCIAWXkjgRhnaKIF8O8MvQtKyW47vBPPVc7wcf+KR9ZXTrAiEA9T1+IF9POWTK37rcs3sjKwwHigz+Ryx35YXrt4vCgR4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":421599},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"4503421e601b05078e1adb13b86a1a4619c9805d","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.14.0","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.14.0_1717847081672_0.8641344589611872","host":"s3://npm-registry-packages"}},"4.14.1":{"name":"tsx","version":"4.14.1","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.14.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"8329cd8215751d411d6d08a3ffeb8132640bf318","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.14.1.tgz","fileCount":44,"integrity":"sha512-GU8pPJq8DdxcJDSK6Bc64c2jW8zBK2hb0jzwHZDfjapbwu6AqvFnAElnzZ17Xb9TH5a/j6/sicTCVYF+eO/cmA==","signatures":[{"sig":"MEYCIQCsRCMiDG1tzwXQLf2VaHNpH9W0mEru8M4MfVkiVIj5AQIhAORoe4nQFrRU9+chcioBzPGNAuH0UYZ2MLJ7ayRz3hem","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":421817},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"9e647a58eeb635cef85063c80635655776bfe9b6","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.14.0","dependencies":{"esbuild":"~0.20.2","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.14.1_1717888992215_0.039564085374843794","host":"s3://npm-registry-packages"}},"4.15.0":{"name":"tsx","version":"4.15.0","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.15.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"06f919e3c5a4fdd2be3583876ea3fd9b9a55c89f","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.15.0.tgz","fileCount":44,"integrity":"sha512-yPThHvkUdsyi3pUb+2a6JM0y0shxxLlIEfms2ZztL/rHqK+4dFYdVxh2X/0bcieo16Kvjq77VU/ML/nVICK/0g==","signatures":[{"sig":"MEUCIBRETBPspe+Gfjiy27VA8ecYWK1oKgLhn/ij3iW30dfDAiEArTEL77ap3zH+t4cNaOjfE/NNlnjf9muVutnVpL8+5g0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":421847},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"c67d7468074d023b5c3abfb4b3ebd58484318e24","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.14.0","dependencies":{"esbuild":"~0.21.4","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.15.0_1717914455295_0.27337025428059825","host":"s3://npm-registry-packages"}},"4.15.1":{"name":"tsx","version":"4.15.1","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.15.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"884a8d5f6bbeed82724e53f1138a6b824923c29d","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.15.1.tgz","fileCount":46,"integrity":"sha512-k/6h17jA1KfUR7SpcteOa880zGmF56s8gMIcSqUR5avyNFi9nlCEKpMiHLrzrqyARGr52A/JablmGey1DEWbCA==","signatures":[{"sig":"MEYCIQDIfB8SCsrftNx94AaMlC+ahh/r7fdp/C6NsjfW05ERWgIhAOAG/hH5bIHSs4DO5iaFtpUEi7PdLQpkeJUSk5TSVwhr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":422179},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"fb247eb0313a191ba13fb682857309d8c588856a","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.14.0","dependencies":{"esbuild":"~0.21.4","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.15.1_1717928451141_0.4692145889640815","host":"s3://npm-registry-packages"}},"4.15.2":{"name":"tsx","version":"4.15.2","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.15.2","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"f2d9dfb747d89b508d950d235a4d6165400a0234","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.15.2.tgz","fileCount":46,"integrity":"sha512-kIZTOCmR37nEw0qxQks2dR+eZWSXydhTGmz7yx94vEiJtJGBTkUl0D/jt/5fey+CNdm6i3Cp+29WKRay9ScQUw==","signatures":[{"sig":"MEUCIFDUsQaUUzwJy+MWU01YpDbiPWrJaRvFoLApTTajQuKmAiEAkTCIjnu64P+6Mlk2ZppYaMADd4TH2ptq6tbfyFzeIUQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":422207},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"7e1fe22e142643afc2226a2f1c0d1579c949f0c6","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.14.0","dependencies":{"esbuild":"~0.21.4","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.15.2_1718062146406_0.868944365484182","host":"s3://npm-registry-packages"}},"4.15.3":{"name":"tsx","version":"4.15.3","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.15.3","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"88492aefdd1f50ba502a6071c6225987bd1203c7","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.15.3.tgz","fileCount":46,"integrity":"sha512-wLzUMy3xSUpGZQqDprd0U25hpLRJMH8RzONVsqJLwgmE65ZKsxfbs5xVG+sF08wHNyBILmqo5C2775DXYMbRog==","signatures":[{"sig":"MEUCIQCTb1RFv/+Br1MjlCYei1SyDEcePdlTtixwpUau/MMUVAIgf7UNMYtN5SvpAyv0R0NQYII5dcJRxB4yWaOUjX1HoWU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":422295},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"6b03a38443035f377281c5122eee4c56fefea179","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.14.0","dependencies":{"esbuild":"~0.21.4","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.15.3_1718240648294_0.7602619847584973","host":"s3://npm-registry-packages"}},"4.15.4":{"name":"tsx","version":"4.15.4","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.15.4","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://github.com/privatenumber/tsx#readme","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"d35b9d343b46af1ed8d56a3f5b0ecdb42b579f75","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.15.4.tgz","fileCount":46,"integrity":"sha512-d++FLCwJLrXaBFtRcqdPBzu6FiVOJ2j+UsvUZPtoTrnYtCGU5CEW7iHXtNZfA2fcRTvJFWPqA6SWBuB0GSva9w==","signatures":[{"sig":"MEYCIQCBRNsqwKAshzsS8BvhQ2yYqB1rIuzD9vxvEm+JbB4ycwIhANDyrGgHT9YuIh7Y2mU9Pyxbu+A4oZalfgbmtRLxxMSi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":422625},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"4c538538b46415dc7b98677ffa560706eb8aceaa","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.14.0","dependencies":{"esbuild":"~0.21.4","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.15.4_1718258628893_0.9109244103331173","host":"s3://npm-registry-packages"}},"4.15.5":{"name":"tsx","version":"4.15.5","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.15.5","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"9c1ddb10ed0035c595c9b3e00ae40a3647a94c82","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.15.5.tgz","fileCount":46,"integrity":"sha512-iKi8jQ2VBmZ2kU/FkGkL2OSHBHsazsUzsdC/W/RwhKIEsIoZ1alCclZHP5jGfNHEaEWUJFM1GquzCf+4db3b0w==","signatures":[{"sig":"MEQCICW9hzgB8+7XraQOQMSrFa/O4SubkQyHvEo7BC8Yw5odAiAPrrDxEfCzsotymdqXVSSeLaMgJDeSdWD7WBGKFLyCcQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":422681},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"c22fa7d1a90fa34983caddda91b5c1c10e1a4b6c","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.14.0","dependencies":{"esbuild":"~0.21.4","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.15.5_1718412839204_0.4128930424672783","host":"s3://npm-registry-packages"}},"4.15.6":{"name":"tsx","version":"4.15.6","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.15.6","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"4522ed093f7fa54f031a7a999274e8b35dbf3165","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.15.6.tgz","fileCount":46,"integrity":"sha512-is0VQQlfNZRHEuSSTKA6m4xw74IU4AizmuB6lAYLRt9XtuyeQnyJYexhNZOPCB59SqC4JzmSzPnHGBXxf3k0hA==","signatures":[{"sig":"MEQCIDkF+Pb3e5WzNMRYAud4/qxJsKssYxTQUmTCY+rnSpuMAiAZHMKhjtXnlvVx3nJeusqcsuPog/AohMV20FtmT7/Whg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":422845},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"cb27d4dfe7670e6cf50f09b48cbd37ac73aa064a","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.14.0","dependencies":{"esbuild":"~0.21.4","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.15.6_1718617525523_0.7524871925670535","host":"s3://npm-registry-packages"}},"4.15.7":{"name":"tsx","version":"4.15.7","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.15.7","homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"69d7499196a323507c4051d2ba10753edcc057e5","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.15.7.tgz","fileCount":46,"integrity":"sha512-u3H0iSFDZM3za+VxkZ1kywdCeHCn+8/qHQS1MNoO2sONDgD95HlWtt8aB23OzeTmFP9IU4/8bZUdg58Uu5J4cg==","signatures":[{"sig":"MEQCIAvpEk2yzINVgXEW3Gc632660glGDPTBz/bCeV+0lo+BAiAMRlRPZ37syUQuzgMuLGDhGusWyfo7LikhvK9uBSEXhg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":423567},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"98d9f6dc9edd8d6e182b8b1a854f585f678f22a1","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.15.0","dependencies":{"esbuild":"~0.21.4","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.15.7_1718942595897_0.6889231236648152","host":"s3://npm-registry-packages"}},"4.15.8":{"name":"tsx","version":"4.15.8","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.15.8","homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"e4ef4c31864c7db9abb3d42c21e8f92858dc22be","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.15.8.tgz","fileCount":46,"integrity":"sha512-B8dMlbbkZPW0GQ7wafyy2TGXyoGYW0IURfWkM1h/WzgG5lxxRoeDU2VbMURmmjwGaCsoKROVTLmQQPe/s2TnLw==","signatures":[{"sig":"MEUCIQDzWEsKR1Ys+IpylxjAhdwH+4KFagwyAhpYoHFeNOq7kAIgQ0Tl4hKwaP8JotgFWWDTAu/hvBIniHyqmk2gnxUKA0U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":422810},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"ae2a1bcdc1357a56d436acab5782da9a348d2cd5","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.15.0","dependencies":{"esbuild":"~0.21.4","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.15.8_1719580221083_0.5103043277728394","host":"s3://npm-registry-packages"}},"4.15.9":{"name":"tsx","version":"4.15.9","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.15.9","homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"9c8cf4e78b87a9f0e295b8b72cee5c57ad5cbfca","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.15.9.tgz","fileCount":46,"integrity":"sha512-OEw8VSS5Ug88pj3YhOic1Zmg+mKOuJOcBdpxl402C0D4TjRxu/LTIrr+slbc8nKQA+b7YC9SoHTZAEeQQPBwFw==","signatures":[{"sig":"MEQCIFJQjYmvkYqHy3u/YsxR6JDSMRkI4HgtM43hNOoqX0U2AiAJ8LrFzRSWVG9ADCVujldw4ir6Vs6iNqs6bUVFS6BGOA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":422836},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"c67e3baefdb4b38d44779a44e21f2a989482911c","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.15.0","dependencies":{"esbuild":"~0.21.4","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.15.9_1719622189451_0.10143028908161389","host":"s3://npm-registry-packages"}},"4.16.0":{"name":"tsx","version":"4.16.0","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.16.0","homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"913dd96f191b76f07a8744201d8c15d510aa1352","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.16.0.tgz","fileCount":46,"integrity":"sha512-MPgN+CuY+4iKxGoJNPv+1pyo5YWZAQ5XfsyobUG+zoKG7IkvCPLZDEyoIb8yLS2FcWci1nlxAqmvPlFWD5AFiQ==","signatures":[{"sig":"MEQCIDQwC6xQWD1sxrzicpcpe8DiAWSzzx1KwTVukvZXRABfAiAxawpte4MK4zotMTtXqHaoFdKCZWlwvC/z6dR2YHgEqQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":422922},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"da3bcb06d23ffd8ae06fe0eae10b4a4c0b03b060","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.15.0","dependencies":{"esbuild":"~0.21.5","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.16.0_1719641635297_0.07324422751316995","host":"s3://npm-registry-packages"}},"4.16.1":{"name":"tsx","version":"4.16.1","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.16.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"2692328f2bcf87eb10f94e62441034e1da765d1f","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.16.1.tgz","fileCount":46,"integrity":"sha512-UAKkKOFMJI4M3U4xTJuoqECBMydJbqwNuACoMvwHjqDhbQyo/SYd8ZYNCpF5F8rAjcdKrO+z9CbvBlBiFKhBLA==","signatures":[{"sig":"MEYCIQCYZzrRyT70FA1CVgA1BzyI8ekvBCpB4PgzilcYchgiMAIhAN7JK88tGywCMunlDhz3+uY+eSt4YxvedYjhVsr05B7x","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":423544},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"a74aa5857aa848a27f34198aa0ce9d028fda5801","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.15.0","dependencies":{"esbuild":"~0.21.5","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.16.1_1719988691263_0.5773094951871578","host":"s3://npm-registry-packages"}},"4.16.2":{"name":"tsx","version":"4.16.2","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.16.2","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"8722be119ae226ef0b4c6210d5ee90f3ba823f19","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.16.2.tgz","fileCount":46,"integrity":"sha512-C1uWweJDgdtX2x600HjaFaucXTilT7tgUZHbOE4+ypskZ1OP8CRCSDkCxG6Vya9EwaFIVagWwpaVAn5wzypaqQ==","signatures":[{"sig":"MEUCIQDClTiiO+xKC5zW1z8HuPNq6J+5IctHJ/TDemalWB5ecgIgTvtLxc8oDqgotbOt9lSKiBBx56UjpYhVwIsvdOcHmjw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":424188},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"042be032246ef8964a4b6bf4602a9dca7c875d52","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.15.0","dependencies":{"esbuild":"~0.21.5","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.16.2_1719995415337_0.656912346132281","host":"s3://npm-registry-packages"}},"4.16.3":{"name":"tsx","version":"4.16.3","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.16.3","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"56eb2f14f67b798e8bd8a907a9ceec57cba0e8b9","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.16.3.tgz","fileCount":46,"integrity":"sha512-MP8AEUxVnboD2rCC6kDLxnpDBNWN9k3BSVU/0/nNxgm70bPBnfn+yCKcnOsIVPQwdkbKYoFOlKjjWZWJ2XCXUg==","signatures":[{"sig":"MEUCIFPNThw3ywoqyvQwGScIGzYI01dMseVqjGRBMZLKZm22AiEAw+cdgulhlP6VqNBYYAPBHBJ2hp2QfXkTtiSmk90fWuc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":424556},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"ca4bf11670bdbc29bd5fe413cfa3cedba02c2e4e","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.16.0","dependencies":{"esbuild":"~0.21.5","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.16.3_1722391627832_0.7142618710839144","host":"s3://npm-registry-packages"}},"4.16.4":{"name":"tsx","version":"4.16.4","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.16.4","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"27a29883f015e15d89af5c302be41439fa65cf45","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.16.4.tgz","fileCount":46,"integrity":"sha512-E0EDobc7FtOxdNtG0ZQWztLa9PK/TqC5QvdV0heyIMJySwcJ8vyvziOznzO1MIM2IDfacLGBgfiCUmba6mvI7Q==","signatures":[{"sig":"MEQCIFaHUFnL8PJdx0R9J/hz+xcXbYeHUuBkpcOiFNPvPbNKAiAIDxzUzfL2Ff8CEAoHzktX5dMIDTG/T+B0v3u9iaxybg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":424604},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"3cf0b6acb9041b782d46345c23f3f48160e05f49","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.16.0","dependencies":{"esbuild":"~0.21.5","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.16.4_1722486084540_0.8639341261836979","host":"s3://npm-registry-packages"}},"4.16.5":{"name":"tsx","version":"4.16.5","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.16.5","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"49c2a8f4d4d66bd7cf538e23e7368a1919a9a1ca","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.16.5.tgz","fileCount":46,"integrity":"sha512-ArsiAQHEW2iGaqZ8fTA1nX0a+lN5mNTyuGRRO6OW3H/Yno1y9/t1f9YOI1Cfoqz63VAthn++ZYcbDP7jPflc+A==","signatures":[{"sig":"MEUCIEIltgCLj+1oNtXxaD+pAxmZWnrRDcuHMAeX9pPnPIV6AiEA9zoaTnnhwooRCj80GskNM+UfArveqJejnIa5wnPGqRU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":424680},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"2fada74ad363655890695716f762f89276800a46","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.16.0","dependencies":{"esbuild":"~0.21.5","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.16.5_1722505520031_0.345918647442899","host":"s3://npm-registry-packages"}},"4.17.0":{"name":"tsx","version":"4.17.0","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.17.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"6ffd9851a0c7aa4ecacf4dc19f28d82112af25c5","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.17.0.tgz","fileCount":46,"integrity":"sha512-eN4mnDA5UMKDt4YZixo9tBioibaMBpoxBkD+rIPAjVmYERSG0/dWEY1CEFuV89CgASlKL499q8AhmkMnnjtOJg==","signatures":[{"sig":"MEYCIQCuVJDWvnvoKnI8SBUVeeHcRBJoH0hWMEzTdoF2d6gj7gIhAOC2m/xQghWVARBiy1mulmedX+dzgu8LpLR8Xmdd3LaF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":425116},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"bd83d3bf59e39767ec64eec86fe5b48a8e50b991","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.1","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.16.0","dependencies":{"esbuild":"~0.23.0","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.17.0_1723104643100_0.34520467973850866","host":"s3://npm-registry-packages"}},"4.17.1":{"name":"tsx","version":"4.17.1","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.17.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"16e9294507797b67b253b8ab1becfe014f6ec60c","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.17.1.tgz","fileCount":46,"integrity":"sha512-s+poJ84lg23SPBvxQbPmyJd/tlpeBKbOnOYmhKO54L6CR/NyCF8Sw7dqLUWLuscDnKkD31h1qqX0A4FIa9ysaA==","signatures":[{"sig":"MEUCIDvzN6xaMMUKnb4CXKbwHwEnc6LT4C67Ze7Utw4Q19htAiEA3U0uvV5SKPQCTgovfO6KBo8WUfCUEMdS3kZcn28KJGM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":425288},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"af370e7af4837cf3db069c3ee1758c90f94f7d32","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.17.0","dependencies":{"esbuild":"~0.23.0","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.17.1_1724513885644_0.364447514552519","host":"s3://npm-registry-packages"}},"4.18.0":{"name":"tsx","version":"4.18.0","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.18.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"c5c6e8af9e7d162446ed22dc7b53dc4792bf920b","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.18.0.tgz","fileCount":46,"integrity":"sha512-a1jaKBSVQkd6yEc1/NI7G6yHFfefIcuf3QJST7ZEyn4oQnxLYrZR5uZAM8UrwUa3Ge8suiZHcNS1gNrEvmobqg==","signatures":[{"sig":"MEYCIQDucpAOkm+G2DkJz36e/6+yB6MEm3GFACXcP8tsxsacnAIhAI+aaor+V8itR0TrlubKL/pBGpXRntQX8n9ZOW3GMoNC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":425516},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"474ea71ff9c9cbd2d3a5dbe0951f2c2d92f2e26a","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.17.0","dependencies":{"esbuild":"~0.23.0","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.18.0_1724515954888_0.6461516361628683","host":"s3://npm-registry-packages"}},"4.19.0":{"name":"tsx","version":"4.19.0","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.19.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"6166cb399b17d14d125e6158d23384045cfdf4f6","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.19.0.tgz","fileCount":46,"integrity":"sha512-bV30kM7bsLZKZIOCHeMNVMJ32/LuJzLVajkQI/qf92J2Qr08ueLQvW00PUZGiuLPP760UINwupgUj8qrSCPUKg==","signatures":[{"sig":"MEQCIBL+mC2JRszDXeDDncbG69rT4gx87GWExykbvs5m2VzHAiBDHX5iP5M3kddPn1xCBKfHVpbhfAdwu8oTTBkVL4ZTbA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":425788},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"157c3ec6bcf0b0a5e387080576404c00f7fd662f","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.17.0","dependencies":{"esbuild":"~0.23.0","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.19.0_1724740990852_0.8614196908772274","host":"s3://npm-registry-packages"}},"4.19.1":{"name":"tsx","version":"4.19.1","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.19.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"b7bffdf4b565813e4dea14b90872af279cd0090b","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.19.1.tgz","fileCount":46,"integrity":"sha512-0flMz1lh74BR4wOvBjuh9olbnwqCPc35OOlfyzHba0Dc+QNUeWX/Gq2YTbnwcWPO3BMd8fkzRVrHcsR+a7z7rA==","signatures":[{"sig":"MEQCIAzoP+/+VETNH6fZ7jxsJfD/xO/D52e0+3NLnnxVw2lAAiBtopuP0brmq91h98fHL9RjO2wc/Mrf8w+9hqdSHaxQ7Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":425922},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"0329bfc731346d6c8b6055c7f2882e5c3155a7ec","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.17.0","dependencies":{"esbuild":"~0.23.0","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.19.1_1726120828011_0.6727105169511847","host":"s3://npm-registry-packages"}},"4.19.2":{"name":"tsx","version":"4.19.2","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.19.2","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"2d7814783440e0ae42354d0417d9c2989a2ae92c","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.19.2.tgz","fileCount":46,"integrity":"sha512-pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g==","signatures":[{"sig":"MEUCIQCJMxlxKvSA6cQQcM9SEsI3tBUP/p6ZyoQVXf00SYCO9wIge5ToI0oOPFPnN6rey7XbkIMTngSsuBSUzJeZtMbvK/g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":426124},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"7c47074652790e8225bb9c0d3123fc92e75d3695","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.18.0","dependencies":{"esbuild":"~0.23.0","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.19.2_1729985071746_0.023599950550363236","host":"s3://npm-registry-packages"}},"4.19.3":{"name":"tsx","version":"4.19.3","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.19.3","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"2bdbcb87089374d933596f8645615142ed727666","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.19.3.tgz","fileCount":46,"integrity":"sha512-4H8vUNGNjQ4V2EOoGw005+c+dGuPSnhpPBPHBtsZdGZBk/iJb4kguGlPWaZTZ3q5nMtFOEsY0nRDlh9PJyd6SQ==","signatures":[{"sig":"MEUCIDPuvE1y8OAgiZzV4og41w3gqd8dlmQxIs6YWcLnWSd2AiEA/0temeRn/N4406gBSgq+dcyxJgWlSPLd2WCXtwWyIrA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":426124},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"e04e6c6ccb56f74db5036c358d6c6b24bebe6319","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.18.0","dependencies":{"esbuild":"~0.25.0","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.19.3_1739926552256_0.477174189552904","host":"s3://npm-registry-packages-npm-production"}},"4.19.4":{"name":"tsx","version":"4.19.4","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.19.4","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"647b4141f4fdd9d773a9b564876773d2846901f4","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.19.4.tgz","fileCount":48,"integrity":"sha512-gK5GVzDkJK1SI1zwHf32Mqxf2tSJkNx+eYcNly5+nHvWqXUJYUkWBQtKauoESz3ymezAI++ZwT855x5p5eop+Q==","signatures":[{"sig":"MEYCIQDLNi5ZzF/cng+g8yMGDNuCs5PrNIdkI81DbWyaC5eKSQIhAJTRlgKcO+Xw6/W/xJV0J8+4z+iRWqmY9ALd1JGSRDvd","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":426585},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"3c34caa1a16773d5b4ff53dd367d6012e93feaec","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.18.3","dependencies":{"esbuild":"~0.25.0","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.19.4_1745906971418_0.14554824033070668","host":"s3://npm-registry-packages-npm-production"}},"4.20.0":{"name":"tsx","version":"4.20.0","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.20.0","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"269e97d9ade5b0d2a6ad684540793696d2bf3506","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.20.0.tgz","fileCount":50,"integrity":"sha512-TsmdeXxcZYiJ2MKV7fdq38na0CKyLRtCeMqTeHMmrVXQ/gf5yTeJohh+sgr7MnMGsjeKXzHzy+TwOOTR1arl+Q==","signatures":[{"sig":"MEQCIACDx64bACOm7Q9rAj1GsYw+ZVSx6/e27/533VP+0+YDAiBBL54HdVCegzhn0dhlbMTomdJ6175lkWYJAvwnHj2teQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":436927},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"e97fe6738767aba0bca18514cc81c73ce1e3cc2c","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.19.1","dependencies":{"esbuild":"~0.25.0","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.20.0_1749607597046_0.4739714980006293","host":"s3://npm-registry-packages-npm-production"}},"4.20.1":{"name":"tsx","version":"4.20.1","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.20.1","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"f5ef9a5d4839184e4216064e3655cc9a65761986","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.20.1.tgz","fileCount":50,"integrity":"sha512-JsFUnMHIE+g8KllOvWTrSOwCKM10xLcsesvUQR61znsbrcwZ4U/QaqdymmvTqG5GMD7k2VFv9UG35C4dRy34Ag==","signatures":[{"sig":"MEQCIEiY6/4Fey5CQvpzyaxKHtwxDY5Oe9xfOjkUdTuO89bLAiBFs1i2WUb85iS6FzR/dIYMzWBwUMKWlteIfSNEgD/eJA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":437063},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"9bd25469c26db2b93e1e8500fb28d04352e1ef70","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.19.1","dependencies":{"esbuild":"~0.25.0","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.20.1_1749630267495_0.5705445155350197","host":"s3://npm-registry-packages-npm-production"}},"4.20.2":{"name":"tsx","version":"4.20.2","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.20.2","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"a1019ea01ef1f3d16db196a530a6103e960b3142","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.20.2.tgz","fileCount":50,"integrity":"sha512-He0ZWr41gLa4vD30Au3yuwpe0HXaCZbclvl8RBieUiJ9aFnPMWUPIyvw3RU8+1Crjfcrauvitae2a4tUzRAGsw==","signatures":[{"sig":"MEQCIBVt/6IZXo/QcB+gTaX7EDsjrYH/UyzEUuk71w633bz8AiAf4bCVCGyxLqpyA1IqDbCWqmHPM+x+6tJ1Db7tnrceng==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":437581},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"c1882680bce9df3052bef23dbed1b95728e802bb","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.19.1","dependencies":{"esbuild":"~0.25.0","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.20.2_1749715150300_0.12761290600086972","host":"s3://npm-registry-packages-npm-production"}},"4.20.3":{"name":"tsx","version":"4.20.3","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.20.3","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"f913e4911d59ad177c1bcee19d1035ef8dd6e2fb","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.20.3.tgz","fileCount":50,"integrity":"sha512-qjbnuR9Tr+FJOMBqJCW5ehvIo/buZq7vH7qD7JziU98h6l3qGy0a/yPFjwO+y0/T7GFpNgNAvEcPPVfyT8rrPQ==","signatures":[{"sig":"MEYCIQCTHrhZMXmxMs86eR0hjau6To2ZPsafVoGAJuXisRc5RgIhAIkBD0CMtSSjPUhRJb2AsgFLnRUZNFaHwKWR7NzwGO+n","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":432520},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"dadcf27b2e1721bd98e4e02d926180f060a5f48a","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.19.1","dependencies":{"esbuild":"~0.25.0","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.20.3_1749803929615_0.8750431916118977","host":"s3://npm-registry-packages-npm-production"}},"4.20.4":{"name":"tsx","version":"4.20.4","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.20.4","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"3fcf255dbc8826bdde2820f1cff47e31075c1d30","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.20.4.tgz","fileCount":50,"integrity":"sha512-yyxBKfORQ7LuRt/BQKBXrpcq59ZvSW0XxwfjAt3w2/8PmdxaFzijtMhTawprSHhpzeM5BgU2hXHG3lklIERZXg==","signatures":[{"sig":"MEYCIQDlzrsHbKNtgPdc2ToMGLHt95WFg+BV4IFSHNX7vCmHggIhANj79M5BI4KTbra0TNTZBbGAHsp3SI9B/ORFE0W2cDMo","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":432661},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"a639836fad4e60dbda6498b7851b6890e0c60a08","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.19.3","dependencies":{"esbuild":"~0.25.0","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.20.4_1755001824182_0.9711834675122424","host":"s3://npm-registry-packages-npm-production"}},"4.20.5":{"name":"tsx","version":"4.20.5","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.20.5","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"856c8b2f114c50a9f4ae108126967a167f240dc7","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.20.5.tgz","fileCount":50,"integrity":"sha512-+wKjMNU9w/EaQayHXb7WA7ZaHY6hN8WgfvHNQ3t1PnU91/7O8TcTnIhCDYTZwnt8JsO9IBqZ30Ln1r7pPF52Aw==","signatures":[{"sig":"MEQCIFpjEqJZulNj/UeWXj5rHkXPmqsPXFW7bgyV8UtQieUwAiBQw7imkgR8aWkNamqaaRvFVwwCEp5aaZvTAy3ncXN0rA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":432524},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"e6d1a4726540eb4dbef9b331acb13a294c674e96","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.19.3","dependencies":{"esbuild":"~0.25.0","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.20.5_1756005411620_0.05300146191830346","host":"s3://npm-registry-packages-npm-production"}},"4.20.6":{"name":"tsx","version":"4.20.6","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","_id":"tsx@4.20.6","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"homepage":"https://tsx.is","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"bin":{"tsx":"dist/cli.mjs"},"dist":{"shasum":"8fb803fd9c1f70e8ccc93b5d7c5e03c3979ccb2e","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.20.6.tgz","fileCount":50,"integrity":"sha512-ytQKuwgmrrkDTFP4LjR0ToE2nqgy886GpvRSpU0JAnrdBYppuY5rLkRUYPU1yCryb24SsKBTL/hlDQAEFVwtZg==","signatures":[{"sig":"MEYCIQCOAO5LhquKwwqabG4MYpzJip75mJkY/J6hM4576fa+JwIhAOarxa/WDdV5EsFjyOaBL0I6ESRfGsfceElkCsDewuDH","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":432652},"type":"module","engines":{"node":">=18.0.0"},"exports":{".":"./dist/loader.mjs","./cjs":"./dist/cjs/index.cjs","./cli":"./dist/cli.mjs","./esm":"./dist/esm/index.mjs","./repl":"./dist/repl.mjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./preflight":"./dist/preflight.cjs","./patch-repl":"./dist/patch-repl.cjs","./package.json":"./package.json","./suppress-warnings":"./dist/suppress-warnings.cjs"},"gitHead":"710a42473ebfdff362818bed4fd1f5c7a27837e2","_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"repository":{"url":"git+https://github.com/privatenumber/tsx.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","directories":{},"_nodeVersion":"20.19.3","dependencies":{"esbuild":"~0.25.0","get-tsconfig":"^4.7.5"},"_hasShrinkwrap":false,"optionalDependencies":{"fsevents":"~2.3.3"},"_npmOperationalInternal":{"tmp":"tmp/tsx_4.20.6_1758849038103_0.626159540453221","host":"s3://npm-registry-packages-npm-production"}},"4.21.0":{"name":"tsx","version":"4.21.0","description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/privatenumber/tsx.git"},"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"type":"module","bin":{"tsx":"dist/cli.mjs"},"exports":{"./package.json":"./package.json",".":"./dist/loader.mjs","./patch-repl":"./dist/patch-repl.cjs","./cjs":"./dist/cjs/index.cjs","./cjs/api":{"import":{"types":"./dist/cjs/api/index.d.mts","default":"./dist/cjs/api/index.mjs"},"require":{"types":"./dist/cjs/api/index.d.cts","default":"./dist/cjs/api/index.cjs"}},"./esm":"./dist/esm/index.mjs","./esm/api":{"import":{"types":"./dist/esm/api/index.d.mts","default":"./dist/esm/api/index.mjs"},"require":{"types":"./dist/esm/api/index.d.cts","default":"./dist/esm/api/index.cjs"}},"./cli":"./dist/cli.mjs","./suppress-warnings":"./dist/suppress-warnings.cjs","./preflight":"./dist/preflight.cjs","./repl":"./dist/repl.mjs"},"homepage":"https://tsx.is","engines":{"node":">=18.0.0"},"dependencies":{"esbuild":"~0.27.0","get-tsconfig":"^4.7.5"},"optionalDependencies":{"fsevents":"~2.3.3"},"_id":"tsx@4.21.0","gitHead":"f6284cd50575ce6e8d110f63266d66cb9cde3b88","bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"_nodeVersion":"20.19.3","_npmVersion":"10.8.2","dist":{"integrity":"sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==","shasum":"32aa6cf17481e336f756195e6fe04dae3e6308b1","tarball":"https://registry.npmjs.org/tsx/-/tsx-4.21.0.tgz","fileCount":50,"unpackedSize":432652,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQCbp4AC2VMSnFgyuecTc9Pe5K3X88thLhrRitR63A9xwQIhAMy9jPsn8BTErV+IsKY62X8X54cj8366ba9EkTJYxpyG"}]},"_npmUser":{"name":"hirokiosame","email":"hiroki.osame@gmail.com"},"directories":{},"maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/tsx_4.21.0_1764518169186_0.3509222609280933"},"_hasShrinkwrap":false}},"time":{"created":"2015-08-20T01:25:39.249Z","modified":"2025-11-30T15:56:09.695Z","1.0.0":"2015-08-20T01:25:39.249Z","2.0.0":"2022-05-10T23:27:10.178Z","2.0.1":"2022-05-11T00:38:30.907Z","2.1.0":"2022-05-13T18:17:38.043Z","3.0.0":"2022-05-17T17:02:58.410Z","3.1.0":"2022-05-17T17:34:32.670Z","3.2.0":"2022-05-17T23:57:57.388Z","3.2.1":"2022-05-18T11:40:22.239Z","3.3.0":"2022-05-18T16:09:46.780Z","3.3.1":"2022-05-18T20:32:57.568Z","3.4.0":"2022-05-19T15:27:37.879Z","3.4.1":"2022-05-25T01:27:44.805Z","3.4.2":"2022-05-25T20:58:49.489Z","3.4.3":"2022-06-16T04:28:34.193Z","3.5.0":"2022-06-21T21:44:01.434Z","3.5.1":"2022-06-23T19:50:52.147Z","3.6.0":"2022-06-24T00:01:06.036Z","3.7.0":"2022-07-02T05:21:08.662Z","3.7.1":"2022-07-02T18:45:36.673Z","3.8.0":"2022-07-13T00:56:39.393Z","3.8.1":"2022-08-08T01:08:54.916Z","3.8.2":"2022-08-11T16:43:16.430Z","3.9.0":"2022-08-29T13:31:23.900Z","3.10.0":"2022-10-07T06:39:09.274Z","3.10.1":"2022-10-07T10:44:53.247Z","3.10.2":"2022-10-17T17:46:59.751Z","3.10.3":"2022-10-18T01:29:45.636Z","3.10.4":"2022-10-19T16:23:36.525Z","3.11.0":"2022-10-24T00:02:56.297Z","3.12.0":"2022-11-10T07:38:22.315Z","3.12.1":"2022-11-12T13:24:49.371Z","3.12.2":"2023-01-09T08:04:45.535Z","3.12.3":"2023-02-06T03:27:03.297Z","3.12.4":"2023-03-12T13:35:11.246Z","3.12.5":"2023-03-13T06:53:49.271Z","3.12.6":"2023-03-20T17:28:17.005Z","3.12.7":"2023-04-30T00:47:35.049Z","3.12.8":"2023-09-01T11:10:21.955Z","3.12.9":"2023-09-12T12:51:45.507Z","3.12.10":"2023-09-13T12:34:48.812Z","3.13.0":"2023-09-24T13:55:08.966Z","3.14.0":"2023-10-17T21:59:05.132Z","4.0.0":"2023-11-09T07:51:40.794Z","4.1.0":"2023-11-10T11:27:57.373Z","4.1.1":"2023-11-11T02:59:45.136Z","4.1.2":"2023-11-14T06:26:06.153Z","4.1.3":"2023-11-17T10:29:06.788Z","4.1.4":"2023-11-19T06:47:41.532Z","4.2.0":"2023-11-21T06:58:14.753Z","4.2.1":"2023-11-22T14:38:03.865Z","4.3.0":"2023-11-22T17:15:55.330Z","4.4.0":"2023-11-23T11:10:19.745Z","4.5.0":"2023-11-24T21:32:23.842Z","4.5.1":"2023-11-27T23:36:07.737Z","4.6.0":"2023-11-27T23:52:58.467Z","4.6.1":"2023-11-30T02:09:57.610Z","4.6.2":"2023-12-02T08:48:46.770Z","4.7.0":"2023-12-19T15:49:56.647Z","4.7.1":"2024-02-10T01:01:32.227Z","4.7.2":"2024-04-04T08:17:21.455Z","4.7.3":"2024-04-25T10:34:39.311Z","4.8.0":"2024-05-01T02:10:37.342Z","4.8.1":"2024-05-01T04:47:02.661Z","4.8.2":"2024-05-01T07:21:52.251Z","4.9.0":"2024-05-03T08:17:15.134Z","4.9.1":"2024-05-04T13:59:18.320Z","4.9.2":"2024-05-06T00:38:24.546Z","4.9.3":"2024-05-06T01:36:21.188Z","4.9.4":"2024-05-10T16:02:57.652Z","4.9.5":"2024-05-11T13:22:10.210Z","4.10.0":"2024-05-11T15:51:37.302Z","4.10.1":"2024-05-12T11:14:51.972Z","4.10.2":"2024-05-13T09:57:57.582Z","4.10.3":"2024-05-16T06:54:44.329Z","4.10.4":"2024-05-17T02:59:46.737Z","4.10.5":"2024-05-18T07:13:30.046Z","4.11.0":"2024-05-23T03:51:36.797Z","4.11.1":"2024-06-03T03:01:30.040Z","4.11.2":"2024-06-03T03:55:48.050Z","4.12.0":"2024-06-06T04:58:28.127Z","4.12.1":"2024-06-07T00:49:36.072Z","4.13.0":"2024-06-07T03:01:29.579Z","4.13.1":"2024-06-07T06:36:18.142Z","4.13.2":"2024-06-07T10:07:56.635Z","4.13.3":"2024-06-08T03:06:19.801Z","4.14.0":"2024-06-08T11:44:41.886Z","4.14.1":"2024-06-08T23:23:12.440Z","4.15.0":"2024-06-09T06:27:35.488Z","4.15.1":"2024-06-09T10:20:51.375Z","4.15.2":"2024-06-10T23:29:06.667Z","4.15.3":"2024-06-13T01:04:08.600Z","4.15.4":"2024-06-13T06:03:49.210Z","4.15.5":"2024-06-15T00:53:59.462Z","4.15.6":"2024-06-17T09:45:25.677Z","4.15.7":"2024-06-21T04:03:16.209Z","4.15.8":"2024-06-28T13:10:21.278Z","4.15.9":"2024-06-29T00:49:49.697Z","4.16.0":"2024-06-29T06:13:55.502Z","4.16.1":"2024-07-03T06:38:11.538Z","4.16.2":"2024-07-03T08:30:15.534Z","4.16.3":"2024-07-31T02:07:08.089Z","4.16.4":"2024-08-01T04:21:24.791Z","4.16.5":"2024-08-01T09:45:20.180Z","4.17.0":"2024-08-08T08:10:43.337Z","4.17.1":"2024-08-24T15:38:05.852Z","4.18.0":"2024-08-24T16:12:35.164Z","4.19.0":"2024-08-27T06:43:11.069Z","4.19.1":"2024-09-12T06:00:28.228Z","4.19.2":"2024-10-26T23:24:32.056Z","4.19.3":"2025-02-19T00:55:52.450Z","4.19.4":"2025-04-29T06:09:31.666Z","4.20.0":"2025-06-11T02:06:37.284Z","4.20.1":"2025-06-11T08:24:27.757Z","4.20.2":"2025-06-12T07:59:10.521Z","4.20.3":"2025-06-13T08:38:49.847Z","4.20.4":"2025-08-12T12:30:24.425Z","4.20.5":"2025-08-24T03:16:51.878Z","4.20.6":"2025-09-26T01:10:38.401Z","4.21.0":"2025-11-30T15:56:09.488Z"},"bugs":{"url":"https://github.com/privatenumber/tsx/issues"},"author":{"name":"Hiroki Osame","email":"hiroki.osame@gmail.com"},"license":"MIT","homepage":"https://tsx.is","keywords":["cli","runtime","node","cjs","commonjs","esm","typescript","typescript runner"],"repository":{"type":"git","url":"git+https://github.com/privatenumber/tsx.git"},"description":"TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files","maintainers":[{"name":"hirokiosame","email":"hiroki.osame@gmail.com"}],"readme":"
\n \n\n\t\n\t\n\n
\n\n
\n\n
\nTypeScript Execute (tsx): The easiest way to run TypeScript in Node.js\n
\n\n","readmeFilename":"README.md","users":{"qbb.sh":true,"flumpus-dev":true}}
\ No newline at end of file
diff --git a/.npm-cache/_cacache/content-v2/sha512/09/e8/7eee8c79a9eecb26e2c7a18d1f7a1de91ee5031c071151ec8bd95620859c1fa64348cbffbc39c8346b752e4a86336af9b2970b8b59039fde19748e330c23 b/.npm-cache/_cacache/content-v2/sha512/09/e8/7eee8c79a9eecb26e2c7a18d1f7a1de91ee5031c071151ec8bd95620859c1fa64348cbffbc39c8346b752e4a86336af9b2970b8b59039fde19748e330c23
deleted file mode 100644
index f09abb3..0000000
Binary files a/.npm-cache/_cacache/content-v2/sha512/09/e8/7eee8c79a9eecb26e2c7a18d1f7a1de91ee5031c071151ec8bd95620859c1fa64348cbffbc39c8346b752e4a86336af9b2970b8b59039fde19748e330c23 and /dev/null differ
diff --git a/.npm-cache/_cacache/content-v2/sha512/0e/1b/939af656bb1e07d543a758c077b24d2c6da0953a84198eff2ed6b0e84d5d074dd19e9bd864019b65e09672f0fdb3e018349d3f9831e385c95af8cdc1b94f b/.npm-cache/_cacache/content-v2/sha512/0e/1b/939af656bb1e07d543a758c077b24d2c6da0953a84198eff2ed6b0e84d5d074dd19e9bd864019b65e09672f0fdb3e018349d3f9831e385c95af8cdc1b94f
deleted file mode 100644
index 000ff93..0000000
Binary files a/.npm-cache/_cacache/content-v2/sha512/0e/1b/939af656bb1e07d543a758c077b24d2c6da0953a84198eff2ed6b0e84d5d074dd19e9bd864019b65e09672f0fdb3e018349d3f9831e385c95af8cdc1b94f and /dev/null differ
diff --git a/.npm-cache/_cacache/content-v2/sha512/0e/dc/0fd83604481e7784437592a81ffd56d1bc3674677d6c95a8e4afd1d3435cbf55a79e7fc4ddf7e923ae0bc1a9ecb17d0de27433ea9668276f545400e4c9ef b/.npm-cache/_cacache/content-v2/sha512/0e/dc/0fd83604481e7784437592a81ffd56d1bc3674677d6c95a8e4afd1d3435cbf55a79e7fc4ddf7e923ae0bc1a9ecb17d0de27433ea9668276f545400e4c9ef
deleted file mode 100644
index 4d839f1..0000000
--- a/.npm-cache/_cacache/content-v2/sha512/0e/dc/0fd83604481e7784437592a81ffd56d1bc3674677d6c95a8e4afd1d3435cbf55a79e7fc4ddf7e923ae0bc1a9ecb17d0de27433ea9668276f545400e4c9ef
+++ /dev/null
@@ -1 +0,0 @@
-{"_id":"run-parallel","_rev":"50-daf9a027e86222812ff461a28f45d2af","name":"run-parallel","dist-tags":{"latest":"1.2.0"},"versions":{"0.1.0":{"name":"run-parallel","version":"0.1.0","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"author":{"url":"http://feross.org/","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","_id":"run-parallel@0.1.0","maintainers":[{"name":"feross","email":"feross@feross.org"}],"homepage":"https://github.com/feross/run-parallel","bugs":{"url":"https://github.com/feross/run-parallel/issues"},"dist":{"shasum":"e947a17a3bffae5a088f8d299b3f4f446b63e0c4","tarball":"https://registry.npmjs.org/run-parallel/-/run-parallel-0.1.0.tgz","integrity":"sha512-zwyw1YEOguOQVFzto6FTx1PdeisMD2L5sEMfG5dzgcrEejaYUnNsSQ6OkaILDZ6tqzZRatc8cSnS1gC1PSwJHw==","signatures":[{"sig":"MEYCIQDwx24jFePMAWcoWlBSNSrYyAk9973b5LWWjjMaGS5NlAIhAJZz6c0Gr5A+GUN2rLDV3Nme5EC2azNbY6EYXAqoEv+t","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"tape test/*.js"},"_npmUser":{"name":"feross","email":"feross@feross.org"},"testling":{"files":"test/*.js","browsers":["ie/9..latest","chrome/25..latest","firefox/20..latest","safari/6..latest","opera/15.0..latest"]},"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"_npmVersion":"1.4.3","description":"Run an array of functions in parallel","directories":{},"dependencies":{},"devDependencies":{"tape":"^2.12.3"}},"0.1.1":{"name":"run-parallel","version":"0.1.1","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"author":{"url":"http://feross.org/","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","_id":"run-parallel@0.1.1","maintainers":[{"name":"feross","email":"feross@feross.org"}],"homepage":"https://github.com/feross/run-parallel","bugs":{"url":"https://github.com/feross/run-parallel/issues"},"dist":{"shasum":"17e393e7387f0a35e187a45b527549deea7307d3","tarball":"https://registry.npmjs.org/run-parallel/-/run-parallel-0.1.1.tgz","integrity":"sha512-6fNlVhrwHZyJwioEaZ5GWTXNXh72qnTeDe7XLiUAr7jJ0V/c8u6KtyaoiUxhm+4kU2wgnTtjIm7Zwryn63iANw==","signatures":[{"sig":"MEQCIC6Xofi9MbMcz3Zq2PCuRxPwAbBooXJ4XdPWaF3WF71+AiAAgiSN1A35mImcvLN5mEZ6F9wUHCAJUTceFflEeJS9gQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"tape test/*.js"},"_npmUser":{"name":"feross","email":"feross@feross.org"},"testling":{"files":"test/*.js","browsers":["ie/9..latest","chrome/25..latest","firefox/20..latest","safari/6..latest","opera/15.0..latest"]},"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"_npmVersion":"1.4.3","description":"Run an array of functions in parallel","directories":{},"dependencies":{},"devDependencies":{"tape":"^2.12.3"}},"0.2.0":{"name":"run-parallel","version":"0.2.0","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"author":{"url":"http://feross.org/","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","_id":"run-parallel@0.2.0","maintainers":[{"name":"feross","email":"feross@feross.org"}],"homepage":"https://github.com/feross/run-parallel","bugs":{"url":"https://github.com/feross/run-parallel/issues"},"dist":{"shasum":"5d018e89691c1af8bf150973b9a1f22e4cd04797","tarball":"https://registry.npmjs.org/run-parallel/-/run-parallel-0.2.0.tgz","integrity":"sha512-E7MJk7bwP3KPfq1ldjb2Jh4ULV7OO/a23IpdqegklThUEwmBDIK+gDxXqBoMBwgjNHh0uItUwUf6da51V9gpWw==","signatures":[{"sig":"MEQCIE3drMfHFSrNdT3l9nSZQ8MT5GpS9P8N1W3JUXJ9SMGUAiBItWCDRPuZz2FED7vCsWOfYmqmfVY2hIjiGJVZDZvZ0w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"tape test/*.js"},"_npmUser":{"name":"feross","email":"feross@feross.org"},"testling":{"files":"test/*.js","browsers":["ie/9..latest","chrome/25..latest","chrome/canary","firefox/20..latest","firefox/nightly","safari/6..latest","opera/12..latest","opera/next","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"_npmVersion":"1.4.3","description":"Run an array of functions in parallel","directories":{},"dependencies":{},"devDependencies":{"tape":"^2.12.3"}},"0.3.0":{"name":"run-parallel","version":"0.3.0","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"author":{"url":"http://feross.org/","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","_id":"run-parallel@0.3.0","maintainers":[{"name":"feross","email":"feross@feross.org"}],"homepage":"https://github.com/feross/run-parallel","bugs":{"url":"https://github.com/feross/run-parallel/issues"},"dist":{"shasum":"2912228d34e1e370c70b9f794036de1c3eeae715","tarball":"https://registry.npmjs.org/run-parallel/-/run-parallel-0.3.0.tgz","integrity":"sha512-fYp5n5QFbxsSmGtq+e//fM3pKw0q+axkoGh3VH7REBMAP2pLpU66VHerQz/nReJbiIjNQVpfDfI5VSO15G43fQ==","signatures":[{"sig":"MEYCIQClKlmBdXr+KY9Hmx3deb6dZg3uUnwoBu284XsUneolSwIhALjOzgNU4VdFuz7LOvHexWsui7Omks4Vd0rr4WoNBWm/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"tape test/*.js"},"_npmUser":{"name":"feross","email":"feross@feross.org"},"testling":{"files":"test/*.js","browsers":["ie/9..latest","chrome/25..latest","chrome/canary","firefox/20..latest","firefox/nightly","safari/6..latest","opera/12..latest","opera/next","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"_npmVersion":"1.4.3","description":"Run an array of functions in parallel","directories":{},"dependencies":{},"devDependencies":{"tape":"^2.12.3"}},"1.0.0":{"name":"run-parallel","version":"1.0.0","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"author":{"url":"http://feross.org/","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","_id":"run-parallel@1.0.0","maintainers":[{"name":"feross","email":"feross@feross.org"}],"homepage":"https://github.com/feross/run-parallel","bugs":{"url":"https://github.com/feross/run-parallel/issues"},"dist":{"shasum":"1dd0787f994d17f8d1bbe7e910e0cc3036800cbc","tarball":"https://registry.npmjs.org/run-parallel/-/run-parallel-1.0.0.tgz","integrity":"sha512-ye3bjudEvqU0nQxz/xM6Mz+RU8uo+pm8vdTD3AwuAQg+/hF1fWV76GVbXjt1wz9hFm8uysmZITNf+UTunc/m3A==","signatures":[{"sig":"MEQCICWgZzsj7TE691oGIg2DB1aYV5w4/m4Et4RX+uRfIceRAiBslzag5q2Sh+5O2LyLeYre5KV/ZSlGxuTWTOy1i3UHZA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"tape test/*.js"},"_npmUser":{"name":"feross","email":"feross@feross.org"},"testling":{"files":"test/*.js","browsers":["ie/9..latest","chrome/25..latest","chrome/canary","firefox/20..latest","firefox/nightly","safari/6..latest","opera/12..latest","opera/next","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"_npmVersion":"1.4.3","description":"Run an array of functions in parallel","directories":{},"dependencies":{},"devDependencies":{"tape":"^2.12.3"}},"1.1.0":{"name":"run-parallel","version":"1.1.0","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"author":{"url":"http://feross.org/","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","_id":"run-parallel@1.1.0","maintainers":[{"name":"feross","email":"feross@feross.org"}],"homepage":"https://github.com/feross/run-parallel","bugs":{"url":"https://github.com/feross/run-parallel/issues"},"dist":{"shasum":"6c51c3b7e06400a39f38e34aa1e76463a015e67f","tarball":"https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.0.tgz","integrity":"sha512-4cDIfL6b98ijT6xlVcPFXNuqF2ZWWZ6xuPrK+dMvqSxv1/Mj+OncDXWnAl2+O9gnLmormLIsLvfhLs/c0e1v9Q==","signatures":[{"sig":"MEQCIEZWKp4A454ergL7p2l3wCPuoneCz+QHBRFjUrogyqYzAiBneLsGr9t3x9jq5m3AeszyxKsW6xyyA/uv0ucQ8NYN9A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6c51c3b7e06400a39f38e34aa1e76463a015e67f","gitHead":"e456882920f3ee2bcf8ba669ec4a8fd579630e57","scripts":{"test":"standard && tape test/*.js"},"_npmUser":{"name":"feross","email":"feross@feross.org"},"testling":{"files":"test/*.js","browsers":["ie/9..latest","chrome/25..latest","chrome/canary","firefox/20..latest","firefox/nightly","safari/6..latest","opera/12..latest","opera/next","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"_npmVersion":"2.7.0","description":"Run an array of functions in parallel","directories":{},"_nodeVersion":"1.5.1","dependencies":{"dezalgo":"^1.0.1"},"devDependencies":{"tape":"^2.12.3","standard":"^3.2.0"}},"1.1.1":{"name":"run-parallel","version":"1.1.1","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"author":{"url":"http://feross.org/","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","_id":"run-parallel@1.1.1","maintainers":[{"name":"feross","email":"feross@feross.org"}],"homepage":"https://github.com/feross/run-parallel","bugs":{"url":"https://github.com/feross/run-parallel/issues"},"dist":{"shasum":"043c1f40e5ea94485f6858b79c6ca08254d0720e","tarball":"https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.1.tgz","integrity":"sha512-5IdyV87k+RyYENG9GClriqfCUh6IlV2//vWpFjSYVRdUe8jB+0B4W/79znBYqlPSnYh/N0cABrRNZhgPFhr4kQ==","signatures":[{"sig":"MEQCIHN4mtzj1cPGOyJjrejoyBNqotQFV2pPb0tr+rbOf8sjAiBtaAUAWoBd2EoWSNlkj4wBrDhOzJEVJe54O4X4AhSA/g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"043c1f40e5ea94485f6858b79c6ca08254d0720e","gitHead":"5a58a11b8a33c03ed6a8d865670d0a0fb22e2def","scripts":{"test":"standard && tape test/*.js"},"_npmUser":{"name":"feross","email":"feross@feross.org"},"testling":{"files":"test/*.js","browsers":["ie/9..latest","chrome/25..latest","chrome/canary","firefox/20..latest","firefox/nightly","safari/6..latest","opera/12..latest","opera/next","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"_npmVersion":"2.7.4","description":"Run an array of functions in parallel","directories":{},"_nodeVersion":"0.12.2","dependencies":{"dezalgo":"^1.0.1"},"devDependencies":{"tape":"^4.0.0","standard":"^3.2.0"}},"1.1.2":{"name":"run-parallel","version":"1.1.2","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"author":{"url":"http://feross.org/","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","_id":"run-parallel@1.1.2","maintainers":[{"name":"feross","email":"feross@feross.org"}],"homepage":"https://github.com/feross/run-parallel","bugs":{"url":"https://github.com/feross/run-parallel/issues"},"dist":{"shasum":"199a63b1bbf76dbce26f3f5499e5e4f993dae8c6","tarball":"https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.2.tgz","integrity":"sha512-ffdoX/IydCSRCkgctu8EYTuoaX1iY7TpQ2bXIHsADV92Vyk6JroqOJhjk8BXFMfMvj/TpjsxEzFB5h+lRMN8Qw==","signatures":[{"sig":"MEUCIQCZ/zyFm6B79vxPcw+YtHyVcl29K/DeK6pq4A81ik2aGwIgboTLaO4nyZhVLbHYVnxkKB4dLUpoVB0niFhn8sPo/cg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"199a63b1bbf76dbce26f3f5499e5e4f993dae8c6","gitHead":"4b1ae3c9972604852d3484a2303cf68d50d9db00","scripts":{"test":"standard && npm run test-node && npm run test-browser","test-node":"tape test/*.js","test-browser":"zuul -- test/*.js","test-browser-local":"zuul --local -- test/*.js"},"_npmUser":{"name":"feross","email":"feross@feross.org"},"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"_npmVersion":"2.11.3","description":"Run an array of functions in parallel","directories":{},"_nodeVersion":"2.3.1","dependencies":{"dezalgo":"^1.0.1"},"devDependencies":{"tape":"^4.0.0","zuul":"^3.1.0","standard":"^4.3.2"}},"1.1.3":{"name":"run-parallel","version":"1.1.3","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"author":{"url":"http://feross.org/","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","_id":"run-parallel@1.1.3","maintainers":[{"name":"feross","email":"feross@feross.org"}],"homepage":"https://github.com/feross/run-parallel","bugs":{"url":"https://github.com/feross/run-parallel/issues"},"dist":{"shasum":"c8ffa1a42bc05d4b526878382f6860a1baef629b","tarball":"https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.3.tgz","integrity":"sha512-9+FJGKKcZFJgKct0f/1MCU6sTkNoq80G5rPfGMmRgUSZserzji4hdIrRMmFKXh8sDDtuYeNRnNf+i0o2WzrLPg==","signatures":[{"sig":"MEUCIQDjAalHyVgIi9hp/iuAHx0nRL6j0gyOe4W6cCsRMio3zwIgVj92UkwURuzqO6+zg0qbwxm4Tvo/hOsaNNEKuBc96pM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c8ffa1a42bc05d4b526878382f6860a1baef629b","gitHead":"5012c842f9e476debe856ad07f80e88428b3bf7c","scripts":{"test":"standard && npm run test-node && npm run test-browser","test-node":"tape test/*.js","test-browser":"zuul -- test/*.js","test-browser-local":"zuul --local -- test/*.js"},"_npmUser":{"name":"feross","email":"feross@feross.org"},"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"_npmVersion":"2.14.3","description":"Run an array of functions in parallel","directories":{},"_nodeVersion":"4.1.0","dependencies":{},"devDependencies":{"tape":"^4.0.0","zuul":"^3.1.0","standard":"^4.3.2"}},"1.1.4":{"name":"run-parallel","version":"1.1.4","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"author":{"url":"http://feross.org/","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","_id":"run-parallel@1.1.4","maintainers":[{"name":"feross","email":"feross@feross.org"}],"homepage":"https://github.com/feross/run-parallel","bugs":{"url":"https://github.com/feross/run-parallel/issues"},"dist":{"shasum":"b4fc05ab632a5e767bdd691b4aabe7b8acc9abb2","tarball":"https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.4.tgz","integrity":"sha512-LTel3I9NB0BJuhORiQRA/K5IuA25bgW1s50hA9miB0eHjcIpKaAjEtXjCDrTBowP8a+zrfQC8Dginygkp3GEDw==","signatures":[{"sig":"MEYCIQCLiq+SYWk96qc2GyFXey1vqcZ9c90yT3jW5fDp0/0c2AIhAMGKJVnF7G8yqvGK5aTNK0R5r1KHmVNaeLKdKXSI48QS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b4fc05ab632a5e767bdd691b4aabe7b8acc9abb2","gitHead":"259a254dfb7788c1a022093e484d19cae0a91591","scripts":{"test":"standard && npm run test-node && npm run test-browser","test-node":"tape test/*.js","test-browser":"zuul -- test/*.js","test-browser-local":"zuul --local -- test/*.js"},"_npmUser":{"name":"feross","email":"feross@feross.org"},"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"_npmVersion":"2.14.3","description":"Run an array of functions in parallel","directories":{},"_nodeVersion":"4.1.0","dependencies":{},"devDependencies":{"tape":"^4.0.0","zuul":"^3.1.0","standard":"^4.3.2"}},"1.1.5":{"name":"run-parallel","version":"1.1.5","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"author":{"url":"http://feross.org/","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","_id":"run-parallel@1.1.5","maintainers":[{"name":"feross","email":"feross@feross.org"}],"homepage":"https://github.com/feross/run-parallel","bugs":{"url":"https://github.com/feross/run-parallel/issues"},"dist":{"shasum":"feba6ee55e0941ad7925ae520af633c43ad2c52c","tarball":"https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.5.tgz","integrity":"sha512-KHFkb3BoRAhWrtSyHNOMebDmzTITDgMx+CDtO4uAT/O5Omr4hHxHaJSU1XaQKim+2hhkKi2NejPCdpkJBy/Dlg==","signatures":[{"sig":"MEYCIQCBJkKOk1B8UmSRdMy+gtW4lMHT28uMyYbJXdqJyPA7ZAIhANPk4CySlfpekTxelTLuivOzPbhJTX4qQukaHSDe33Kj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"feba6ee55e0941ad7925ae520af633c43ad2c52c","gitHead":"066b249755c7a81275e0cb722abe3bf00891aedf","scripts":{"test":"standard && npm run test-node && npm run test-browser","test-node":"tape test/*.js","test-browser":"zuul -- test/*.js","test-browser-local":"zuul --local -- test/*.js"},"_npmUser":{"name":"feross","email":"feross@feross.org"},"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"_npmVersion":"2.14.12","description":"Run an array of functions in parallel","directories":{},"_nodeVersion":"4.3.2","dependencies":{},"devDependencies":{"tape":"^4.0.0","zuul":"^3.1.0","standard":"^6.0.5"},"_npmOperationalInternal":{"tmp":"tmp/run-parallel-1.1.5.tgz_1457663877572_0.2544198150280863","host":"packages-13-west.internal.npmjs.com"}},"1.1.6":{"name":"run-parallel","version":"1.1.6","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"author":{"url":"http://feross.org/","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","_id":"run-parallel@1.1.6","maintainers":[{"name":"feross","email":"feross@feross.org"}],"homepage":"https://github.com/feross/run-parallel","bugs":{"url":"https://github.com/feross/run-parallel/issues"},"dist":{"shasum":"29003c9a2163e01e2d2dfc90575f2c6c1d61a039","tarball":"https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.6.tgz","integrity":"sha512-XmkpA2hWubG33ZcSAtFujmcsg4dPy9u1nwB0AtuHNEVF6SoDpZO2ldD24PS0Z5l8/C/sdaztIqPpeLzMugG7/A==","signatures":[{"sig":"MEUCIGpVjhe7Twf7VBNJPs6oTH5LrRrhVcOztOHSxSu7CgHeAiEA7FvglzxiTRLUy6Tlz5Y6UIKIk85YV3DIgrvBmF5NUWk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"29003c9a2163e01e2d2dfc90575f2c6c1d61a039","gitHead":"f9ee5e836569ec13712889a208a0a730069e22af","scripts":{"test":"standard && npm run test-node && npm run test-browser","test-node":"tape test/*.js","test-browser":"zuul -- test/*.js","test-browser-local":"zuul --local -- test/*.js"},"_npmUser":{"name":"feross","email":"feross@feross.org"},"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"_npmVersion":"2.15.1","description":"Run an array of functions in parallel","directories":{},"_nodeVersion":"4.4.1","dependencies":{},"devDependencies":{"tape":"^4.0.0","zuul":"^3.1.0","standard":"^6.0.5"},"_npmOperationalInternal":{"tmp":"tmp/run-parallel-1.1.6.tgz_1459234996201_0.7449365314096212","host":"packages-12-west.internal.npmjs.com"}},"1.1.7":{"name":"run-parallel","version":"1.1.7","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"author":{"url":"https://feross.org","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","_id":"run-parallel@1.1.7","maintainers":[{"name":"feross","email":"feross@feross.org"}],"homepage":"https://github.com/feross/run-parallel","bugs":{"url":"https://github.com/feross/run-parallel/issues"},"dist":{"shasum":"d8f40854b9e19d18c2e0e70180cc05cfc86b650f","tarball":"https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.7.tgz","fileCount":11,"integrity":"sha512-nB641a6enJOh0fdsFHR9SiVCiOlAyjMplImDdjV3kWCzJZw9rwzvGwmpGuPmfX//Yxblh0pkzPcFcxA81iwmxA==","signatures":[{"sig":"MEYCIQDP1E5XTLEGJH9D1IUA5/F4Otg5MdbmuFzyAt8Wq+qUDAIhAJS84PhfKqDhd/hAi8n+JqHbbHEHh0Yu0d4+ILVYQG2F","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11231},"main":"index.js","gitHead":"96e96f5123a6e5549e41066c8eaa73cf81bab04e","scripts":{"test":"standard && npm run test-node && npm run test-browser","test-node":"tape test/*.js","test-browser":"zuul -- test/*.js","test-browser-local":"zuul --local -- test/*.js"},"_npmUser":{"name":"feross","email":"feross@feross.org"},"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"_npmVersion":"5.6.0","description":"Run an array of functions in parallel","directories":{},"_nodeVersion":"8.9.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.0.0","zuul":"^3.1.0","standard":"*"},"_npmOperationalInternal":{"tmp":"tmp/run-parallel_1.1.7_1518577098220_0.8462576925327134","host":"s3://npm-registry-packages"}},"1.1.8":{"name":"run-parallel","version":"1.1.8","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"author":{"url":"http://feross.org/","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","_id":"run-parallel@1.1.8","maintainers":[{"name":"feross","email":"feross@feross.org"}],"homepage":"https://github.com/feross/run-parallel","bugs":{"url":"https://github.com/feross/run-parallel/issues"},"dist":{"shasum":"70e4e788f13a1ad9603254f6a2277f3843a5845c","tarball":"https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.8.tgz","fileCount":9,"integrity":"sha512-e5t1NVhr5VWmD9V9U4KjjSGkf5w6CcTPgw11A3CfIvkkQxlAKzX3usPUp1NUQTmpOOjU+f9QRICU3tMbKwn9ZQ==","signatures":[{"sig":"MEYCIQCcagpOgMx2LknBN20lyDERNSfdEfXwZJuWm68AwivQhgIhAO60NsJ6vghsAGP9yXUMDpF9WDoGqz2huvR2ATL7jBXn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10563},"main":"index.js","gitHead":"7cef4073cc786cec37cc039c59e34cb826a66388","scripts":{"test":"standard && npm run test-node && npm run test-browser","test-node":"tape test/*.js","test-browser":"airtap -- test/*.js","test-browser-local":"airtap --local -- test/*.js"},"_npmUser":{"name":"feross","email":"feross@feross.org"},"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"_npmVersion":"5.7.1","description":"Run an array of functions in parallel","directories":{},"_nodeVersion":"8.10.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.0.0","airtap":"0.0.4","standard":"*"},"_npmOperationalInternal":{"tmp":"tmp/run-parallel_1.1.8_1521286836627_0.9694094734834844","host":"s3://npm-registry-packages"}},"1.1.9":{"name":"run-parallel","version":"1.1.9","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"author":{"url":"http://feross.org/","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","_id":"run-parallel@1.1.9","maintainers":[{"name":"feross","email":"feross@feross.org"}],"homepage":"https://github.com/feross/run-parallel","bugs":{"url":"https://github.com/feross/run-parallel/issues"},"dist":{"shasum":"c9dd3a7cf9f4b2c4b6244e173a6ed866e61dd679","tarball":"https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz","fileCount":4,"integrity":"sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==","signatures":[{"sig":"MEUCIQCI+sAPSevsnh6ATUcYJ2ZPks9eSkag3Tttfwo3mDqSrQIgfEyB6k3AoBiBd/bNKfk1C5IfXEIJLSq9CChMCeX4WhI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6119,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4ScfCRA9TVsSAnZWagAALFgP/1+INLnEF7wZhzCZYGgt\nAv4wmMOi+6e17OSm7MBketwTxmGs74yxTi/DGHAH7qNwy9s2lKbJMcLTG7Qz\nFfinjAr1E5LFA7fAr1qeexRxcMSEMKlOPm4V4dDx6WmW9JpJVSQ4LDUFhG1C\nJFrlpxjB6ppQ0sqE8UGq6Y2MiuLp1A9mwn3/9wkZ8rka/HxOO/nMIsaNrupE\nkchduhq33CWJwvOEXFEQlzgn+gthfQHpYvryNF0GEODIv+TI9dvXK9BZaTAN\n0cq/M4JGIoSFy4p1rCjus12mWrJSs1rRpMfSp3rjntZjGDJWS0KBdkDLtcfn\nSA59J3S2WcJ6S6JeMqa16siSj6egY3b7J8TIkuUay+TcaYT9SjDK4AmmE5wN\newLKNnNu3O+sHXFw29IDMlSVPebimBtbkc1SElfNc5U9MeE+tKroXhQ4NYcs\nUz3gJR+GHt2eU4+EWS2UlxNbJHJ+DVOFF8QmJoT3Y7hopaqHrYYdLhYDCwl6\nU6AAVIt10Us+5nGZS0WmGrw/P+QQL30I7p58UFmJipg9PZNaEIgJRBApynky\nDMkDE6ICS82Pu/jv3d7enWE42GMgdc7mh+cp8ZQHkqWAD5YxGoWRIJgt3wAx\nky+bAmtR1mV8ZoqiCaDf+EAPXazquX/8SHzad41n3RxyB2qktQbYCDE2Z3z6\naS8I\r\n=A5eY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"2a6d9dc8d18ea24a413bd5bc949d2ed3a22f6c7b","scripts":{"test":"standard && npm run test-node && npm run test-browser","test-node":"tape test/*.js","test-browser":"airtap -- test/*.js","test-browser-local":"airtap --local -- test/*.js"},"_npmUser":{"name":"feross","email":"feross@feross.org"},"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"_npmVersion":"6.0.0","description":"Run an array of functions in parallel","directories":{},"_nodeVersion":"8.11.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.0.0","airtap":"0.0.4","standard":"*"},"_npmOperationalInternal":{"tmp":"tmp/run-parallel_1.1.9_1524705054493_0.12399995551668175","host":"s3://npm-registry-packages"}},"1.1.10":{"name":"run-parallel","version":"1.1.10","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"author":{"url":"https://feross.org","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","_id":"run-parallel@1.1.10","maintainers":[{"name":"feross","email":"feross@feross.org"}],"homepage":"https://github.com/feross/run-parallel","bugs":{"url":"https://github.com/feross/run-parallel/issues"},"dist":{"shasum":"60a51b2ae836636c81377df16cb107351bcd13ef","tarball":"https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.10.tgz","fileCount":4,"integrity":"sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw==","signatures":[{"sig":"MEUCIQDKWqR2lnCiRDkDymfFpFnwuhQOXTC1J9/whLILvjDQSQIgQPT43vYlxB4GjhSpjQXG2AHimk8xBG7PZl4CtukkPj4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6480,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfl5a2CRA9TVsSAnZWagAA5o0P/Ai6QVS0yTu5gcSlMs3O\nlOPX4izXHJkvgiLiWngcjct+m7n8fYxV631L2RPRFz2DnJgszlq5/l4/3jNe\nkLHSYMhVXD2r7HEPsVyuR6THf+X6LCssllAu7VN3buhhQGDZqO32vU91+Iuj\n22StAWkKxvCsbkwGiT4hqvdLW/COKrFIevwfoTm5PbTxjOMXYZOGI4K0NQy1\nTXGOeuAEQxf+O6S5xJpBa7rb5e4gyVOfiW+NbadMvu/v2Xx+xh7AIAOXqtFv\n89E1e+vI7YxOcsG8IOsOf4+XYAUttzd036oIUvUhvdBVq7viZrlcVEpByUP4\nnNzDcntrqrg8xz9mQECcFuH+fu7aHdXrPuPdnMoacGvk2+LuR2/PhB+x3+jG\ngw/ATk3wpk8lI0b68opRRSb7GLISCUaDhrlhWSmwbslTu7MnIta+WWX3LdSq\nMTVXJS0NGuXNnLZGBWdrvcrfL93RCBKlqolfs8COG88bmFqXoOPGrvoeRYvt\n2q6hfqG1VlPyfb8PLDjm1k09EfQlPjOfgblm5zhS8EmSZJhC+Mak/bgxNxwl\nF6n5eml5PTtst0y2nwsKSu2lZigfQkL4jo7VbSzPbZSq6KQo0fXLzETHSK4k\nLURrYjswlQ2tIcP15m2+OpOye0BhEIZdoavtbDgpF045C+r48GbOaMGkgncj\nJR6o\r\n=xfxk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":[{"url":"https://github.com/sponsors/feross","type":"github"},{"url":"https://www.patreon.com/feross","type":"patreon"},{"url":"https://feross.org/support","type":"consulting"}],"gitHead":"bc2229d932eaa2133fe1eb2ea309d33e905e5dd9","scripts":{"test":"standard && npm run test-node && npm run test-browser","test-node":"tape test/*.js","test-browser":"airtap -- test/*.js","test-browser-local":"airtap --local -- test/*.js"},"_npmUser":{"name":"feross","email":"feross@feross.org"},"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"_npmVersion":"6.14.8","description":"Run an array of functions in parallel","directories":{},"_nodeVersion":"14.14.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"tape":"^5.0.1","airtap":"^3.0.0","standard":"*"},"_npmOperationalInternal":{"tmp":"tmp/run-parallel_1.1.10_1603770037829_0.5038677423250195","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"run-parallel","version":"1.2.0","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"author":{"url":"https://feross.org","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","_id":"run-parallel@1.2.0","maintainers":[{"name":"feross","email":"feross@feross.org"}],"homepage":"https://github.com/feross/run-parallel","bugs":{"url":"https://github.com/feross/run-parallel/issues"},"dist":{"shasum":"66d1368da7bdf921eb9d95bd1a9229e7f21a43ee","tarball":"https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz","fileCount":4,"integrity":"sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==","signatures":[{"sig":"MEUCIQCgDvi2EAyyPczvNERNPxsJKEqi5qRckS+/St3IWvlt/AIgSoKR0VNW7NejbLX+LOEMP4zuiZxRhph0kvq0UrVime8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6563,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgI0vACRA9TVsSAnZWagAAYFIQAJv2prhLf/SBLhAXo/8h\n4if5q/RPTJqUXPrB+Egulc3R88y1da4SYM7QmObhlb8v0uSAMDH2JNFB+tPm\nPxpruymc+bfpzXVaxM5qkNnNo5srghc5P5RyJi6E98T4cvbg8V0RlFMOMBCl\nWuVl8W6FLDsezAI4H0IibYptzph3xy7Ptq1I9iaKAQT/UIaDi+DmtfY3jvjQ\nlfdsG4zf5kY1LkmJPmzNNLMp91Q753tUBb2SOaTo8Xe0fDB9l3UjB+yno2Wj\ny+NPpxAuF34l4aXsKHKs8B3n4nehoBSuZlScrXjm14aGokJlO9vONA+9yDR4\n6SHH/4F4Fi0C0Wk3BG7gwA81NnF/FofZxjf6if8Aza+KdyfDllI47NgEvlc3\nf9N8AQVfxDYSnVggXeVRu0gLKSwysgbHKrD3eUVRU+5GL0QlRulVHb0IGq/p\n+zZN5tpErop9ghKI8BTkPWlQAtaQr3mCrQzflroH13E+GdWftMdirn3jMNmd\nL9UvChuu0no97ZtCu2Tq1ItZOtfqHRuFwWTYDb8ZzflhjFpvtm1k6Ko8sXUy\nLGDQLvesDVrNXLTpqLaTinZFSUnXhL2DAUMr50QidhvT/ePR22yb7Gq4d63x\nUasyPiePaqGErq0jGmTg5v7w4oMc5iPD76l/g2Vo82vfK+kfi8qVs1hguTAK\nNxX4\r\n=NyGQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":[{"url":"https://github.com/sponsors/feross","type":"github"},{"url":"https://www.patreon.com/feross","type":"patreon"},{"url":"https://feross.org/support","type":"consulting"}],"gitHead":"8e514fee209d56707cb6c232813b3d56280dde3f","scripts":{"test":"standard && npm run test-node && npm run test-browser","test-node":"tape test/*.js","test-browser":"airtap -- test/*.js","test-browser-local":"airtap --local -- test/*.js"},"_npmUser":{"name":"feross","email":"feross@feross.org"},"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"_npmVersion":"6.14.10","description":"Run an array of functions in parallel","directories":{},"_nodeVersion":"14.15.4","dependencies":{"queue-microtask":"^1.2.2"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^5.0.1","airtap":"^3.0.0","standard":"*"},"_npmOperationalInternal":{"tmp":"tmp/run-parallel_1.2.0_1612925888022_0.385874538653765","host":"s3://npm-registry-packages"}}},"time":{"created":"2014-04-12T09:25:52.411Z","modified":"2025-01-02T08:58:07.736Z","0.1.0":"2014-04-12T09:25:52.411Z","0.1.1":"2014-04-12T09:32:38.171Z","0.2.0":"2014-04-13T01:42:33.036Z","0.3.0":"2014-04-14T05:16:08.258Z","1.0.0":"2014-04-29T10:20:12.100Z","1.1.0":"2015-03-19T23:27:44.645Z","1.1.1":"2015-05-05T00:54:06.698Z","1.1.2":"2015-06-24T07:34:32.911Z","1.1.3":"2015-09-22T20:08:20.241Z","1.1.4":"2015-09-22T20:35:54.230Z","1.1.5":"2016-03-11T02:37:58.003Z","1.1.6":"2016-03-29T07:03:16.628Z","1.1.7":"2018-02-14T02:58:18.278Z","1.1.8":"2018-03-17T11:40:36.775Z","1.1.9":"2018-04-26T01:10:54.542Z","1.1.10":"2020-10-27T03:40:37.986Z","1.2.0":"2021-02-10T02:58:08.152Z"},"bugs":{"url":"https://github.com/feross/run-parallel/issues"},"author":{"url":"https://feross.org","name":"Feross Aboukhadijeh","email":"feross@feross.org"},"license":"MIT","homepage":"https://github.com/feross/run-parallel","keywords":["parallel","async","function","callback","asynchronous","run","array","run parallel"],"repository":{"url":"git://github.com/feross/run-parallel.git","type":"git"},"description":"Run an array of functions in parallel","maintainers":[{"name":"feross","email":"feross@feross.org"}],"readme":"# run-parallel [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url]\n\n[travis-image]: https://img.shields.io/travis/feross/run-parallel/master.svg\n[travis-url]: https://travis-ci.org/feross/run-parallel\n[npm-image]: https://img.shields.io/npm/v/run-parallel.svg\n[npm-url]: https://npmjs.org/package/run-parallel\n[downloads-image]: https://img.shields.io/npm/dm/run-parallel.svg\n[downloads-url]: https://npmjs.org/package/run-parallel\n[standard-image]: https://img.shields.io/badge/code_style-standard-brightgreen.svg\n[standard-url]: https://standardjs.com\n\n### Run an array of functions in parallel\n\n [](https://saucelabs.com/u/run-parallel)\n\n### install\n\n```\nnpm install run-parallel\n```\n\n### usage\n\n#### parallel(tasks, [callback])\n\nRun the `tasks` array of functions in parallel, without waiting until the previous\nfunction has completed. If any of the functions pass an error to its callback, the main\n`callback` is immediately called with the value of the error. Once the `tasks` have\ncompleted, the results are passed to the final `callback` as an array.\n\nIt is also possible to use an object instead of an array. Each property will be run as a\nfunction and the results will be passed to the final `callback` as an object instead of\nan array. This can be a more readable way of handling the results.\n\n##### arguments\n\n- `tasks` - An array or object containing functions to run. Each function is passed a\n`callback(err, result)` which it must call on completion with an error `err` (which can\nbe `null`) and an optional `result` value.\n- `callback(err, results)` - An optional callback to run once all the functions have\ncompleted. This function gets a results array (or object) containing all the result\narguments passed to the task callbacks.\n\n##### example\n\n```js\nvar parallel = require('run-parallel')\n\nparallel([\n function (callback) {\n setTimeout(function () {\n callback(null, 'one')\n }, 200)\n },\n function (callback) {\n setTimeout(function () {\n callback(null, 'two')\n }, 100)\n }\n],\n// optional callback\nfunction (err, results) {\n // the results array will equal ['one','two'] even though\n // the second function had a shorter timeout.\n})\n```\n\nThis module is basically equavalent to\n[`async.parallel`](https://github.com/caolan/async#paralleltasks-callback), but it's\nhandy to just have the one function you need instead of the kitchen sink. Modularity!\nEspecially handy if you're serving to the browser and need to reduce your javascript\nbundle size.\n\nWorks great in the browser with [browserify](http://browserify.org/)!\n\n### see also\n\n- [run-auto](https://github.com/feross/run-auto)\n- [run-parallel-limit](https://github.com/feross/run-parallel-limit)\n- [run-series](https://github.com/feross/run-series)\n- [run-waterfall](https://github.com/feross/run-waterfall)\n\n### license\n\nMIT. Copyright (c) [Feross Aboukhadijeh](http://feross.org).\n","readmeFilename":"README.md","users":{"bret":true,"meeh":true,"zeke":true,"nak2k":true,"kiinlam":true,"nichoth":true,"dzhou777":true,"koulmomo":true,"maxogden":true,"moimikey":true,"tphummel":true,"tyandell":true,"magicxiao":true,"tehshrike":true,"flumpus-dev":true,"tunnckocore":true,"zhangyaochun":true,"diegorbaquero":true}}
\ No newline at end of file
diff --git a/.npm-cache/_cacache/content-v2/sha512/0f/c0/0ff2bc35bf8a7dfc0f0f9616228be46207339dceea51c2a2f086f775291c90786f3f8b03eff990e26242cc6f76e577d9b01bcff740455701cb21e4a4504a b/.npm-cache/_cacache/content-v2/sha512/0f/c0/0ff2bc35bf8a7dfc0f0f9616228be46207339dceea51c2a2f086f775291c90786f3f8b03eff990e26242cc6f76e577d9b01bcff740455701cb21e4a4504a
deleted file mode 100644
index ec1435d..0000000
--- a/.npm-cache/_cacache/content-v2/sha512/0f/c0/0ff2bc35bf8a7dfc0f0f9616228be46207339dceea51c2a2f086f775291c90786f3f8b03eff990e26242cc6f76e577d9b01bcff740455701cb21e4a4504a
+++ /dev/null
@@ -1 +0,0 @@
-{"_id":"didyoumean","_rev":"36-8b28600ef7426487a78150eaa5dc15a0","name":"didyoumean","description":"Match human-quality input to potential matches by edit distance.","dist-tags":{"latest":"1.2.2"},"versions":{"1.1.0":{"name":"didyoumean","version":"1.1.0","description":"Match human-quality input to potential matches by edit distance.","homepage":"https://github.com/dcporter/didyoumean.js","author":{"name":"Dave Porter","email":"dcporter@gmail.com","url":"http://dcporter.net/"},"keywords":["didyoumean","mean","edit","distance","levenshtein"],"main":"./didYouMean-1.1.0.js","repository":{"type":"git","url":"https://github.com/dcporter/didyoumean.js"},"bugs":{"url":"https://github.com/dcporter/didyoumean.js/issues"},"license":"Apache","_id":"didyoumean@1.1.0","dist":{"shasum":"45668d70f92624249451ee264c4072ec28a7e226","tarball":"https://registry.npmjs.org/didyoumean/-/didyoumean-1.1.0.tgz","integrity":"sha512-jRophNrTu6lwlwApr1UpQwZ+OgAnGqfrO7v8qdYFo79VVeKWdN97qWlqmt1wUAqjesCulMhRu0Q3B2G+ND23Mg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDzXL6efr3G7PQp1n4ZhJB6b5zDTyclAQYoRQk2ymLtVQIgZA7ymO7GSN5ixk4jnfww7PXbb+JvhNvZp05pyw60BkY="}]},"_npmVersion":"1.1.59","_npmUser":{"name":"dcporter","email":"dcporter@gmail.com"},"maintainers":[{"name":"dcporter","email":"dcporter@gmail.com"}],"directories":{}},"1.2.0":{"name":"didyoumean","version":"1.2.0","description":"Match human-quality input to potential matches by edit distance.","homepage":"https://github.com/dcporter/didyoumean.js","author":{"name":"Dave Porter","email":"dcporter@gmail.com","url":"http://dcporter.net/"},"keywords":["didyoumean","mean","edit","distance","levenshtein"],"main":"./didYouMean-1.2.0.js","repository":{"type":"git","url":"https://github.com/dcporter/didyoumean.js.git"},"bugs":{"url":"https://github.com/dcporter/didyoumean.js/issues"},"license":"Apache","_id":"didyoumean@1.2.0","dist":{"shasum":"71256ddd39ff77af2c9aa65598737b1e94ec3751","tarball":"https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.0.tgz","integrity":"sha512-mHu8UTARbWtA++dpbOh/H/IwBOtwmaMKmzhmeTppkn6efwke3XeKraAZnig/vTpKFIwRrzE4+q9t7F/O75LthQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDCXPV5AcDKmqQ4NIjPfRaT6HDs31ChUB3m3HQx3C0h0AiBWlrp8+eWejbngF18YxzjC/QEeGVHC3cO5vFUy/MgTdQ=="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dcporter","email":"dcporter@gmail.com"},"maintainers":[{"name":"dcporter","email":"dcporter@gmail.com"}],"directories":{}},"1.2.1":{"name":"didyoumean","version":"1.2.1","description":"Match human-quality input to potential matches by edit distance.","homepage":"https://github.com/dcporter/didyoumean.js","author":{"name":"Dave Porter","email":"dcporter@gmail.com","url":"http://dcporter.net/"},"keywords":["didyoumean","mean","edit","distance","levenshtein"],"main":"./didYouMean-1.2.1.js","repository":{"type":"git","url":"https://github.com/dcporter/didyoumean.js.git"},"bugs":{"url":"https://github.com/dcporter/didyoumean.js/issues"},"license":"Apache","_id":"didyoumean@1.2.1","dist":{"shasum":"e92edfdada6537d484d73c0172fd1eba0c4976ff","tarball":"https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.1.tgz","integrity":"sha512-drozlbyYW1Oymektz87sYR+bhL24mASDW0cNgs3zbR68JxM8nKD9yQ+ARAr/IOfOARv8SwI9ARA7vGDwW4NWUg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBcC4dzEghQB64AxyO4NbakVHwN09zmSIpsNN2VebLcOAiEAuLcDI+kccVDW40MiMlGwouifVDdP2Qe0/F7/5sBeHJc="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dcporter","email":"dcporter@gmail.com"},"maintainers":[{"name":"dcporter","email":"dcporter@gmail.com"}],"directories":{}},"1.2.2":{"name":"didyoumean","version":"1.2.2","description":"Match human-quality input to potential matches by edit distance.","homepage":"https://github.com/dcporter/didyoumean.js","author":{"name":"Dave Porter","email":"dcporter@gmail.com","url":"http://dcporter.net/"},"keywords":["didyoumean","mean","edit","distance","levenshtein"],"main":"./didYouMean-1.2.1.js","repository":{"type":"git","url":"git+https://github.com/dcporter/didyoumean.js.git"},"bugs":{"url":"https://github.com/dcporter/didyoumean.js/issues"},"license":"Apache-2.0","gitHead":"f58cc8d9d3d127f31aa88b9e23b6daf4ead34abb","_id":"didyoumean@1.2.2","_nodeVersion":"12.18.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==","shasum":"989346ffe9e839b4555ecf5666edea0d3e8ad037","tarball":"https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz","fileCount":5,"unpackedSize":17255,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1I/qCRA9TVsSAnZWagAABxwQAIN4TCC+I+8vVhMBQpj1\nT+XedJLRu/hhXWFW2Sun7Lm+LeEwvtijbhBuLiSvn8Wgszhs9QtR2GNyqGzS\nuWzhyGYex3+KJ8UtXtALTSHE0ZmtdZsHhWA67h4bMzh6qiPNkKWapHa/dYWE\nC3jPok+ekvF21UOkQ58voOWhpvjbve+OrKXNya3SJjJ9VfWEgjlTaNJoeH+e\nXTTABj/4FUe9lEcnjaqP1RUPySkdpblGaCk8qOVkRqaAi2rYFy63bLpAbogO\n9T7vLqhWNO1ssCgnseMLH8TGORQNeFg+0MVeA9tQxXdQ1fgNRfctUhizQGrp\n2AT+pfv/1quNSGTZbbu+eCZHDqc9oCPCpFx86+U4QjbZs0i8s1zYdiX4xnG4\n0eVJrq31cVBzCeQqMv9Pha5RRdulUuU9VF77MnF4qEhqXLQFLb6WOIB5VK3O\ni/XNGGwuI+XUFLbZz6BAceuIPfzE8zy1tzNSWb3z49FsrPQtpdEM5kvGgk79\nphw/vMzsRlOrAZL+t1P5yysWnfWSFZYEIvOCoKwAnAq/G4MfzJ3N6h+5XaaT\nlGCISnTdMqmm0rhHbznnG3GA13/eHVZeVLUPfUoYgaTHPwDh4soTN081Jtcc\n2cBpzkdUeaP9FOneefcX6q3Kmt8uzTTwUUkLvGj3t92MJJSBS1zTPmdkNjAw\nprVx\r\n=Yu+O\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDU84r/vu5NhVFmfkn/YBup+Rx4yG1je1LYrjWtM6AsrgIhAP6nbhzqPATQerSpcl4cP14w5Mb/f7XZsFpg5owYZmnT"}]},"_npmUser":{"name":"dcporter","email":"dcporter@gmail.com"},"directories":{},"maintainers":[{"name":"dcporter","email":"dcporter@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/didyoumean_1.2.2_1624543209601_0.5660588049172106"},"_hasShrinkwrap":false}},"readme":"didYouMean.js - A simple JavaScript matching engine\n===================================================\n\n[Available on GitHub](https://github.com/dcporter/didyoumean.js).\n\nA super-simple, highly optimized JS library for matching human-quality input to a list of potential\nmatches. You can use it to suggest a misspelled command-line utility option to a user, or to offer\nlinks to nearby valid URLs on your 404 page. (The examples below are taken from a personal project,\nmy [HTML5 business card](http://dcporter.aws.af.cm/me), which uses didYouMean.js to suggest correct\nURLs from misspelled ones, such as [dcporter.aws.af.cm/me/instagarm](http://dcporter.aws.af.cm/me/instagarm).)\nUses the [Levenshtein distance algorithm](https://en.wikipedia.org/wiki/Levenshtein_distance).\n\ndidYouMean.js works in the browser as well as in node.js. To install it for use in node:\n\n```\nnpm install didyoumean\n```\n\n\nExamples\n--------\n\nMatching against a list of strings:\n```\nvar input = 'insargrm'\nvar list = ['facebook', 'twitter', 'instagram', 'linkedin'];\nconsole.log(didYouMean(input, list));\n> 'instagram'\n// The method matches 'insargrm' to 'instagram'.\n\ninput = 'google plus';\nconsole.log(didYouMean(input, list));\n> null\n// The method was unable to find 'google plus' in the list of options.\n```\n\nMatching against a list of objects:\n```\nvar input = 'insargrm';\nvar list = [ { id: 'facebook' }, { id: 'twitter' }, { id: 'instagram' }, { id: 'linkedin' } ];\nvar key = 'id';\nconsole.log(didYouMean(input, list, key));\n> 'instagram'\n// The method returns the matching value.\n\ndidYouMean.returnWinningObject = true;\nconsole.log(didYouMean(input, list, key));\n> { id: 'instagram' }\n// The method returns the matching object.\n```\n\n\ndidYouMean(str, list, [key])\n----------------------------\n\n- str: The string input to match.\n- list: An array of strings or objects to match against.\n- key (OPTIONAL): If your list array contains objects, you must specify the key which contains the string\n to match against.\n\nReturns: the closest matching string, or null if no strings exceed the threshold.\n\n\nOptions\n-------\n\nOptions are set on the didYouMean function object. You may change them at any time.\n\n### threshold\n\n By default, the method will only return strings whose edit distance is less than 40% (0.4x) of their length.\n For example, if a ten-letter string is five edits away from its nearest match, the method will return null.\n\n You can control this by setting the \"threshold\" value on the didYouMean function. For example, to set the\n edit distance threshold to 50% of the input string's length:\n\n ```\n didYouMean.threshold = 0.5;\n ```\n\n To return the nearest match no matter the threshold, set this value to null.\n\n### thresholdAbsolute\n\n This option behaves the same as threshold, but instead takes an integer number of edit steps. For example,\n if thresholdAbsolute is set to 20 (the default), then the method will only return strings whose edit distance\n is less than 20. Both options apply.\n\n### caseSensitive\n\n By default, the method will perform case-insensitive comparisons. If you wish to force case sensitivity, set\n the \"caseSensitive\" value to true:\n\n ```\n didYouMean.caseSensitive = true;\n ```\n\n### nullResultValue\n\n By default, the method will return null if there is no sufficiently close match. You can change this value here.\n\n### returnWinningObject\n\n By default, the method will return the winning string value (if any). If your list contains objects rather\n than strings, you may set returnWinningObject to true.\n \n ```\n didYouMean.returnWinningObject = true;\n ```\n \n This option has no effect on lists of strings.\n\n### returnFirstMatch\n \n By default, the method will search all values and return the closest match. If you're simply looking for a \"good-\n enough\" match, you can set your thresholds appropriately and set returnFirstMatch to true to substantially speed\n things up.\n\n\nLicense\n-------\n\ndidYouMean copyright (c) 2013-2014 Dave Porter.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License\n[here](http://www.apache.org/licenses/LICENSE-2.0).\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n","maintainers":[{"name":"dcporter","email":"dcporter@gmail.com"}],"time":{"modified":"2022-06-15T03:34:05.151Z","created":"2013-01-19T21:53:32.674Z","1.1.0":"2013-01-19T21:53:33.778Z","1.2.0":"2014-03-16T02:12:02.695Z","1.2.1":"2014-09-14T22:33:36.668Z","1.2.2":"2021-06-24T14:00:09.748Z"},"author":{"name":"Dave Porter","email":"dcporter@gmail.com","url":"http://dcporter.net/"},"repository":{"type":"git","url":"git+https://github.com/dcporter/didyoumean.js.git"},"homepage":"https://github.com/dcporter/didyoumean.js","keywords":["didyoumean","mean","edit","distance","levenshtein"],"bugs":{"url":"https://github.com/dcporter/didyoumean.js/issues"},"license":"Apache-2.0","readmeFilename":"README.md","users":{"techscientist":true,"rocket0191":true}}
\ No newline at end of file
diff --git a/.npm-cache/_cacache/content-v2/sha512/10/f0/f9ab5b97c85c49a42acb9c27359c79eade039ae83641a1c008888d93692080ed5089d5424331a802cc891736c5187c3d5d68afff2d3110f318886eb1ed73 b/.npm-cache/_cacache/content-v2/sha512/10/f0/f9ab5b97c85c49a42acb9c27359c79eade039ae83641a1c008888d93692080ed5089d5424331a802cc891736c5187c3d5d68afff2d3110f318886eb1ed73
deleted file mode 100644
index 544aac0..0000000
Binary files a/.npm-cache/_cacache/content-v2/sha512/10/f0/f9ab5b97c85c49a42acb9c27359c79eade039ae83641a1c008888d93692080ed5089d5424331a802cc891736c5187c3d5d68afff2d3110f318886eb1ed73 and /dev/null differ
diff --git a/.npm-cache/_cacache/content-v2/sha512/18/64/e8c49ff0d71df6b3f0f610a343ee44e29789fc39593ff66c9c4dce150f36b5de53afa54653197de61520ad57d92c746055cefb320152ccea61c54e1c57c7 b/.npm-cache/_cacache/content-v2/sha512/18/64/e8c49ff0d71df6b3f0f610a343ee44e29789fc39593ff66c9c4dce150f36b5de53afa54653197de61520ad57d92c746055cefb320152ccea61c54e1c57c7
deleted file mode 100644
index e04fc73..0000000
Binary files a/.npm-cache/_cacache/content-v2/sha512/18/64/e8c49ff0d71df6b3f0f610a343ee44e29789fc39593ff66c9c4dce150f36b5de53afa54653197de61520ad57d92c746055cefb320152ccea61c54e1c57c7 and /dev/null differ
diff --git a/.npm-cache/_cacache/content-v2/sha512/1a/08/fda907d8b91f37fcd197c0a0b67cd337beb03b189f39ed359b5c721f32d6530e98f686555af37b993e5897b7d9317606939cfa37e12d7cc1344b3fea46bb b/.npm-cache/_cacache/content-v2/sha512/1a/08/fda907d8b91f37fcd197c0a0b67cd337beb03b189f39ed359b5c721f32d6530e98f686555af37b993e5897b7d9317606939cfa37e12d7cc1344b3fea46bb
deleted file mode 100644
index 3f6744d..0000000
--- a/.npm-cache/_cacache/content-v2/sha512/1a/08/fda907d8b91f37fcd197c0a0b67cd337beb03b189f39ed359b5c721f32d6530e98f686555af37b993e5897b7d9317606939cfa37e12d7cc1344b3fea46bb
+++ /dev/null
@@ -1 +0,0 @@
-{"_id":"camelcase-css","_rev":"7-1a9cab38eefdd52a3c11c2626d0ec101","name":"camelcase-css","description":"Convert a kebab-cased CSS property into a camelCased DOM property.","dist-tags":{"latest":"2.0.1"},"versions":{"1.0.0":{"name":"camelcase-css","description":"Convert a dash-separated CSS property to a camelCased DOM property.","version":"1.0.0","license":"MIT","homepage":"https://github.com/stevenvachon/camelcase-css","author":{"name":"Steven Vachon","email":"contact@svachon.com","url":"http://www.svachon.com/"},"repository":{"type":"git","url":"git://github.com/stevenvachon/camelcase-css.git"},"bugs":{"url":"https://github.com/stevenvachon/camelcase-css/issues"},"devDependencies":{"chai":"^3.2.0","mocha":"^2.2.5"},"engines":{"node":">= 0.10"},"scripts":{"test":"mocha test.js --reporter spec --check-leaks --bail --no-exit"},"files":["index.js","license"],"keywords":["camelcase","case","css","dom"],"gitHead":"cb3b8d8fad4609d78ce54b10aa35fa3ab4c55921","_id":"camelcase-css@1.0.0","_shasum":"468c391d9c1ebc9540548ab5294a487a5c9032ba","_from":"git://github.com/stevenvachon/camelcase-css.git","_resolved":"git://github.com/stevenvachon/camelcase-css.git#cb3b8d8fad4609d78ce54b10aa35fa3ab4c55921","_npmVersion":"2.13.3","_nodeVersion":"3.0.0","_npmUser":{"name":"stevenvachon","email":"contact@svachon.com"},"dist":{"shasum":"468c391d9c1ebc9540548ab5294a487a5c9032ba","tarball":"https://registry.npmjs.org/camelcase-css/-/camelcase-css-1.0.0.tgz","integrity":"sha512-mcLid07BxNg0ZP1+mKz+CJF2fWskaHBrqKQ7OQPgmncmPVLnkdohA+7ZH82qq7bDX67bCsBrT8j/8LQrR7rhiw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGXvMhAdFLkJcdhgQ8jkQoTqbBfuRY3BtHlfIUazqjHcAiBlJUwKp5wNqmM0X5YHb7oVyE0UIpI31/24VbxmgVgP/Q=="}]},"maintainers":[{"name":"stevenvachon","email":"contact@svachon.com"}],"directories":{}},"1.0.1":{"name":"camelcase-css","description":"Convert a dash-separated CSS property to a camelCased DOM property.","version":"1.0.1","license":"MIT","homepage":"https://github.com/stevenvachon/camelcase-css","author":{"name":"Steven Vachon","email":"contact@svachon.com","url":"http://www.svachon.com/"},"repository":{"type":"git","url":"git://github.com/stevenvachon/camelcase-css.git"},"bugs":{"url":"https://github.com/stevenvachon/camelcase-css/issues"},"devDependencies":{"chai":"^3.5.0","mocha":"^2.4.5"},"engines":{"node":">= 0.10"},"scripts":{"test":"mocha test.js --reporter spec --check-leaks --bail --no-exit"},"files":["index.js","license"],"keywords":["camelcase","case","css","dom"],"gitHead":"062c673ab979e8443a8c9edd5768e4079de0e436","_id":"camelcase-css@1.0.1","_shasum":"157c4238265f5cf94a1dffde86446552cbf3f705","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.7.0","_npmUser":{"name":"stevenvachon","email":"contact@svachon.com"},"dist":{"shasum":"157c4238265f5cf94a1dffde86446552cbf3f705","tarball":"https://registry.npmjs.org/camelcase-css/-/camelcase-css-1.0.1.tgz","integrity":"sha512-cvhbU5XiKkPbU4TZ+8o8uMFAeNtl31W/EIy9EKLrHKFnz9EsS7/iPaKr1FkU7w5PEmCJXeS/69y2v8iUhFfn4A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDgS39Lp1k5KPWurlItKssnyWvPGOBuy5Xt6YAFA+tX6gIhAINPsTrK/BvhBDAfXEo0PB8g6MuMpLWNKWsT6Rfibdqm"}]},"maintainers":[{"name":"stevenvachon","email":"contact@svachon.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/camelcase-css-1.0.1.tgz_1456551211233_0.2956849338952452"},"directories":{}},"2.0.0":{"name":"camelcase-css","description":"Convert a dash-separated CSS property to a camelCased DOM property.","version":"2.0.0","license":"MIT","author":{"name":"Steven Vachon","email":"contact@svachon.com","url":"https://www.svachon.com/"},"repository":{"type":"git","url":"git+https://github.com/stevenvachon/camelcase-css.git"},"devDependencies":{"chai":"^4.1.2","mocha":"^5.0.5"},"engines":{"node":">= 6"},"scripts":{"test":"mocha test.js --check-leaks --bail"},"files":["index.js","license"],"keywords":["camelcase","case","css","dom"],"gitHead":"b108cdd6bd38ae3423383e9dce7696e6a05c36b4","bugs":{"url":"https://github.com/stevenvachon/camelcase-css/issues"},"homepage":"https://github.com/stevenvachon/camelcase-css#readme","_id":"camelcase-css@2.0.0","_npmVersion":"5.6.0","_nodeVersion":"9.8.0","_npmUser":{"name":"stevenvachon","email":"contact@svachon.com"},"dist":{"integrity":"sha512-FnvdCC/TkM9eoypxeMPS41Vxu7moPmgsu37oeVxIhiXi8t0KrGGKCLaASkQ+/5tX4X9r/S8UDlV4Efz7VvHIRw==","shasum":"76f0aed4924b9d3dde36adf14225c06d5a9835ae","tarball":"https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.0.tgz","fileCount":4,"unpackedSize":3104,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDmlODm2+B2vVw3BJM9yrxqtx0O9Ft4T5NEXiINlBHS3wIgP8F8GN+EeqT0DI9BGICkz4TMSQEeJ/QD4SqdAm/oAfI="}]},"maintainers":[{"name":"stevenvachon","email":"contact@svachon.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/camelcase-css_2.0.0_1522687119183_0.34261833693887866"},"_hasShrinkwrap":false},"2.0.1":{"name":"camelcase-css","description":"Convert a kebab-cased CSS property into a camelCased DOM property.","version":"2.0.1","license":"MIT","author":{"name":"Steven Vachon","email":"contact@svachon.com","url":"https://www.svachon.com/"},"repository":{"type":"git","url":"git+https://github.com/stevenvachon/camelcase-css.git"},"browser":"index-es5.js","devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.3","babel-plugin-optimize-starts-with":"^1.0.1","babel-preset-env":"^1.7.0","chai":"^4.1.2","mocha":"^5.2.0"},"engines":{"node":">= 6"},"scripts":{"pretest":"babel index.js --out-file=index-es5.js --presets=env --plugins=optimize-starts-with","test":"mocha test.js --check-leaks --bail"},"files":["index.js","index-es5.js"],"keywords":["camelcase","case","css","dom"],"gitHead":"5fe025f5e8fdad5b1a347f2a4b301e1e32cc2723","bugs":{"url":"https://github.com/stevenvachon/camelcase-css/issues"},"homepage":"https://github.com/stevenvachon/camelcase-css#readme","_id":"camelcase-css@2.0.1","_npmVersion":"6.1.0","_nodeVersion":"10.7.0","_npmUser":{"name":"stevenvachon","email":"contact@svachon.com"},"dist":{"integrity":"sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==","shasum":"ee978f6947914cc30c6b44741b6ed1df7f043fd5","tarball":"https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz","fileCount":5,"unpackedSize":4051,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbjTpCRA9TVsSAnZWagAAzpQP/iM8aenqDc7dc3DGueCT\nVoNqTsE3vvaTGD/bEspr0uJOnJs7DNnrFlhGIuKm+f++dgWZ7AAa/OEnmqoH\nHyTaQeLZjX99459/b8x7fjCIok/W1I4eM/yZWXg+rtLmYAYd0ODPrMm+fZ7p\nEBM+Uo0cV/4aNhsQQVRriZfXR02mR9H11nNx9Bht1R/n4+sFGOSZDkprKH9i\ntHgvXDkxXGPm/da13LKeVVzzHySS9/WOAQi6W5P2nbmTSBYuwpOv0xXKOik0\nDVorsHmHbZtTWtJB9cIQhFLDpxH6sy8xDuz/GODxoK9GLBanPW3bxtCUAcb7\nzG/NRP/lpLoZzl1Tna8Yp994SF/rthyP6fuCqDKXNHbxtFSJoO44muHNEWMH\nOUc8Dbzr3C/NjBJSWAiFzHwZYmRocTeua8DxLl1lcIOHoHe4+l7ljAAhEc/L\nbflnk1Rhv0mCyuz+mwJemHzb5+EItdwh0H6rpxvLdKOiDkGdLLpvjNMkuZ+J\nSeTMoTJfE4k5TykLMsjXwb/FsOvjqPsKrpBIVssQK2ZvrxT0B1ckZlbrjVze\nqucfKIXlOUOlVG8YDGIaI62ET22SqVtkukqwpmLmdlyvf5UhNjZKu9PAi7n+\nGdhiqW8wFKP/+JxR8wk+Y7HXoSHLWzuF7a8tpKgVBaarAjX0EZcqGCXrg4vZ\nYDIj\r\n=gVkR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDZtNWVuk0LB2kkUZk0MYujvr33KHVXuhv35PAoApUlCgIhAPxGdVz2zcny3tr0C6ncpfjp4+2r9360hvxd+7gOxKu9"}]},"maintainers":[{"name":"stevenvachon","email":"contact@svachon.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/camelcase-css_2.0.1_1533949161335_0.8238687452019227"},"_hasShrinkwrap":false}},"readme":"# camelcase-css [![NPM Version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url]\n\n> Convert a kebab-cased CSS property into a camelCased DOM property.\n\n\n## Installation\n[Node.js](http://nodejs.org/) `>= 6` is required. Type this at the command line:\n```shell\nnpm install camelcase-css\n```\n\n\n## Usage\n```js\nconst camelCaseCSS = require('camelcase-css');\n\ncamelCaseCSS('-webkit-border-radius'); //-> WebkitBorderRadius\ncamelCaseCSS('-moz-border-radius'); //-> MozBorderRadius\ncamelCaseCSS('-ms-border-radius'); //-> msBorderRadius\ncamelCaseCSS('border-radius'); //-> borderRadius\n```\n\n\n[npm-image]: https://img.shields.io/npm/v/camelcase-css.svg\n[npm-url]: https://npmjs.org/package/camelcase-css\n[travis-image]: https://img.shields.io/travis/stevenvachon/camelcase-css.svg\n[travis-url]: https://travis-ci.org/stevenvachon/camelcase-css\n","maintainers":[{"name":"stevenvachon","email":"contact@svachon.com"}],"time":{"modified":"2022-06-13T05:30:29.480Z","created":"2015-08-28T13:40:26.404Z","1.0.0":"2015-08-28T13:40:26.404Z","1.0.1":"2016-02-27T05:33:34.486Z","2.0.0":"2018-04-02T16:38:39.300Z","2.0.1":"2018-08-11T00:59:21.455Z"},"homepage":"https://github.com/stevenvachon/camelcase-css#readme","keywords":["camelcase","case","css","dom"],"repository":{"type":"git","url":"git+https://github.com/stevenvachon/camelcase-css.git"},"author":{"name":"Steven Vachon","email":"contact@svachon.com","url":"https://www.svachon.com/"},"bugs":{"url":"https://github.com/stevenvachon/camelcase-css/issues"},"license":"MIT","readmeFilename":"README.md"}
\ No newline at end of file
diff --git a/.npm-cache/_cacache/content-v2/sha512/1b/35/d1e216cd621c5fd6329b6c52eda0b4c45968797e45a738e5d2e887706b44452e332d7aeba05395918401eca07d5f1261d706d70bfb92ad1076f0e8674116 b/.npm-cache/_cacache/content-v2/sha512/1b/35/d1e216cd621c5fd6329b6c52eda0b4c45968797e45a738e5d2e887706b44452e332d7aeba05395918401eca07d5f1261d706d70bfb92ad1076f0e8674116
deleted file mode 100644
index ecfec2a..0000000
--- a/.npm-cache/_cacache/content-v2/sha512/1b/35/d1e216cd621c5fd6329b6c52eda0b4c45968797e45a738e5d2e887706b44452e332d7aeba05395918401eca07d5f1261d706d70bfb92ad1076f0e8674116
+++ /dev/null
@@ -1 +0,0 @@
-{"_id":"is-core-module","_rev":"34-c2ed5fe03d74862955865c40f431184c","name":"is-core-module","dist-tags":{"latest":"2.16.1"},"versions":{"1.0.0":{"name":"is-core-module","version":"1.0.0","keywords":["core","modules","npm","dependencies"],"author":{"name":"meandave"},"license":"MIT","_id":"is-core-module@1.0.0","maintainers":[{"name":"meandave","email":"davejustishh@gmail.com"}],"homepage":"https://github.com/meandavejustice/is-core-module","bugs":{"url":"https://github.com/meandavejustice/is-core-module/issues"},"dist":{"shasum":"32b0c727ff0819937576d799e479e548c7a5af7a","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-1.0.0.tgz","integrity":"sha512-mSrwntyCQERmUodWLqXUCSrspXYgTdyT+I0L4dVoYAElZmbAHV4AnDLei+LqudAEYcUM+5IH+u+Ii/tRqNoC0Q==","signatures":[{"sig":"MEUCIAPu9DS2usuiYeWq2tKTzst/JgTSORl/oCL0xD/JpwDgAiEAvD4NsE2s7sr0Wm5MQYx+sqh17ya1MnqIWvEdBnKv/r0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"32b0c727ff0819937576d799e479e548c7a5af7a","gitHead":"1eff0ec69798d1ec65771552d1562911e90a8027","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"meandave","email":"davejustishh@gmail.com"},"repository":{"url":"https://github.com/meandavejustice/is-core-module.git","type":"git"},"_npmVersion":"1.4.25","description":"check if packageName is a core module","directories":{}},"1.0.1":{"name":"is-core-module","version":"1.0.1","keywords":["core","modules","npm","dependencies"],"author":{"name":"meandave"},"license":"MIT","_id":"is-core-module@1.0.1","maintainers":[{"name":"meandave","email":"davejustishh@gmail.com"}],"homepage":"https://github.com/meandavejustice/is-core-module","bugs":{"url":"https://github.com/meandavejustice/is-core-module/issues"},"dist":{"shasum":"9e3d4c3e8ff2e091f50be0aa27548790a75d84c4","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-1.0.1.tgz","integrity":"sha512-NB4efq3BafJeiZLUHVwjFAgJQgbmOMsitj+vjMo7GwM9iTuaeZDNVq0pnLaACageG+3WBZk8I6H/hZ04SwgTvQ==","signatures":[{"sig":"MEQCIHCt5wb1urqx+olpE4VOBUUsQC5iDUchHiHdh48NmSOmAiBo42rtLmmdhjMDn/lR1/AJ2DOYO9qNAJj0WP3WZxgTiw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"9e3d4c3e8ff2e091f50be0aa27548790a75d84c4","gitHead":"f21f906f882c2bd656a5fc5ed6fbe48ddaffb2ac","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"meandave","email":"davejustishh@gmail.com"},"repository":{"url":"https://github.com/meandavejustice/is-core-module.git","type":"git"},"_npmVersion":"1.4.25","description":"check if packageName is a core module","directories":{}},"1.0.2":{"name":"is-core-module","version":"1.0.2","keywords":["core","modules","npm","dependencies"],"author":{"name":"meandave"},"license":"MIT","_id":"is-core-module@1.0.2","maintainers":[{"name":"meandave","email":"davejustishh@gmail.com"}],"homepage":"https://github.com/meandavejustice/is-core-module","bugs":{"url":"https://github.com/meandavejustice/is-core-module/issues"},"dist":{"shasum":"132b3156a14eab498207717bc2facb68aa4da772","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-1.0.2.tgz","integrity":"sha512-sWGgrRN44OhCJ2jUlL6T4bvSv1knx0yNNNVpJ21sor9JBRlqAADZvsS2OjsLa4pQe7KHmaOZ/i1loysbOxtgvw==","signatures":[{"sig":"MEQCIBBhP9PYh8V8zVYe/e1rQPYngH04sj6nxmOEcun/SHmfAiAOK5Zqr4F5pbHUwS7dimV28DuFzxjBK/49i4Kl0uOFeA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"132b3156a14eab498207717bc2facb68aa4da772","gitHead":"66fe90f9771581b9adc0c3900baa52c21b5baea2","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"meandave","email":"davejustishh@gmail.com"},"repository":{"url":"https://github.com/meandavejustice/is-core-module.git","type":"git"},"_npmVersion":"1.4.25","description":"check if packageName is a core module","directories":{}},"2.0.0":{"name":"is-core-module","version":"2.0.0","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.0.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"58531b70aed1db7c0e8d4eb1a0a2d1ddd64bd12d","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.0.0.tgz","fileCount":12,"integrity":"sha512-jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw==","signatures":[{"sig":"MEQCIBKnM8m2Ju6/W9Z1tBbsjOVwHHALUKjXdR+q1vjBgNg8AiABonBAR2S8zbhmbo05zxKcLn2Mlt5xFH1xnkRKZkpR1Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14711,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfc3gqCRA9TVsSAnZWagAAbXoP+wcsbNs4mEHfLwx8VTXE\n2ccVknOWvB9F+phRUjdc6NBbYHeniOqHJZefsK+P0jBagwAG2BRPsa8FcLAC\nJ+7ToQbAX2/iipHIoIgJcbBuUPvx1Pg6FoIHBHefvV1ojCWeDaIs/3ky1xqL\nrtKxHcuJP5li9nspuodw2nW6cSUy9qi+4N0TwYNEJ57EhFdU56UCLnT6u+FO\nwf8D0vMbYZjROzprUC6K93mBnPePUE4eVHvYVr3LcOQew/QcadcalfO//6q6\nM7ljdSIuHhdeowK/lUjGyoLT8E9UXQ2haztJu0laea7xLG5PQLtDOLoyentm\n/52zkk6wpReabpUq38qdqDGEGRsSWmmSZUkQSRy7h1q1aIsQEo6pHZub0KLN\n47yIYJgxc1n3BP8tbzhcvDgt7F3twrFw3TsumEwAtEq36vtyzNPC6N2v2g+C\n1tmxxSIVPZeXl4AxXJsuCMUMn4l9/L2SCZpjEjJORubeCa5bo020Z2nZHUJ7\noILOHOEg7ZNaGkutKV8vbP/GoYKivht87CZbTfmrP+XNnyjvk3EUM1nUQlGT\nHdoz8cZGBLCp4r4J4AFlIEFdmkZ1Fp38+R9WbnQiz0xb4imPWQwQXxqpwiH9\nT2M3odC+wmATEw22SKYuWjYthORQ5voRrXRRXHXsjCBl4oqYlANcNL3/FiAw\nc2e8\r\n=Ha4U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"],"./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"0888a1197cf90f9a06b8b0de6c5161dfb4e817c4","scripts":{"lint":"eslint .","test":"npm run tests-only","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","tests-only":"tape test","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"6.14.8","description":"Is this specifier a node.js core module?","directories":{},"_nodeVersion":"14.12.0","dependencies":{"has":"^1.0.3"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.2","tape":"^5.0.1","eslint":"^7.10.0","auto-changelog":"^2.2.1","@ljharb/eslint-config":"^17.2.0"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.0.0_1601402921585_0.818995529661108","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"is-core-module","version":"2.1.0","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.1.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"a4cc031d9b1aca63eecbd18a650e13cb4eeab946","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz","fileCount":12,"integrity":"sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==","signatures":[{"sig":"MEUCIBl5SNsnCE+e1cZtVvIG18r9F802JmWqTcXTgxwRzPZzAiEA9h+81Fjl4xiygz8WpmXmxcDwvMCCqsGNu7GNB86+5tg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15149,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfowuoCRA9TVsSAnZWagAAMtcP/0TZ2zJpVcL6u9Rt3Vgs\nBEt1BGqMf4vDQHdhu7bDtPcy92Hp+Wb2c5WDDlJzS1v7T1++qZ0ARIyLtSL0\nTlHitO3yh2qcl0KTDtUZYxV7s1EYjY/R7J1tF6d12bqjISm/h76L9KYlpHSw\nbE9GyzHV/0iCrZX18kk6bkuDOTW95vg5GcXgA/+q2oJh6p3zyuFnwsx1iiXF\nZSY+UiJE22BeSNJEKxNfP8MC8pOenGpMlXud7KDXR42yZciM/yV2sUPh/TdO\nC/UT3DUtVMT4SHUyeDepEdXRRPFrDUgfjxv4t7sbXA9W8hoRaCCOwetsyAAP\nHZG3hQmUvbt9lVQxapl4hxAst+V3RK0dWwOcoTABTWui8GfZgBxQIWeyis3b\nBOmWQ17aCBfjVoAcmP0PP5tsPM6z47qPQnciKQSD2HpCmmkuXyIDKVJIRZCM\n2cecLEdS/YWOTDHIqmHi9wjdA8QVwrJ2HpMrliJwN/BeQsQWa+BuiZqh6O+v\nMc+ZnqgW6fS3aQXEdfvSqLGzd2bADWpx3DSbnBuE97CF1vjHl31N3H7UCohc\njPSFoqLbctKpJyhpLIkHicvP5s6UrG4MFym581F93MDxwrspdZfiehG2Ozqv\nNNbk/34Xi0uR6d9GmBEBy9lnHTcQvkLwgyqGwSruskWq7m28LfCn3auOLsyD\nQjGZ\r\n=v56V\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"],"./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"7a97e5660f274c2e98339b6a2ba3baa74bedfcfc","scripts":{"lint":"eslint .","test":"npm run tests-only","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","tests-only":"tape test","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"6.14.8","description":"Is this specifier a node.js core module?","directories":{},"_nodeVersion":"14.15.0","dependencies":{"has":"^1.0.3"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.2","tape":"^5.0.1","eslint":"^7.12.1","auto-changelog":"^2.2.1","@ljharb/eslint-config":"^17.2.0"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.1.0_1604520871618_0.4682715317494046","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"is-core-module","version":"2.2.0","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.2.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"97037ef3d52224d85163f5597b2b63d9afed981a","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz","fileCount":17,"integrity":"sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==","signatures":[{"sig":"MEYCIQDQ23P++B1EXDS+91XOrAoTnFSRKCGabkAODxc5NSbMtQIhAINkx6ZbF0zv8K+k1SkxLrZ6GvI8MvWiqscCivbhzUxF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20683,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfv+xgCRA9TVsSAnZWagAAz00P/0mX1C0etJG4VjFkU5el\ngGQiKmzKft5ofcW6rOpTPRXkDXL941T9oI8sAuDAMBCw9AA76tqaukBMdaEO\ni3DY9+nD8x+OVMxiCD52dtGHQHDTY4zOt66a+GSt/df7FX9GODnDnkwV8+Di\nbgdBzn5VnevLxN3j+yISOO06nrcCXZaQ2vhnYduKSy4WUAbjDElkb23QL4Wc\nddXImyEB2OaiCs7hiJX59RB37pMbxISB7OonIY6vI7qcbbq6zINdLbUpIS+Z\nTHoUTYKvuZWs9tZe99CzsHv/o7w+g4emehSackOt8d38scVEBWl9wM7ORzG7\nXcH+t5/ulJlZIlakGqm+5EnS5vwmbiswAyeCENt4Xtv/hRbGjp6W9lpGXNoX\nrmP6FEomQM0obp6JErMMx/3AjcjZcKR+qmBf6dCDppch7Nvtz9gCl3WUeLML\nZg9Ur3f+L20+goBjDp2eGrpIaVwXDPPbaKt+QFWv49CmvP0f8Lm6b8LBf8cI\nDUARrCRarIjPjee8N1f274uialjY5ovsNFyRQa0C98Dd2qEJiKs2T8UJgRT8\nuhuFgsydwk0da3CFlHVXkoeMD+ENOXsVoyqQt53qxqnWhCUAmWEIMYKd4gL0\nrZjPodNA932i9+f1w/BC04fJx5lWOdpIxBMhUwVHnYSsqDh4H2nNGbWI22pE\nbvAu\r\n=3z7a\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"],"./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"51aca38cdf05e8d6264e28dc7af7a483270e18ae","scripts":{"lint":"eslint .","test":"nyc npm run tests-only","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"safe-publish-latest","tests-only":"tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"6.14.8","description":"Is this specifier a node.js core module?","directories":{},"_nodeVersion":"14.15.1","dependencies":{"has":"^1.0.3"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.3","nyc":"^10.3.2","tape":"^5.0.1","eslint":"^7.14.0","auto-changelog":"^2.2.1","safe-publish-latest":"^1.1.4","@ljharb/eslint-config":"^17.3.0"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.2.0_1606413407944_0.10093124372925821","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"is-core-module","version":"2.3.0","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.3.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"d341652e3408bca69c4671b79a0954a3d349f887","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.3.0.tgz","fileCount":10,"integrity":"sha512-xSphU2KG9867tsYdLD4RWQ1VqdFl4HTO9Thf3I/3dLEfr0dbPTWKsuCKrgqMljg4nPE+Gq0VCnzT3gr0CyBmsw==","signatures":[{"sig":"MEUCIAheaTLK7vkn5Xa+uOCdRuAvwyIaut7oN67voPKnxGV4AiEA2jVyo0rnF8TMWuY/mGqhDfGUn6yaLeQC0ZDjkvMEWRA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18816,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJghIKNCRA9TVsSAnZWagAAErgP/0+SVeevj9uN9pL9tH1N\nRT6pC4bAqlZqot3bQXPcB8kjKSayjHAL94qP5O6bwKQVV7WP6HlPi/HSbkVD\nZnSws4ZeeEc2EMPMUflsomMZr+TIHnDfQcryV96DAyOaGYTb6tkeMsr3EkLg\nylibgfj2QtNeSXpZ8ypk576JeT3s0OFBVZCdoe6OuuZIBc5XjWS1kQ/Qinv9\nUFgydcAsroxsq9pyf+0s8OoPEbL7Kgkh+lHr+ZyE7Qm+2kx/wV4K0aPBApy1\nnPEgel/yZMt9VnL0hY10KSP7DDKyBMuZMVsO40mU3RIjtvbzCxq64xn8JAkJ\n8L7FLSTHQAEvV76OSnz7XJUDEBHROQsRO/pnm22tewbp2q3YnHO9U5prfiL0\nMbeOMD45TVSkAs+2c+8IMPYs6dugBSpr1BmvYKqXSqGdzNcbjES+WvIAYz7K\nYKREQJf02LUHrMxiRSmgYG9rb5f0m2+vP9whv3lpjLzLiF6Y1JVHmkocZldg\nKPTkGqJtUg+bezJQZSf5Z5SEjTQklDu6av1M0ty7jQAZHBkgbRtWadco8zAF\nd7nMuMoQ+3piNbnJxSFimb40Op5QS8day5X+tK9UXdcmcfAVdmXguHUYEBCy\n8Fhe7Et2ENQ5W6riJg7T/TpmrK6+kufOFo+25O/tiE7kcUpJOppbfB9RU3ZY\nxNdD\r\n=wyOb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"],"./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"e08737d65b8eaaea892f26d8b7c73f7663fb3a4f","scripts":{"lint":"eslint .","test":"nyc npm run tests-only","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-ib-publish || npm run prepublishOnly","tests-only":"tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"7.7.6","description":"Is this specifier a node.js core module?","directories":{},"_nodeVersion":"15.14.0","dependencies":{"has":"^1.0.3"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.4","nyc":"^10.3.2","tape":"^5.2.2","eslint":"^7.25.0","semver":"^6.3.0","auto-changelog":"^2.2.1","safe-publish-latest":"^1.1.4","@ljharb/eslint-config":"^17.5.1"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.3.0_1619296908500_0.14135566931527","host":"s3://npm-registry-packages"}},"2.4.0":{"name":"is-core-module","version":"2.4.0","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.4.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"8e9fc8e15027b011418026e98f0e6f4d86305cc1","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.4.0.tgz","fileCount":10,"integrity":"sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==","signatures":[{"sig":"MEUCIQDfGeyUgGjoGECc1EMcYCs2EkLq+mbFP6fp44epNaSdNgIgcYVfRprluPVoTRbNUiNudisvZQZSVa17stZ/gyMLa+E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20133,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmEbxCRA9TVsSAnZWagAA6MQP/0VD/CAd0mztX4latgDj\nZnJ4pqs5SKyR6m/C+w2Xx36C+9BjbX+7RjseK2U7fCdgX9Pg56H57Fo8yIeg\n0bqf+XR5Oap3gFaJSzYjdx838q2a5YpHcrelN7Dgsy2BV0pKHo6qoa4NOyS2\nhD/UBOIbzfgzoXL/aIHrFKKWGIVis7jfwFE+3jY+hiirqvfNQxeyL2Zf7E/4\ngnNQEGMljLJDLbQ+L8gJLq6ORewmkef18Sqj+33WSx2F0Im+jfOM4g+QYH56\nKolBJby+JDlF0fo29Y70e1TqABhIiQcZxABNJW3Na+R6WNE+pXXv+PDnj4FO\nlsy+rQTnSF430qOfd9Jf+g7ibb3+AffWCof20ThxhZsdF8UkDNVoHPAGOhUZ\nkuoovmsIESWiKzl5bDQfOoLWqg4EKQJslDpmoAl7PRLuEtTBB2Hu0bMbDhUQ\nyHb+I5t3nLWU3l3kg+nW+hyz13DPFc5VIc1HdltP5BUmPIjh4NzehuhfDlyi\nH8odx3Vw29opBW9MRmgvaK8rwtXLFfw0Z5yW6yXg+sBZxQIxRxyZV30NoecY\nSO17Pv/n6lE0y+4p0zmQ0qkSSVTCyLJ8Kzf7eATNvI9sMRgTuOxOGGMlWQs0\nEA3z80iCLaYjfP32K3gOGRMdbaR1QY65U3Gh6gKgpeZzbT5IiwE8jtF9Nqfe\nYKj+\r\n=pSu+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"],"./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"7a96cd96957cae116dc0d2883727cee11953276a","scripts":{"lint":"eslint .","test":"nyc npm run tests-only","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"7.10.0","description":"Is this specifier a node.js core module?","directories":{},"_nodeVersion":"16.0.0","dependencies":{"has":"^1.0.3"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.5","nyc":"^10.3.2","tape":"^5.2.2","eslint":"^7.26.0","semver":"^6.3.0","auto-changelog":"^2.2.1","safe-publish-latest":"^1.1.4","@ljharb/eslint-config":"^17.6.0"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.4.0_1620592368778_0.6528507678869362","host":"s3://npm-registry-packages"}},"2.5.0":{"name":"is-core-module","version":"2.5.0","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.5.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"f754843617c70bfd29b7bd87327400cda5c18491","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.5.0.tgz","fileCount":10,"integrity":"sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg==","signatures":[{"sig":"MEYCIQDBfnG5UbaDVqv21QC9ZO3eWQehLrlQ5Bwgq7bb1sAxnwIhAMDpkhnXsY/qE5FjkEMtCWPTC6HyWu5yXCeaBmgCJJHP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20599,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg7TXPCRA9TVsSAnZWagAAoHUQAJFoGEdipAHObhzCZo75\nuso5uU+oc0AeOM+bbGdfuzWKS6tOOG+xDIGXFi+Bxx2ybroiDaGDmfOnLohJ\nMc2JERUQzuMTK5WAAGBXKx3+FiFtHO1l2zf65Gc2Dtj6MiSQn9z4MgrpnuBF\nGkSenFMdO0TndZ78dav9cp9/uVkqkqhiaUZfyp8Dt0JiAXGegp3p1rPOZLOk\nDlmdafBT5J6bXxCruvRYsHu4VrPbakwFfROZqo0pgzDOb5l2eZiCQKqSI36l\nL42g0zN4sS5r2H2YS1csGnWA4nI5GxOfXWiAPeLw98d7g4rosngxpXc5FcrR\nNfRb9Zd0aYjv4VzJK+bDgJr5Zm4US+CYobjhLmtFX96HsET4XeaQvH0U0tiQ\nhjSKk3ru015fauwKtXY3h2TejNKgk1IKhr/JVAzI49QqUgRa5TAHYYpbQ2/a\nl7VuXX3cjGX0zrV5zwpBWIz+ndXFlF+ftDWhuM/6NYVa9iCya3JbSMr9ONYO\nT3drUzF1gMyTbOwqBzOu5MTvBJMxfLwUjYGe71I+IUHWApvipu53LY89iY0G\nOhcTNQgrqrD/QWJjSm9jvgHxnRFzd1Vt3nj2uClDUStPe7jQBfPjaGjoTyH0\ngWVuAjGDNHPPQ1ysThQGkuI0J3xvaSloBmImXGr1VKxjEym8cnOKeXW9uswf\n1tYJ\r\n=OcPy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"],"./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"18437846906ed6ba5146838b6ab0cad05a74417b","scripts":{"lint":"eslint .","test":"nyc npm run tests-only","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"7.18.1","description":"Is this specifier a node.js core module?","directories":{},"_nodeVersion":"16.4.2","dependencies":{"has":"^1.0.3"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.5","nyc":"^10.3.2","tape":"^5.2.2","eslint":"^7.30.0","semver":"^6.3.0","auto-changelog":"^2.3.0","safe-publish-latest":"^1.1.4","@ljharb/eslint-config":"^17.6.0"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.5.0_1626158543436_0.9225462032281682","host":"s3://npm-registry-packages"}},"2.6.0":{"name":"is-core-module","version":"2.6.0","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.6.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"d7553b2526fe59b92ba3e40c8df757ec8a709e19","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.6.0.tgz","fileCount":10,"integrity":"sha512-wShG8vs60jKfPWpF2KZRaAtvt3a20OAn7+IJ6hLPECpSABLcKtFKTTI4ZtH5QcBruBHlq+WsdHWyz0BCZW7svQ==","signatures":[{"sig":"MEQCIB/Wdy9uhuwHCOuWEQfUdK++byCvap9BFiLgQ00I3O1YAiAobi2VCapbbXbLfc1635sa4QPEiUqUommcoUnovpkUFA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21369,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhG/08CRA9TVsSAnZWagAAsFUP/Rl9QLxIdPMZqNG+FFSW\nPm/5BrxoZJS1clOoX3sBZhAgIsi5cKCd/o+hfdCy1l6KZBQQpXz4RGjiR34R\nEWUCUh5P9Vj3a/ZUltVct2WtFhl2HMUKuLl7ebckkzaiFibIkabedoCtYxI7\nQ7FQXqtjLk8eLe6SMUfWVIT5RCQafeZu2WuiFOoFZL/w/uPlasFXIvCr52QT\nouxMMWHQ/9tZeZvBBHfygRUNdrOZ0B7tfWvwsdeiSkDk3DvSkvnzptIMtOE9\neJ0lCLRdrBgrJcEC2CZITnNmqeFvu23YV1+s+yt8QUh1WiGk/fy1VLg25JJ3\nixiMnzJDXvKVwNLYiF1g9nTH75FGAvZJgDqw4mbEiduxuzxtLxl6eBPK5crB\nwjFHkYveNp+LRDySdjtzyVDj6y1ghH0gzeY8HxVNCU95HXt+KA2vzDOzWbHN\n34coUOjf5LaW6F0BpCT+fGLHHIuVPvH8lQtZ7/mNj4Q0DGiSQwq/y1rEGqGl\nX2x+uxaiIvhhYmRuaOrwsWvAG3o1TMqh3AO0gHtKB1dVHZysKZSupFk1pE4p\nCl57flqLVfXvsSO2zFzqC42cF7Ona8h0IJH7DVGMycM7se1TviXVmadTK8rT\nOJvX80SvaYgPsVlT5KEbc+/2RU+dMxQu6No39crRVlv7EAOWxWaZ5IaQ7qdz\nm4jm\r\n=Tnd0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"],"./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"7fc1e8584058d277e47c9a74926131f79084ea93","scripts":{"lint":"eslint .","test":"nyc npm run tests-only","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"7.20.3","description":"Is this specifier a node.js core module?","directories":{},"_nodeVersion":"16.6.2","dependencies":{"has":"^1.0.3"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.5","nyc":"^10.3.2","tape":"^5.3.1","eslint":"^7.32.0","semver":"^6.3.0","auto-changelog":"^2.3.0","safe-publish-latest":"^1.1.4","@ljharb/eslint-config":"^17.6.0"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.6.0_1629224252806_0.2639213152583815","host":"s3://npm-registry-packages"}},"2.7.0":{"name":"is-core-module","version":"2.7.0","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.7.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"3c0ef7d31b4acfc574f80c58409d568a836848e3","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.7.0.tgz","fileCount":10,"integrity":"sha512-ByY+tjCciCr+9nLryBYcSD50EOGWt95c7tIsKTG1J2ixKKXPvF7Ej3AVd+UfDydAJom3biBGDBALaO79ktwgEQ==","signatures":[{"sig":"MEYCIQClSh1q8/n5gcpAxHMT6xQ61Mx8naajbHwgiYZiyX1HhQIhAIdDVjEvr56G2Xo6lcl28R2Dv4zqaHrRXiQ7uIUeigzP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24329},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"],"./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"3c581d210f39331ee5459aa9a416e773c946ca63","scripts":{"lint":"eslint .","test":"nyc npm run tests-only","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"7.21.1","description":"Is this specifier a node.js core module?","directories":{},"sideEffects":false,"_nodeVersion":"16.9.1","dependencies":{"has":"^1.0.3"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.5","nyc":"^10.3.2","tape":"^5.3.1","eslint":"^7.32.0","semver":"^6.3.0","auto-changelog":"^2.3.0","safe-publish-latest":"^1.1.4","@ljharb/eslint-config":"^18.0.0"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.7.0_1632759856033_0.9572583746609107","host":"s3://npm-registry-packages"}},"2.8.0":{"name":"is-core-module","version":"2.8.0","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.8.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"0321336c3d0925e497fd97f5d95cb114a5ccd548","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz","fileCount":10,"integrity":"sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==","signatures":[{"sig":"MEQCIEsYghUJlrGbUPPJzn1nRHr1Y9JkGDJPNt2SJXcfWGI4AiBLFPe/WKLHiFhSzfzJu4cKpBJ5pM0oplWSl8ADVEdq9A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24971},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"],"./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"04143b5c4c11410011b1dec1786285415b6af859","scripts":{"lint":"eslint .","test":"nyc npm run tests-only","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"8.0.0","description":"Is this specifier a node.js core module?","directories":{},"sideEffects":false,"_nodeVersion":"16.11.1","dependencies":{"has":"^1.0.3"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.5","nyc":"^10.3.2","tape":"^5.3.1","eslint":"^7.32.0","semver":"^6.3.0","auto-changelog":"^2.3.0","safe-publish-latest":"^1.1.4","@ljharb/eslint-config":"^18.0.0"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.8.0_1634234038757_0.8927399937281386","host":"s3://npm-registry-packages"}},"2.8.1":{"name":"is-core-module","version":"2.8.1","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.8.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"f59fdfca701d5879d0a6b100a40aa1560ce27211","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz","fileCount":9,"integrity":"sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==","signatures":[{"sig":"MEYCIQDR0axxXkArfC2liDRKqhIS0yu6EwRp+mCPSHwpaF2ObQIhALckYt5mif0S/JQRc4YBJfYSzq3nJOy4Fn2Fx+ZoWnFK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25845,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh1gXKCRA9TVsSAnZWagAAhpsP/juFFmDeGjPF8MUqGK1o\nJIpJlblfSznkPIIyAJMFe3ktDyO5ecRCfcUPg0yXTFyAIjVykM/x8HjSZJyN\naH6g6PLW4UJYftQcqNLEtWxbUiOUaHu5QAIZle2tHnlmoXrSXjpfc19KCACc\nNLs+qdrL9d3/O4FWD37upygT+0/BTb0oweAOSq0E4O91ooi8acg8VupbQbSo\nhcnDgVHquXzCPG7XQOi8N3h6ZRwRRIZ6ZxQrKUERGpX0Qt3tZG79IW3rfLqb\nJO42WEc962j2S05BsGoRpEsr4RTkS86vZlCQp/1gQiGBTqVAmlrUWSTz5JQJ\nisw4ipWnr9kam1fTZi11/u2hY1DH9a4ujBwYw4Kjpm7rvA4bPmL6itIS07Ki\nSi/RqggzDwYQ6gqWKEkOfC67hSLIFPhrR5bnWJtPX17c6h3H82pfJGdCy/tO\nQSJgQhWJJK6uPW685Dv6Lq3KzPSnVOqaPabdpnxdF7f+N0HWreIR+Vi+/y9o\nMogQHx5PdKI/yZIZAcRNvAg+nMuqKJh5tpgZ/0vi6lhRzyF2x+GsNHglVMMO\nVN3tFTloHsc9M0s+5zaYpULdfzAMLNhWPZDN/QgRftwUPD4G34JaKmx1NsOk\nVbbrA7ByjaY2v/6G5HOGP8SKfm09B8xwwsipi7DpN4wZAPQT+ADm56XxKkwD\nXFNm\r\n=+95Y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"],"./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"d6a52cc00eb628188ca62af6da9bfbc55115ef58","scripts":{"lint":"eslint .","test":"npm run tests-only","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"8.3.0","description":"Is this specifier a node.js core module?","directories":{},"sideEffects":false,"_nodeVersion":"17.3.0","dependencies":{"has":"^1.0.3"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.5","nyc":"^10.3.2","tape":"^5.4.0","eslint":"^8.6.0","semver":"^6.3.0","auto-changelog":"^2.3.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^20.1.0"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.8.1_1641416138024_0.44616062916191335","host":"s3://npm-registry-packages"}},"2.9.0":{"name":"is-core-module","version":"2.9.0","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.9.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"e1c34429cd51c6dd9e09e0799e396e27b19a9c69","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz","fileCount":9,"integrity":"sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==","signatures":[{"sig":"MEUCICYum6rH0BJ70sfAJzF/nkELDnUsh8yT0Tq7Md1+H74DAiEAlzzsfOzSFTVfsd8Ipy8mMdKtVSc9KzveoZ9ftAh0ckY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26849,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiXuHrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoDTA//eewpfYwiRLLWz4UtjiLW/xOljumRKoUDzW+QcB/bBqSMoW/H\r\nqPlOyuIzs89RCGGgx8SqrzBGXwTiyvdbF6UUQBkzru/xk4k8eo8AhQ7G+Nrv\r\nMD34VsYzbotpfoVFoZeXKtGk3CMmIVD/1f8eI6dXm7K13WTERgxIzWYcFg0X\r\n7YEFePocXrFUQzIHZw8HYFxkLr14hsmb81ocSU0e33ng2GhWgAsCBNHj4uSj\r\n7NWujfauNOPLYLSN8iFDA1xfYRJKgYyi/6TgdqZbhpL6gn8n1oLJ/+uNgG0C\r\nbR0tWXBTz9BcvARdEh0cCMyBolJFa87oYLF9yciQgl8ooPdAQVn4KH06tnHw\r\n2/wwLJ1IXMC9muTndByuMQrqasQHWhtTFpe5MOHTCEDhQpce2UaLcgdqaOLC\r\n4LiSqE7lFJpc5nssHfNBC2Lpvng1w3KgTIhbeh+8vUYpXam+H3ftG6qfTJ77\r\nEFssWH41rvP5NZWzR6dLvxqZ2ZRBfnk5VCFS9XF9LTTjpTRovtnS+hMuD1Of\r\nOGowbXRknDjsw1ofcBE36jigB6PSc+aR7ngNx1JkWgfRcn6fFn2CAiInSbdq\r\nvXfvkGcWD8Y9Qgc7rtvr7tLUWGad1JJExnf936rgIRlTIfQ3+Mbm37n2az32\r\nXQzoUGYIW++HVsAzwHK3njCCjeqEfop04qc=\r\n=ujsY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"652a4cf0b27137db164647ab299cfa2eb8886110","scripts":{"lint":"eslint .","test":"npm run tests-only","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"8.3.1","description":"Is this specifier a node.js core module?","directories":{},"sideEffects":false,"_nodeVersion":"18.0.0","dependencies":{"has":"^1.0.3"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.0","nyc":"^10.3.2","tape":"^5.5.3","eslint":"=8.8.0","semver":"^6.3.0","mock-property":"^1.0.0","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.0.0"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.9.0_1650385387077_0.8884023023191567","host":"s3://npm-registry-packages"}},"2.10.0":{"name":"is-core-module","version":"2.10.0","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.10.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"9012ede0a91c69587e647514e1d5277019e728ed","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz","fileCount":9,"integrity":"sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==","signatures":[{"sig":"MEUCIQD2UkSxRDT+ayl+EkqXEXol/3iJ/Hd0XwQmwMrhJnnQqQIgLBSugAfZJYkcNCa+zt+CMjYpECB2edFp043lb9+2C/4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27275,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi62oUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrWzw//UAQMNcl/q51QmjW27n4t7erCGWSjGjgS+j0J1ziLgRQFZZbX\r\nhyIqBmcmwDhvrLkN/VBo6X3Z4xxFJ1QQ9xnc+w7A7GUGxx6x75ZIc3SNdrxv\r\neERDsr5tPIIwC+usOx3qdaRwAVSHaI/9j91cye+Bvzl6BQaB9DKj7bAdoOKv\r\n4uzdLaLsgrFzEBdVG0NRVsQt75H4hZDUDqtiqg+pnrzJbXkgTak0HO5gIYel\r\nDpe5aU7i9/JBv+a//ZSeOub/3mQBtDqDg3I2Pi9NROL/JGZ462vcnfUCZwcB\r\n2ndXOXt00/g/isy3cObLKNcvYCQ35pyjE2bmYJkABu9YrDg2EkMWz1WIb5kh\r\nzWVbcmerIO3TaO43ZiS3LgggScUf2DEZzP9WJ1JT1vydmySnGrDC40kiAg/E\r\nBXsk9dcQOLvIqnrZ8tY5mU1r+nwNE6f0ZfW7SHjYKUaqPSOmc7exf4jU04+9\r\nuVvlUmkfkJ7nkq6ZW4V6tg1enymIdBPmF/Svp//eymPfrpeH7EIIwZgSBZ3H\r\nEKMidYeoIrufmcMd905rWJP9LJthILE+TfSt1X8QajYh9IlDFGDwSLjFKSUS\r\nC8A4+uXIJZzOCW8VsjCzBtwtcyk6XUwkSnCvJCGXzoA4O+cpxNr8RmFNBTof\r\njenViReEAkhSb+xQapDbFC87Gu67nLERERs=\r\n=OKFe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"bd0bbdf0c9300cb3ff21902d9fce11c833da2c51","scripts":{"lint":"eslint .","test":"npm run tests-only","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"8.15.0","description":"Is this specifier a node.js core module?","directories":{},"sideEffects":false,"_nodeVersion":"18.7.0","dependencies":{"has":"^1.0.3"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.0","nyc":"^10.3.2","tape":"^5.5.3","eslint":"=8.8.0","semver":"^6.3.0","mock-property":"^1.0.0","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.0.0"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.10.0_1659595283974_0.9531364810534915","host":"s3://npm-registry-packages"}},"2.11.0":{"name":"is-core-module","version":"2.11.0","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.11.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"ad4cb3e3863e814523c96f3f58d26cc570ff0144","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz","fileCount":9,"integrity":"sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==","signatures":[{"sig":"MEUCIQCXnXQD8t5dtd066XWvv3S0dF60E2/Os1bp/K3yqjr+kAIgZudZe7XVrwSkAXzNugJ2VuxwU0IqaRhrhBBKWhNMRBg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28101,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjTt09ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpsSRAAlMAGnwjnPDIG60GeTuaCn4kbor/vDSO4gdMAgquG8AzBZu8+\r\nnsk6OV8wAiQ9gCprmwz3pRzVlRda71b+sREQ/yXe/srr7m1CgI3Y9KNzi5h6\r\nW3J9UnEWe7ya5+j1vqlGjuBRFE7rOcmkux+jWKpnm8yf+vBYrCinO1cF99TG\r\nweXgDmN/Vu6Ra2e6PetD96dfi5dM0ed8VH09K15OVmETX5S6iMkhOU4l3wC8\r\nvbaloKNhJpKbIs9mXqdUT0RWsTJ7FgvyYzN1OVjYcbQXlTstSrR8LJ7hq1T1\r\nL/hdzxJhwAWqtPG9KkXoUH8Lpp2f5CSnebEAH5R9yzR9TSQsX2N5k5FBy2lO\r\nMX99hJnQXmbk6A4dKTrtEg3FMQR695aNaiB0QdTf1MdPJLCph6AA9j28ho2A\r\nGnz3sjDW8j2WLtsh0nCp8aLHj6onGwKqHvT7KEUaAhkMamACDYYP9fbgv+C/\r\nFSJP1R9RHzLt0GAcsrfSE58fI+sGiVU9CcjCIv7Q13wF3VcpwhkbYog7lBQ0\r\n1QmTMEAgVkDX+fNmjZdOjcoCZau9VG1fC9ftCI7VswujNTt39/UoVmXeEUZK\r\nray0LJavs84nYIV23B8cE11pbLiSCT5xzwtucaM/JqSIj3gHg2yiMH18qqGa\r\nd0Rpa2npyZH6CoOmJiB6z72R5l0S2+iYbeY=\r\n=9BnL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"12cfb2d3bcefc3de19264b3a39208d29f5432516","scripts":{"lint":"eslint .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"8.19.2","description":"Is this specifier a node.js core module?","directories":{},"sideEffects":false,"_nodeVersion":"19.0.0","dependencies":{"has":"^1.0.3"},"publishConfig":{"ignore":[".github"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.1","nyc":"^10.3.2","tape":"^5.6.1","eslint":"=8.8.0","semver":"^6.3.0","npmignore":"^0.3.0","mock-property":"^1.0.0","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.0.0"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.11.0_1666112829392_0.17125828222085593","host":"s3://npm-registry-packages"}},"2.12.0":{"name":"is-core-module","version":"2.12.0","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.12.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"36ad62f6f73c8253fd6472517a12483cf03e7ec4","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz","fileCount":9,"integrity":"sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==","signatures":[{"sig":"MEQCIGjkrJyZ6nCXpHH9KJgG4ekkMQTKQqUlALXuiGfJSLUFAiBs1KZQGLQJiRsnt+vzjYzFRnJk1zUB3ET/aGWOALNNPA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29005,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkNGJjACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoEoQ//RIc7Q9PjqFSvdmixGkeFa95tjEhvELJm08DylSuzDTD4bSfO\r\nS040yZsOp2Ep6Nru6MVUHQE93oROQ626M/TD60MFIjgQFo+QTmqDfPNOfc6K\r\n4uXvRCXHBAH/a1/60GZa3etFI6rtHYzR5p+JwDIY7qSHbB/VdjgkZRVp4v7f\r\nKu0sm/eoK5Or9uIDWfxbsL48b++sZGEHSuiN8bN78XODYtBRvMFPv52XfJ1T\r\nw/kItu8EYkCdYPogBsrtl2QIBc79sSfkgbdKIhJjfLQNwMT5UfhF09NCO8oQ\r\ndLdQwuxFhjCRTjRa4Dre+zac+Mtbj8K5TpQeeIVSwK2mcdRQZeIObnKiCPs4\r\nUtJnXllZKAk0nbFV2aLBw3l02+l8aYXfZY8eQwqfsZqLb5PtUdUfIKtixp3C\r\n4nMGYMXj4G+TDz97j3lPXse4cS8z2cpEAd9DBGy335QSqn6itXPEOhV5Cx8K\r\n/RCKlj3B/ZtcHnnVjSosPY7SEks3tlfZsvb7hqGtnflHUr9H/kYO426jElXS\r\nCJxR4ihZPgKcIJ0ExjaUNSDkDMbGBm+FDe+DklD0DtVhl/FP9cxxZ59ZO2nc\r\n3NTOIgksrywI+5vgimVFtfADci/yxNJ3hmsAZoR1Rg0PjOfk6Z6wBMLcUEC3\r\n8FJTLZyOghqD6eMY/3kTeor2ChguaHUfvaU=\r\n=jfnZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"29272c9932f79f43d1ac680b78d130be9fb1a676","scripts":{"lint":"eslint .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"9.5.1","description":"Is this specifier a node.js core module?","directories":{},"sideEffects":false,"_nodeVersion":"19.8.1","dependencies":{"has":"^1.0.3"},"publishConfig":{"ignore":[".github"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.2","nyc":"^10.3.2","tape":"^5.6.3","eslint":"=8.8.0","semver":"^6.3.0","npmignore":"^0.3.0","in-publish":"^2.0.1","mock-property":"^1.0.0","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.0.1"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.12.0_1681154659149_0.4278501421281349","host":"s3://npm-registry-packages"}},"2.12.1":{"name":"is-core-module","version":"2.12.1","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.12.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz","fileCount":9,"integrity":"sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==","signatures":[{"sig":"MEYCIQD3NzzpRWuWnCjjmfHngMI8JXvTXqb1jirEmjA2MYc16QIhAKlExGcMColC5N7MXGU9uYJkPfZh8lqnbjt4RewlSpSA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29292},"main":"index.js","exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"77d33fb50747b9b6a89841542f6628fd00fb2cf0","scripts":{"lint":"eslint .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"9.6.6","description":"Is this specifier a node.js core module?","directories":{},"sideEffects":false,"_nodeVersion":"20.2.0","dependencies":{"has":"^1.0.3"},"publishConfig":{"ignore":[".github"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.2","nyc":"^10.3.2","tape":"^5.6.3","eslint":"=8.8.0","semver":"^6.3.0","npmignore":"^0.3.0","in-publish":"^2.0.1","mock-property":"^1.0.0","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.0.1"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.12.1_1684256724721_0.34969833744100876","host":"s3://npm-registry-packages"}},"2.13.0":{"name":"is-core-module","version":"2.13.0","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.13.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz","fileCount":9,"integrity":"sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==","signatures":[{"sig":"MEUCIHPDtHTQgbtRjq+UfGtgWQqz7GWOXZ7JFa+prgnSDJ2zAiEAyrl53cPdt9kmNf8KRzntMSRcj7tWXFAeaSK9LAqxVmw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29815},"main":"index.js","exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"670c38eaecccf743ddcb520a4bc80993c6bc4eb7","scripts":{"lint":"eslint .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"9.8.0","description":"Is this specifier a node.js core module?","directories":{},"sideEffects":false,"_nodeVersion":"20.5.0","dependencies":{"has":"^1.0.3"},"publishConfig":{"ignore":[".github"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.3","nyc":"^10.3.2","tape":"^5.6.6","eslint":"=8.8.0","semver":"^6.3.1","npmignore":"^0.3.0","in-publish":"^2.0.1","mock-property":"^1.0.0","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.1.0"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.13.0_1691190664497_0.9021294748126674","host":"s3://npm-registry-packages"}},"2.13.1":{"name":"is-core-module","version":"2.13.1","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.13.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"ad0d7532c6fea9da1ebdc82742d74525c6273384","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz","fileCount":9,"integrity":"sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==","signatures":[{"sig":"MEYCIQC1LvrEsf5IBF6xHinrTuhdLGkiqC53QdoRdrCTK0+ZQgIhAMbeBX1jbQOglx1+D1pE5CmAGjtTgqiTJi/UimQmrX8R","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30239},"main":"index.js","exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"8317b311856a61935d7257ad5f31f9b0cfd13b5f","scripts":{"lint":"eslint .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"10.2.0","description":"Is this specifier a node.js core module?","directories":{},"sideEffects":false,"_nodeVersion":"21.0.0","dependencies":{"hasown":"^2.0.0"},"publishConfig":{"ignore":[".github"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.3","nyc":"^10.3.2","tape":"^5.7.1","eslint":"=8.8.0","semver":"^6.3.1","npmignore":"^0.3.0","in-publish":"^2.0.1","mock-property":"^1.0.2","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.1.0"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.13.1_1697864269163_0.026580204144382336","host":"s3://npm-registry-packages"}},"2.14.0":{"name":"is-core-module","version":"2.14.0","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.14.0","homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"43b8ef9f46a6a08888db67b1ffd4ec9e3dfd59d1","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.14.0.tgz","fileCount":9,"integrity":"sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==","signatures":[{"sig":"MEQCIFrZL8uk8+HQHRrFzTKTOFdGec0hMAu1UDYUA2AdgplXAiAJknUY1MJfGGwDzvbFmLO3ui3sBF+hPqRfvHEY0uVRIw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31063},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"3531bbfe28a137943a47607be95a239753bab820","scripts":{"lint":"eslint .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"10.8.1","description":"Is this specifier a node.js core module?","directories":{},"sideEffects":false,"_nodeVersion":"22.3.0","dependencies":{"hasown":"^2.0.2"},"publishConfig":{"ignore":[".github"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.4","nyc":"^10.3.2","tape":"^5.8.1","eslint":"=8.8.0","semver":"^6.3.1","npmignore":"^0.3.1","in-publish":"^2.0.1","mock-property":"^1.0.3","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.1.1"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.14.0_1718915583183_0.6411148053601121","host":"s3://npm-registry-packages"}},"2.15.0":{"name":"is-core-module","version":"2.15.0","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.15.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"71c72ec5442ace7e76b306e9d48db361f22699ea","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz","fileCount":9,"integrity":"sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==","signatures":[{"sig":"MEYCIQDUd18JRyH04SSfo2UG3Ygye8mGhxzxvo236R60vTCNiQIhAMTFnRE8JoL9Zm6LevWDjWf9BzHmLNDVjkmTHGUL23xI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31459},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"8ec336652e3b0237dcb3b42360d500b9e776794d","scripts":{"lint":"eslint .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"10.8.2","description":"Is this specifier a node.js core module?","directories":{},"sideEffects":false,"_nodeVersion":"22.5.0","dependencies":{"hasown":"^2.0.2"},"publishConfig":{"ignore":[".github"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.4","nyc":"^10.3.2","tape":"^5.8.1","eslint":"=8.8.0","semver":"^6.3.1","npmignore":"^0.3.1","in-publish":"^2.0.1","mock-property":"^1.0.3","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.1.1"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.15.0_1721248418090_0.1720772272216744","host":"s3://npm-registry-packages"}},"2.15.1":{"name":"is-core-module","version":"2.15.1","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.15.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"a7363a25bee942fefab0de13bf6aa372c82dcc37","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz","fileCount":9,"integrity":"sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==","signatures":[{"sig":"MEYCIQCDRONkmmbtezk4HVvmw4d9cmoXB6pB7Cv3qLtHWm57XAIhANUm37zew8kXGfBQAnaMlSX6jLkKbJ/oI6lvkYyZAE2i","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32706},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"9a0ab3c874c6cf9c5682f35c3d9dadcc9d0093b3","scripts":{"lint":"eslint .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"npx npm@'>=10.2' audit --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"10.8.2","description":"Is this specifier a node.js core module?","directories":{},"sideEffects":false,"_nodeVersion":"22.6.0","dependencies":{"hasown":"^2.0.2"},"publishConfig":{"ignore":[".github"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"nyc":"^10.3.2","tape":"^5.8.1","eslint":"=8.8.0","semver":"^6.3.1","encoding":"^0.1.13","npmignore":"^0.3.1","in-publish":"^2.0.1","mock-property":"^1.1.0","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.1.1"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.15.1_1724269937690_0.16731255767892006","host":"s3://npm-registry-packages"}},"2.16.0":{"name":"is-core-module","version":"2.16.0","keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"is-core-module@2.16.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/is-core-module","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"dist":{"shasum":"6c01ffdd5e33c49c1d2abfa93334a85cb56bd81c","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.0.tgz","fileCount":9,"integrity":"sha512-urTSINYfAYgcbLb0yDQ6egFm6h3Mo1DcF9EkyXSRjjzdHbsulg01qhwWuXdOoUBuTkbQ80KDboXa0vFJ+BDH+g==","signatures":[{"sig":"MEQCIFvEDAH9OrBRRWAntcIux/KNZ3sC21Tm6WaP6/Pt31UUAiA6bxrdiPaIepJX+qrztECEXoymirQdzmH5Z2TNzJR7Jg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33228},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"672bdddabefdc60bff6783ec843a732eba4b1340","scripts":{"lint":"eslint .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"npx npm@'>=10.2' audit --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/inspect-js/is-core-module.git","type":"git"},"_npmVersion":"10.9.2","description":"Is this specifier a node.js core module?","directories":{},"sideEffects":false,"_nodeVersion":"23.4.0","dependencies":{"hasown":"^2.0.2"},"publishConfig":{"ignore":[".github"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"nyc":"^10.3.2","tape":"^5.9.0","eslint":"=8.8.0","semver":"^6.3.1","encoding":"^0.1.13","npmignore":"^0.3.1","in-publish":"^2.0.1","mock-property":"^1.1.0","auto-changelog":"^2.5.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.1.1"},"_npmOperationalInternal":{"tmp":"tmp/is-core-module_2.16.0_1734122836718_0.3649056505583339","host":"s3://npm-registry-packages-npm-production"}},"2.16.1":{"name":"is-core-module","version":"2.16.1","description":"Is this specifier a node.js core module?","main":"index.js","sideEffects":false,"exports":{".":"./index.js","./package.json":"./package.json"},"scripts":{"prepack":"npmignore --auto --commentLines=autogenerated","prepublish":"not-in-publish || npm run prepublishOnly","prepublishOnly":"safe-publish-latest","lint":"eslint .","pretest":"npm run lint","tests-only":"nyc tape 'test/**/*.js'","test":"npm run tests-only","posttest":"npx npm@'>=10.2' audit --production","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git+https://github.com/inspect-js/is-core-module.git"},"keywords":["core","modules","module","npm","node","dependencies"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"funding":{"url":"https://github.com/sponsors/ljharb"},"license":"MIT","bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"homepage":"https://github.com/inspect-js/is-core-module","dependencies":{"hasown":"^2.0.2"},"devDependencies":{"@ljharb/eslint-config":"^21.1.1","auto-changelog":"^2.5.0","encoding":"^0.1.13","eslint":"=8.8.0","in-publish":"^2.0.1","mock-property":"^1.1.0","npmignore":"^0.3.1","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","semver":"^6.3.1","tape":"^5.9.0"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github"]},"engines":{"node":">= 0.4"},"_id":"is-core-module@2.16.1","gitHead":"7c4284853357b2fcd49d42010d5a2b8a8420905f","_nodeVersion":"23.5.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==","shasum":"2a98801a849f43e2add644fbb6bc6229b19a4ef4","tarball":"https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz","fileCount":9,"unpackedSize":33475,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBrGR2MUJsUstAY93cEDrzi47USefGMwVXvpO21ONyhSAiAOXKjmAhX60Ic4o5pEVZtdzyl3j/IDHy1EC1oV1cMaSA=="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/is-core-module_2.16.1_1734816206995_0.9080496812420369"},"_hasShrinkwrap":false}},"time":{"created":"2014-09-29T03:21:42.420Z","modified":"2024-12-21T21:23:27.438Z","1.0.0":"2014-09-29T03:21:42.420Z","1.0.1":"2014-09-29T03:36:28.359Z","1.0.2":"2014-09-29T03:38:15.852Z","2.0.0":"2020-09-29T18:08:41.736Z","2.1.0":"2020-11-04T20:14:31.722Z","2.2.0":"2020-11-26T17:56:48.104Z","2.3.0":"2021-04-24T20:41:48.630Z","2.4.0":"2021-05-09T20:32:48.938Z","2.5.0":"2021-07-13T06:42:23.569Z","2.6.0":"2021-08-17T18:17:32.930Z","2.7.0":"2021-09-27T16:24:16.228Z","2.8.0":"2021-10-14T17:53:58.949Z","2.8.1":"2022-01-05T20:55:38.175Z","2.9.0":"2022-04-19T16:23:07.238Z","2.10.0":"2022-08-04T06:41:24.202Z","2.11.0":"2022-10-18T17:07:09.553Z","2.12.0":"2023-04-10T19:24:19.335Z","2.12.1":"2023-05-16T17:05:24.917Z","2.13.0":"2023-08-04T23:11:04.700Z","2.13.1":"2023-10-21T04:57:49.460Z","2.14.0":"2024-06-20T20:33:03.354Z","2.15.0":"2024-07-17T20:33:38.229Z","2.15.1":"2024-08-21T19:52:17.873Z","2.16.0":"2024-12-13T20:47:16.910Z","2.16.1":"2024-12-21T21:23:27.215Z"},"bugs":{"url":"https://github.com/inspect-js/is-core-module/issues"},"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","homepage":"https://github.com/inspect-js/is-core-module","keywords":["core","modules","module","npm","node","dependencies"],"repository":{"type":"git","url":"git+https://github.com/inspect-js/is-core-module.git"},"description":"Is this specifier a node.js core module?","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"readme":"# is-core-module [![Version Badge][2]][1]\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\n[![dependency status][5]][6]\n[![dev dependency status][7]][8]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][11]][1]\n\nIs this specifier a node.js core module? Optionally provide a node version to check; defaults to the current node version.\n\n## Example\n\n```js\nvar isCore = require('is-core-module');\nvar assert = require('assert');\nassert(isCore('fs'));\nassert(!isCore('butts'));\n```\n\n## Tests\nClone the repo, `npm install`, and run `npm test`\n\n[1]: https://npmjs.org/package/is-core-module\n[2]: https://versionbadg.es/inspect-js/is-core-module.svg\n[5]: https://david-dm.org/inspect-js/is-core-module.svg\n[6]: https://david-dm.org/inspect-js/is-core-module\n[7]: https://david-dm.org/inspect-js/is-core-module/dev-status.svg\n[8]: https://david-dm.org/inspect-js/is-core-module#info=devDependencies\n[11]: https://nodei.co/npm/is-core-module.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/is-core-module.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/is-core-module.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=is-core-module\n[codecov-image]: https://codecov.io/gh/inspect-js/is-core-module/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/inspect-js/is-core-module/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-core-module\n[actions-url]: https://github.com/inspect-js/is-core-module/actions\n","readmeFilename":"README.md","users":{"flumpus-dev":true}}
\ No newline at end of file
diff --git a/.npm-cache/_cacache/content-v2/sha512/1d/06/eddbc2ae942e402731be719b63f64bca07ddc214274bbe88355852dfd43fb198cbcf1a506cb64a531197cae7e00df617c9a1cc81142362ab24b8f1ba60cd b/.npm-cache/_cacache/content-v2/sha512/1d/06/eddbc2ae942e402731be719b63f64bca07ddc214274bbe88355852dfd43fb198cbcf1a506cb64a531197cae7e00df617c9a1cc81142362ab24b8f1ba60cd
deleted file mode 100644
index c07cf6a..0000000
Binary files a/.npm-cache/_cacache/content-v2/sha512/1d/06/eddbc2ae942e402731be719b63f64bca07ddc214274bbe88355852dfd43fb198cbcf1a506cb64a531197cae7e00df617c9a1cc81142362ab24b8f1ba60cd and /dev/null differ
diff --git a/.npm-cache/_cacache/content-v2/sha512/1e/0a/7df0ee3e0bb4617a6fc7e91634cf79b9b24f4d3a2b7ac1f1e68c4a040bcd7f258ce5105bee2fa569b4e6ff10a9e49513eb5683ed0f5bfa409b50a32c942a b/.npm-cache/_cacache/content-v2/sha512/1e/0a/7df0ee3e0bb4617a6fc7e91634cf79b9b24f4d3a2b7ac1f1e68c4a040bcd7f258ce5105bee2fa569b4e6ff10a9e49513eb5683ed0f5bfa409b50a32c942a
deleted file mode 100644
index f7de6e7..0000000
--- a/.npm-cache/_cacache/content-v2/sha512/1e/0a/7df0ee3e0bb4617a6fc7e91634cf79b9b24f4d3a2b7ac1f1e68c4a040bcd7f258ce5105bee2fa569b4e6ff10a9e49513eb5683ed0f5bfa409b50a32c942a
+++ /dev/null
@@ -1 +0,0 @@
-{"_id":"postcss-load-config","_rev":"39-cc49c8c21908aa7dfe5fed8538ac8062","name":"postcss-load-config","description":"Autoload Config for PostCSS","dist-tags":{"latest":"6.0.1"},"versions":{"1.0.0-alpha":{"name":"postcss-load-config","version":"1.0.0-alpha","keywords":["PostCSS","Autoload","Config"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@1.0.0-alpha","maintainers":[{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"homepage":"https://github.com/michael-ciniawsky/postcss-load-config#readme","bugs":{"url":"https://github.com/michael-ciniawsky/postcss-load-config/issues"},"ava":{"babel":"inherit"},"nyc":{"all":true,"include":["lib","test"],"require":"babel-register","extension":[".js"]},"dist":{"shasum":"593ca9197c9e0ebce5697d1325a5c5efb0139efd","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-1.0.0-alpha.tgz","integrity":"sha512-79aDXT8skLonBx1B0pVfwpu9BdyN9yUJvsFmdc20boOenm7oNHyiX8n8uYcUYUdI7jmpqZ+vDcT+68S+7LhK5A==","signatures":[{"sig":"MEUCIBzK8HhbrRxWxHif8sksn4T4TTR1UBgd9GyNTGX1RRn4AiEAujpQirz9VtAQSF5MBFwcgyT9S/UzrShUjUUQ1d05lfU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","babel":{"env":{"development":{"sourceMaps":"inline"}},"presets":["es2015"]},"_shasum":"593ca9197c9e0ebce5697d1325a5c5efb0139efd","engines":{"node":">=4"},"gitHead":"5088f1535cdbd8255a3ab1ad767ae88ca6497039","scripts":{"test":"echo '=> Testing' && nyc ava './test/index.js'","clean":"echo '=> Cleaning' && rm -rf .nyc_output coverage test/node_modules","start":"echo '=> Starting' && sudo npm test","pretest":"echo '=> Linting' && npm run clean && standard"},"_npmUser":{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},"standard":{"ignore":[]},"repository":{"url":"git+https://github.com/michael-ciniawsky/postcss-load-config.git","type":"git"},"_npmVersion":"3.9.5","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"6.2.0","dependencies":{"cosmiconfig":"^1.1.0"},"devDependencies":{"ava":"^0.15.1","nyc":"^6.4.4","postcss":"^5.0.21","sugarss":"^0.1.3","standard":"^7.1.1","coveralls":"^2.11.9","babel-core":"^6.9.1","postcss-bem":"^0.4.1","postcss-less":"^0.12.0","postcss-scss":"^0.1.8","babel-register":"^6.9.0","postcss-import":"^8.1.2","postcss-nested":"^1.0.0","babel-preset-es2015":"^6.9.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config-1.0.0-alpha.tgz_1464792383282_0.15225055231712759","host":"packages-16-east.internal.npmjs.com"}},"1.0.0-alpha2":{"name":"postcss-load-config","version":"1.0.0-alpha2","keywords":["postcss","postcssconfig"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@1.0.0-alpha2","maintainers":[{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"homepage":"https://github.com/michael-ciniawsky/postcss-load-config#readme","bugs":{"url":"https://github.com/michael-ciniawsky/postcss-load-config/issues"},"ava":{"verbose":"true"},"nyc":{"all":true,"include":["test"],"extension":[".js"]},"dist":{"shasum":"d296fa4f3366cc36c59e833aaa305a4a403ad63c","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-1.0.0-alpha2.tgz","integrity":"sha512-HQhB7mp1vR1GNxX115ES7ZvLx31jH2fpi98JBD2veFfCrHUsf1e4uXN9GLFx8F1pXt5PFKjnYe8yRaLMcHab9g==","signatures":[{"sig":"MEYCIQDhDoMTsB59dHZBs9b0C+gaf2Vu0KftUEKQ83QSMfl9PwIhAKMQix2OX4/LHXK0GF/WwIaivCyVqJDjLBSVK4u3PbcA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d296fa4f3366cc36c59e833aaa305a4a403ad63c","engines":{"node":">=4"},"gitHead":"8fe486ef58a6a5b0f43b000fcc13c5a5e784b6be","scripts":{"test":"echo '=> Testing' && nyc ava 'test/index.js'","clean":"echo '=> Cleaning' && rm -rf .nyc_output coverage","start":"echo '=> Starting' && sudo npm test","pretest":"echo '=> Linting' && npm run clean && standard"},"_npmUser":{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},"repository":{"url":"git+https://github.com/michael-ciniawsky/postcss-load-config.git","type":"git"},"_npmVersion":"3.10.3","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"6.3.0","dependencies":{"cosmiconfig":"^1.1.0","postcss-load-options":"^1.0.0-alpha2","postcss-load-plugins":"^2.0.0-alpha2"},"devDependencies":{"ava":"^0.15.2","nyc":"^6.6.1","postcss":"^5.0.21","sugarss":"^0.1.3","standard":"^7.1.2","coveralls":"^2.11.9","postcss-bem":"^0.4.1","postcss-import":"^8.1.2","postcss-nested":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config-1.0.0-alpha2.tgz_1467905735891_0.5539679552894086","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-alpha3":{"name":"postcss-load-config","version":"1.0.0-alpha3","keywords":["postcss","postcssconfig"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@1.0.0-alpha3","maintainers":[{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"homepage":"https://github.com/michael-ciniawsky/postcss-load-config#readme","bugs":{"url":"https://github.com/michael-ciniawsky/postcss-load-config/issues"},"ava":{"verbose":"true"},"nyc":{"all":true,"include":["test"],"extension":[".js"]},"dist":{"shasum":"f9918b736a8d2b951807edd8b522dc58828c8be7","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-1.0.0-alpha3.tgz","integrity":"sha512-WCOCKUd0leEQPjzsQugm3BfXX0oL/+1Dk7v/MF5Y9voO3+OzbNMhOpKkroPf6juoLifOXeeAQCtId2oTyS8LlQ==","signatures":[{"sig":"MEUCIBxiL6Y9L01qd4wYsmcjJBvkQSm2FEnDjpoTgHReEWFHAiEAteZhcuhc2A/qLa9vdwCFa0GGFKrGUVpBHl6EtN6ww1c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f9918b736a8d2b951807edd8b522dc58828c8be7","engines":{"node":">=4"},"gitHead":"6a6446893e160e836c4382e940eeb9cfe0b85db4","scripts":{"test":"echo '=> Testing' && nyc ava 'test/index.js'","clean":"echo '=> Cleaning' && rm -rf .nyc_output coverage","start":"echo '=> Starting' && sudo npm test","pretest":"echo '=> Linting' && npm run clean && standard"},"_npmUser":{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},"repository":{"url":"git+https://github.com/michael-ciniawsky/postcss-load-config.git","type":"git"},"_npmVersion":"3.10.3","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"6.3.0","dependencies":{"cosmiconfig":"^1.1.0","postcss-load-options":"^1.0.0-alpha3","postcss-load-plugins":"^2.0.0-alpha3"},"devDependencies":{"ava":"^0.15.2","nyc":"^6.6.1","postcss":"^5.0.21","sugarss":"^0.1.3","standard":"^7.1.2","coveralls":"^2.11.9","postcss-bem":"^0.4.1","postcss-import":"^8.1.2","postcss-nested":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config-1.0.0-alpha3.tgz_1468018560313_0.7030459686648101","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-alpha4":{"name":"postcss-load-config","version":"1.0.0-alpha4","keywords":["postcss","postcssconfig"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@1.0.0-alpha4","maintainers":[{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"homepage":"https://github.com/michael-ciniawsky/postcss-load-config#readme","bugs":{"url":"https://github.com/michael-ciniawsky/postcss-load-config/issues"},"ava":{"verbose":"true"},"nyc":{"all":true,"include":["test"],"extension":[".js"]},"dist":{"shasum":"a3117468cf8a650635df0a8c0cc3b042bc5c235f","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-1.0.0-alpha4.tgz","integrity":"sha512-fNVVNoKL4dd75iMs8z8aUfdYDN32oH6NtSSgR+9VvdFwBOH7RyHDI2wen7LNiSavFgP7Yw+rX8xLKnc25b2gNg==","signatures":[{"sig":"MEUCIHx9wB5D4Hso79yo8jgHj7fq+itjXHah78ebJghCqWpdAiEAmrBP92FbcY+3c5tKohIbBH8mWmzyH/zFLPjC0X1KP6U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a3117468cf8a650635df0a8c0cc3b042bc5c235f","engines":{"node":">=4"},"gitHead":"c17d86ff96a7b80100b9ffad566451efe1496566","scripts":{"test":"echo '=> Testing' && nyc ava 'test/index.js'","clean":"echo '=> Cleaning' && rm -rf .nyc_output coverage","start":"echo '=> Starting' && sudo npm test","pretest":"echo '=> Linting' && npm run clean && standard"},"_npmUser":{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},"repository":{"url":"git+https://github.com/michael-ciniawsky/postcss-load-config.git","type":"git"},"_npmVersion":"3.10.3","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"6.3.0","dependencies":{"cosmiconfig":"^1.1.0","postcss-load-options":"^1.0.0-alpha4","postcss-load-plugins":"^2.0.0-alpha4"},"devDependencies":{"ava":"^0.15.2","nyc":"^6.6.1","postcss":"^5.0.21","sugarss":"^0.1.3","standard":"^7.1.2","coveralls":"^2.11.9","postcss-bem":"^0.4.1","postcss-import":"^8.1.2","postcss-nested":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config-1.0.0-alpha4.tgz_1468072434778_0.28771781944669783","host":"packages-16-east.internal.npmjs.com"}},"1.0.0-beta":{"name":"postcss-load-config","version":"1.0.0-beta","keywords":["postcss","postcss-config"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@1.0.0-beta","maintainers":[{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"url":"http://ertrzyiks.me","name":"Mateusz Derks"}],"homepage":"https://github.com/michael-ciniawsky/postcss-load-config#readme","bugs":{"url":"https://github.com/michael-ciniawsky/postcss-load-config/issues"},"ava":{"verbose":"true"},"nyc":{"all":true,"include":["index.js"],"extension":[".js"]},"dist":{"shasum":"5a91188f834d4f8ed4b26381f51c92a570163e3b","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-1.0.0-beta.tgz","integrity":"sha512-SyCYVXu4eWLOvDTaq9bJxHt2V8Mw/iwLcwgw/xINkcliX9mmnBqdiIlFlaOBYhBZHkhZQXX+ZQNExb0w9MgSsg==","signatures":[{"sig":"MEYCIQD0o41X/Xji7In5Gns1JojFqV53OhjLeoCF76dbpSza9gIhAJ7G6xX2jRggmp6xVZ0xFQdtWkhreXcDKazCj/wqrLrl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"5a91188f834d4f8ed4b26381f51c92a570163e3b","engines":{"npm":">=3","node":">=4"},"gitHead":"db19af442594c6c058301b574d7fbfb0f1b7508b","scripts":{"docs":"jsdoc2md index.js > INDEX.md","lint":"standard","logs":"standard-changelog > CHANGELOG.md","test":"nyc ava test/pkg/index.js test/rc/index.js test/js/index.js","clean":"rm -rf .nyc_output coverage jsdoc-api dmd","start":"sudo npm run clean && npm run lint && sudo npm test"},"_npmUser":{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},"repository":{"url":"git+https://github.com/michael-ciniawsky/postcss-load-config.git","type":"git"},"_npmVersion":"3.10.8","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"6.7.0","dependencies":{"cosmiconfig":"^2.0.2","postcss-load-options":"^1.0.1","postcss-load-plugins":"^2.0.0-beta"},"devDependencies":{"ava":"^0.16.0","nyc":"^8.3.1","cssnano":"^3.7.7","postcss":"^5.2.4","sugarss":"^0.2.0","standard":"^8.4.0","coveralls":"^2.11.14","postcss-scss":"^0.3.1","postcss-import":"^8.1.2","postcss-nested":"^1.0.0","jsdoc-to-markdown":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config-1.0.0-beta.tgz_1476249755926_0.550744533771649","host":"packages-16-east.internal.npmjs.com"}},"1.0.0-rc":{"name":"postcss-load-config","version":"1.0.0-rc","keywords":["postcss","postcss-config"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@1.0.0-rc","maintainers":[{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"url":"http://ertrzyiks.me","name":"Mateusz Derks"},{"name":"Ryan Dunckel","email":"sparty02@gmail.com"}],"homepage":"https://github.com/michael-ciniawsky/postcss-load-config#readme","bugs":{"url":"https://github.com/michael-ciniawsky/postcss-load-config/issues"},"ava":{"verbose":"true"},"nyc":{"all":true,"include":["index.js"],"extension":[".js"]},"dist":{"shasum":"8aed0d0fb94afe2c1ab0ba2ca69da3af5079e2cc","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-1.0.0-rc.tgz","integrity":"sha512-27ktOiQCqyMHK9sL157+Dt4FrGPcN+a7FN0JJI0FjPq1IieKYSQ+R8zshMm6qXQGB+l282CyYyTvnrm+nY5htw==","signatures":[{"sig":"MEQCIE/m8fdEF72TZTKFd8q4PsIX6Ido5P3GIZE4FdRVYWIzAiA3lKycraSl0ujMGCLLz48/i5SpWtEB54VzEtcHb7qQ8w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8aed0d0fb94afe2c1ab0ba2ca69da3af5079e2cc","engines":{"npm":">=3","node":">=0.12"},"gitHead":"5e7e3073368d9172b5beecd7f2efc6a75b9e624e","scripts":{"docs":"jsdoc2md index.js > INDEX.md","lint":"standard","logs":"standard-changelog > CHANGELOG.md","test":"nyc ava test/pkg/index.js test/rc/index.js test/js/index.js","clean":"rm -rf .nyc_output coverage jsdoc-api dmd","start":"sudo npm run clean && npm run lint && sudo npm test"},"_npmUser":{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},"repository":{"url":"git+https://github.com/michael-ciniawsky/postcss-load-config.git","type":"git"},"_npmVersion":"3.10.8","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"6.8.0","dependencies":{"cosmiconfig":"^2.1.0","object-assign":"^4.1.0","postcss-load-options":"^1.0.2","postcss-load-plugins":"^2.0.0-rc"},"devDependencies":{"ava":"^0.16.0","nyc":"^8.3.1","cssnano":"^3.7.7","postcss":"^5.2.4","sugarss":"^0.2.0","standard":"^8.4.0","coveralls":"^2.11.14","postcss-scss":"^0.3.1","postcss-import":"^8.1.2","postcss-nested":"^1.0.0","jsdoc-to-markdown":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config-1.0.0-rc.tgz_1476466351756_0.5997516601346433","host":"packages-16-east.internal.npmjs.com"}},"1.0.0":{"name":"postcss-load-config","version":"1.0.0","keywords":["postcss","postcss-config"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@1.0.0","maintainers":[{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"url":"http://ertrzyiks.me","name":"Mateusz Derks"},{"name":"Ryan Dunckel","email":"sparty02@gmail.com"},{"name":"Patrick Gilday"}],"homepage":"https://github.com/michael-ciniawsky/postcss-load-config#readme","bugs":{"url":"https://github.com/michael-ciniawsky/postcss-load-config/issues"},"ava":{"verbose":"true"},"nyc":{"all":true,"include":["index.js"],"extension":[".js"]},"dist":{"shasum":"1399f60dcd6bd9c3124b2eb22960f77f9dc08b3d","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-1.0.0.tgz","integrity":"sha512-aiIVcBoxSQjyYu+nszY3uqOF5+DFT3vo0EE/WT1J97P/TpOiaqSYbsB0pfXdnvKq/yhhGpRv787db4pG4dGF6A==","signatures":[{"sig":"MEQCIE9R6IHk5elIu434StBRgPe2dKpp0hBYCmucJr60FVcAAiB9nY432qK25NxIVBhXGSh1+9hCNIe6BFOtzHsGzu1oNQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1399f60dcd6bd9c3124b2eb22960f77f9dc08b3d","engines":{"npm":">=3","node":">=0.12"},"gitHead":"cb3cfb13b4ebd5595552c032ffb18d30a863b3fc","scripts":{"docs":"jsdoc2md index.js > INDEX.md","lint":"standard","logs":"standard-changelog > CHANGELOG.md","test":"nyc ava test/err/index.js test/pkg/index.js test/rc/index.js test/js/index.js","clean":"rm -rf .nyc_output coverage jsdoc-api dmd","start":"sudo npm run clean && npm run lint && sudo npm test"},"_npmUser":{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},"repository":{"url":"git+https://github.com/michael-ciniawsky/postcss-load-config.git","type":"git"},"_npmVersion":"4.0.1","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"7.0.0","dependencies":{"cosmiconfig":"^2.1.0","object-assign":"^4.1.0","postcss-load-options":"^1.0.2","postcss-load-plugins":"^2.0.0"},"devDependencies":{"ava":"^0.16.0","nyc":"^8.3.1","cssnano":"^3.7.7","postcss":"^5.2.4","sugarss":"^0.2.0","standard":"^8.4.0","coveralls":"^2.11.14","postcss-scss":"^0.3.1","postcss-import":"^8.1.2","postcss-nested":"^1.0.0","postcss-sprites":"^4.0.0","jsdoc-to-markdown":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config-1.0.0.tgz_1477582028872_0.905647398903966","host":"packages-12-west.internal.npmjs.com"}},"1.1.0":{"name":"postcss-load-config","version":"1.1.0","keywords":["postcss","postcss-config"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@1.1.0","maintainers":[{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"url":"http://ertrzyiks.me","name":"Mateusz Derks"},{"name":"Ryan Dunckel","email":"sparty02@gmail.com"},{"name":"Patrick Gilday"}],"homepage":"https://github.com/michael-ciniawsky/postcss-load-config#readme","bugs":{"url":"https://github.com/michael-ciniawsky/postcss-load-config/issues"},"dist":{"shasum":"1c3c217608642448c03bebf3c32b1b28985293f9","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-1.1.0.tgz","integrity":"sha512-tT/pIkaNIy+N4nMBndJJPoO49xDgVwr/xcJCFPZO7h8z5EW2TSqh2IHS7m9AzFV8zJx4cS2aUUFAoE/Y0gRaAw==","signatures":[{"sig":"MEUCIDjwPETkpWPsqTBPBvSwUJpt5YjzL3jHeBKpMYW+RUwZAiEAkFHOfO277xbYsHixzZOvU20O1LwWVctL05ww1eyOWPQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"1c3c217608642448c03bebf3c32b1b28985293f9","engines":{"node":">=0.12"},"gitHead":"67f825b3a91941a06c75d8d5e3b116272a1620e9","scripts":{"docs":"jsdoc2md index.js > INDEX.md","lint":"standard","logs":"standard-changelog -i CHANGELOG.md -w","test":"nyc ava -v test/err/index.js test/pkg/index.js test/rc/index.js test/js/**/index.js","clean":"rm -rf .nyc_output coverage jsdoc-api dmd","start":"sudo npm run clean && npm run lint && sudo npm test"},"_npmUser":{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},"repository":{"url":"git+https://github.com/michael-ciniawsky/postcss-load-config.git","type":"git"},"_npmVersion":"4.0.5","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"7.4.0","dependencies":{"cosmiconfig":"^2.1.0","object-assign":"^4.1.0","postcss-load-options":"^1.1.0","postcss-load-plugins":"^2.2.0"},"devDependencies":{"ava":"^0.17.0","nyc":"^10.0.0","cssnano":"^3.10.0","postcss":"^5.2.8","sugarss":"^0.2.0","standard":"^8.6.0","coveralls":"^2.11.15","postcss-scss":"^0.4.0","postcss-import":"^9.1.0","postcss-nested":"^1.0.0","postcss-cssnext":"^2.8.0","postcss-sprites":"^4.1.1","jsdoc-to-markdown":"^2.0.0","standard-changelog":"0.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config-1.1.0.tgz_1484135079099_0.9944926460739225","host":"packages-12-west.internal.npmjs.com"}},"1.2.0":{"name":"postcss-load-config","version":"1.2.0","keywords":["postcss","postcss-config"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@1.2.0","maintainers":[{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"url":"http://ertrzyiks.me","name":"Mateusz Derks"},{"name":"Ryan Dunckel","email":"sparty02@gmail.com"},{"name":"Patrick Gilday"},{"name":"Dalton Santos"}],"homepage":"https://github.com/michael-ciniawsky/postcss-load-config#readme","bugs":{"url":"https://github.com/michael-ciniawsky/postcss-load-config/issues"},"dist":{"shasum":"539e9afc9ddc8620121ebf9d8c3673e0ce50d28a","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-1.2.0.tgz","integrity":"sha512-3fpCfnXo9Qd/O/q/XL4cJUhRsqjVD2V1Vhy3wOEcLE5kz0TGtdDXJSoiTdH4e847KphbEac4+EZSH4qLRYIgLw==","signatures":[{"sig":"MEUCIQDb15jNOaoO2sPgk/K0T9Yus2GiyHJYw1MCl4vEJqLIsAIgDT5L5KfU2LBXVmKAlR1L077QicluI1LpjEJY+srUX/g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"539e9afc9ddc8620121ebf9d8c3673e0ce50d28a","engines":{"node":">=0.12"},"gitHead":"a97396c6c9ede81a05e6dceab1a9c2aa896803bf","scripts":{"docs":"jsdoc2md index.js > INDEX.md","lint":"standard","logs":"standard-changelog -i CHANGELOG.md -w","test":"nyc ava -v test/err/index.js test/pkg/index.js test/rc/index.js test/js/**/index.js","clean":"rm -rf .nyc_output coverage jsdoc-api dmd","start":"sudo npm run clean && npm run lint && sudo npm test"},"_npmUser":{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},"repository":{"url":"git+https://github.com/michael-ciniawsky/postcss-load-config.git","type":"git"},"_npmVersion":"4.1.2","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"7.5.0","dependencies":{"cosmiconfig":"^2.1.0","object-assign":"^4.1.0","postcss-load-options":"^1.2.0","postcss-load-plugins":"^2.3.0"},"devDependencies":{"ava":"^0.18.1","nyc":"^10.1.0","cssnano":"^3.10.0","postcss":"^5.2.12","sugarss":"^0.2.0","standard":"^8.6.0","coveralls":"^2.11.16","postcss-scss":"^0.4.0","postcss-import":"^9.1.0","postcss-nested":"^1.0.0","postcss-cssnext":"^2.8.0","postcss-sprites":"^4.2.0","jsdoc-to-markdown":"^3.0.0","standard-changelog":"0.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config-1.2.0.tgz_1486952724378_0.6930401120334864","host":"packages-12-west.internal.npmjs.com"}},"2.0.0":{"name":"postcss-load-config","version":"2.0.0","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@2.0.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"}],"homepage":"https://github.com/michael-ciniawsky/postcss-load-config#readme","bugs":{"url":"https://github.com/michael-ciniawsky/postcss-load-config/issues"},"dist":{"shasum":"f1312ddbf5912cd747177083c5ef7a19d62ee484","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.0.0.tgz","fileCount":7,"integrity":"sha512-V5JBLzw406BB8UIfsAWSK2KSwIJ5yoEIVFb4gVkXci0QdKgA24jLmHZ/ghe/GgX0lJ0/D1uUK1ejhzEY94MChQ==","signatures":[{"sig":"MEUCIQCzM2ZoHqE8nbwsbBz9WkLhSeU41Om5+UbAkWAMK2XssQIgfQYhO5jfngA3yBU/xq4//xi/E0KqHsQHhi08Yrua5pE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19683,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbRL5NCRA9TVsSAnZWagAAA1YP/0T+gQFqqx1NGN3l7KRp\nAgiUunkOukMIoN/V6xqc3kukDrYX/EvQFKVFO4ToaKmbsxd98+JMHFjRU2U5\nMf70M8jPdtmRvPh/7h1u0wolUVuu/wMw1B/LcIJFSoZA7/9ocbww3oG5+wii\nL+RAUE6lexFMRhqC9BUYwJLtVChiICS01ySt6BMgQu830BX11y/nzctPemBK\nfHHMvP7o6qOcHSvoKGzKtjEvNbCaJudhGQaytACexzcCUVDUWBCeEVkKMbgS\nN5rnJiublgLJwgll6ntab89qmo+Dt0ZpnfjbdtHRG8QrkanEjIi6ieTa2acG\nUPFGdoyQ0ZCyMqAEWMLLASr3FOYgYhVnGaYhE5XoyLg3JOlKs6q7hU1sosDy\nz+fj/4kfQP0O/tNmVnaf0BzvEdEx/Ls8PPbj/gASvba35c3+UI+G6SSIaetT\ngbsvFdxBWLx+ChC3HusnkAYjm80LAtTJK5z7zdF7iCgRrw4BFCr7kJGt+Kc8\njKZ6GXdnzHCqIpe4+IQuHxrDfxtDQykM/ZnamzZbDcq96WvB7MjvhU2bSwSv\n7pOTuP3E/re2GlQjYCnR5lsC73YZv95eXzOIz2vb9Tu+/JmVDrlgBtOXZSdO\n1QMfz51P9bB2fqv0/SqeF0DKEBb+MTnJTZX77Azoevjpotai5seO2X9WgzyV\ns0kV\r\n=Vi5O\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","files":["src"],"engines":{"node":">= 4"},"gitHead":"dbf546926e6c791a2475e12daac80f6783e23036","scripts":{"docs":"jsdoc2md src/*.js > DOCS.md","lint":"standard --env jest","test":"jest --verbose --coverage","clean":"del-cli coverage","release":"standard-version"},"_npmUser":{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},"repository":{"url":"git+https://github.com/michael-ciniawsky/postcss-load-config.git","type":"git"},"_npmVersion":"6.1.0","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"10.6.0","dependencies":{"import-cwd":"^2.0.0","cosmiconfig":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.0.0","cssnano":"^4.0.0","del-cli":"^1.0.0","postcss":"^6.0.0","sugarss":"^1.0.0","standard":"^11.0.0","postcss-import":"^11.0.0","postcss-nested":"^3.0.0","standard-version":"4.0.0","jsdoc-to-markdown":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_2.0.0_1531231821724_0.4794748561750535","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"postcss-load-config","version":"2.1.0","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@2.1.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"}],"homepage":"https://github.com/michael-ciniawsky/postcss-load-config#readme","bugs":{"url":"https://github.com/michael-ciniawsky/postcss-load-config/issues"},"dist":{"shasum":"c84d692b7bb7b41ddced94ee62e8ab31b417b003","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.0.tgz","fileCount":7,"integrity":"sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q==","signatures":[{"sig":"MEYCIQCWPd8Pz/mcXesBtcYADBpPZQ+ZTjs0JX9+L7SW5pM4xgIhAJ6QHSijGfRS1jqpaf7tQwNJap9cdKJyXmc/lvCz8wtp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21101,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/psICRA9TVsSAnZWagAAQSUP/3CbuveDh2vv6gUieXvQ\nujl1uUPG79i+G/4wVrH9EqD6vCEjhcn8zjdlve0kogkXmLqwSlOR2GTpHobR\nBljT089AIMHMUct1+OwUDXLDNd2/vnJt+JonxFG6tXcjexhq1h3PqTr4HO7n\ndyMjndWHxAuMNYY8eKvG7/IxjQTmhSEVHjCLFwDIwIBm7ogi8RO5ufPXcjli\nyuIOQtOsmsD3d3C1ahCnSIPbXq0Bl98HrhbrrT2bZzakMdBmhXldSLMz7EVI\nOGmY20KUqaf2Ovt632lQJauqsvuncsR7PJchSsmhfj5eW5lUDL8fbRxQfgok\nIRgwvtF4L1TrNmFwVkZNnw/fjcOOGKz1ekJfbnNxuPor/ONZ71Gx5sDK94md\nGfTxpLBKbzvHmhUIKgA9Hmh/GWNuIzWBz4RtqKB4w267bzydZj/29MqbDx/o\n0XgtYLLtrzApoQ3sHpUP6aXkVWxg4rFTQTkXBo8Ese67239KN1C7XHDAJH7P\nkWBtiY9LMdmffcvD/TQ9jrDV0TNWz2Q+xWRchcx+YCf90or4GKZRgy/HS4j8\nm1UasBvF8q+F/afxYTDRnd/Yvf6he5I6tckcWomFU1AgpDDD7T7EJqgCJ+ss\n6JkK7A2LPPWCHfFy4iXrlMau7yQh5IIJQw++8DZNCdUYmjXLbl0DV2D6LYTf\ndGTL\r\n=7zE6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","engines":{"node":">= 4"},"gitHead":"bdaf431ef1142b5d0253aeb534aad8f42e46877e","scripts":{"docs":"jsdoc2md src/*.js > DOCS.md","lint":"standard --env jest","test":"jest --verbose --coverage","clean":"npx rimraf ./coverage","release":"standard-version"},"_npmUser":{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},"repository":{"url":"git+https://github.com/michael-ciniawsky/postcss-load-config.git","type":"git"},"_npmVersion":"6.9.0","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"12.0.0","dependencies":{"import-cwd":"^2.0.0","cosmiconfig":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","cssnano":"^4.0.0","postcss":"^7.0.0","sugarss":"^2.0.0","standard":"^12.0.0","postcss-import":"^12.0.0","postcss-nested":"^4.0.0","standard-version":"6.0.0","jsdoc-to-markdown":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_2.1.0_1560189703870_0.2705529956820891","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"postcss-load-config","version":"2.1.1","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@2.1.1","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"}],"homepage":"https://github.com/michael-ciniawsky/postcss-load-config#readme","bugs":{"url":"https://github.com/michael-ciniawsky/postcss-load-config/issues"},"dist":{"shasum":"0a684bb8beb05e55baf922f7ab44c3edb17cf78e","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.1.tgz","fileCount":7,"integrity":"sha512-D2ENobdoZsW0+BHy4x1CAkXtbXtYWYRIxL/JbtRBqrRGOPtJ2zoga/bEZWhV/ShWB5saVxJMzbMdSyA/vv4tXw==","signatures":[{"sig":"MEQCIAZ7JrtBmi05F6moersGRvc6g1jRcjZFz7UAgW/Zp5d8AiA11tbiD4FmLByzSEWo0fmlvaJti8BDAVgmKdhVapSSPg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21015,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfY+LxCRA9TVsSAnZWagAAj3oP/06IF2IFGBrrGkNpfWKD\n3LnLm9GbDb3L49uhdUcQRMapcGTNF+bVi5XVEVCp/JTN3sOiT2csCj6ioljC\n/v+ooefo61HS0GWREEMwYb4h4kY2qnOhodrhTOzAooRHFNpNfcLx7gwucYbD\ne/CmyghEM5qTxMfqgSwcbHwlHYQZIjxnZRMfpB848vqZr8GH3w0Vw6dVZAA6\nn+8CTyDE/RRSoINQEJbOZNkxy7Te2lRy5tXDkZXf/66TN5OmeAOA5b5Z2GPJ\nP6SqVWam7kvaod8+nIzWOaUZ6bKM0If0/58HelvJxd0bB+YhMEF5jcXJ8/7v\n/BvcKsSt5g/hpXO4i6a43wWhgvdnXRr4HhxaOzKgqphstQ3GjEMklcO9HDCg\nYTtPJjEK2pWypjaG9UuUfAdfZ37KmeA/9UeycryTzXTly387Y/fdwXT0DZ63\nERpKhkDdECJTLY3/MPW24Y8ryjOoEVtf90SeNWfS9/M/JAs0WKwk+o7YKOgg\nBjuawyvmm53m6QI2uffOpQ5ug/3wk4XIrlAqKctaVv9VpGiCKfKaPeHYPJ8g\njvAlphhJm9xVxSXXIDuh4Hv/uJgvAIUTi0tgbL+4r9Fi9mntNytXDU/D7j8I\n1lnmewq50u7bUcRU3vXrVlKPWgY7TRlqpfHOy3eQimtwGb56cQjAfwkpefJK\nmbFi\r\n=/XOZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","engines":{"node":">= 4"},"_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/michael-ciniawsky/postcss-load-config.git","type":"git"},"_npmVersion":"6.14.8","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"14.10.1","dependencies":{"import-cwd":"^2.0.0","cosmiconfig":"^5.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_2.1.1_1600381680855_0.7628652650768506","host":"s3://npm-registry-packages"}},"2.1.2":{"name":"postcss-load-config","version":"2.1.2","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@2.1.2","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"}],"homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"dist":{"shasum":"c5ea504f2c4aef33c7359a34de3573772ad7502a","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz","fileCount":7,"integrity":"sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==","signatures":[{"sig":"MEUCIGp0C+KmbABxrpHefCI/V+Nln5A07W90MAywpYzkTw9XAiEA666/H0n9xJ4yZYa4KGeubDJ/9f6znC+akdngQMW1Ad8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21085,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfb9uQCRA9TVsSAnZWagAA7mcP/iYQl/31yrDH8GQb2fVc\nU1aSRfDElucynYlwXPg4PEhV0McurHWHBOmjModSz0fdkW27sKUXFrmv8WEF\nR1PBMjPX78bEi01YR937OcVah1K5Aos4wRb3q8/7xxlLzDP9ZrY7sJBbkdvq\ndx2//owtDHtCDj5GGZd2a+5P3vBnxyVnpWFB1NH3VtDb2hc4Y2om4l77szt5\nhcoRU0D+iZF9vYfi7piKFz3orfz72cUca9C8/oSDR4KezUJKpI12+CTRCosg\niExnaX28mVPxLEK3nKxF3axdoY4Avgjk+ROOlHxfx0cAURsX2JOUgsWlTWNc\nDjuVFq53YHpGdLzzRUC/lZ9JcykqUJxYz7m/klwRoenJjPO5Q6uxLvpDDUlS\nCky4P3pUz1GY65cJb9R3DuJ8XQ0uiroUHGsXdU30O7ep9j7lFBRycofKfK5F\nLLjROjLXE5vln6Mkpuykxkk6cCH2q+GHgGyuTfbihOV+yc2Mfa7llOToXhWa\nrpUHzJhDjrnECgo5VjnVQUdU/tKq/UXm3I9/w0xRY/fuUIxyo5CTKwjOpQCg\n+atYVh8UDF7pPSiQY3lT1ouS7/WL+xr+6oN7Mfmg1qD5tHLnebVI4XuZ73pd\nuigO5x5VF1lOwlW0A/8zfc0nIyxHrKUNp+XT/iGwq3s7hTs4IgzMn+DGDSog\nWC61\r\n=8VcE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","engines":{"node":">= 4"},"funding":{"url":"https://opencollective.com/postcss/","type":"opencollective"},"_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/postcss/postcss-load-config.git","type":"git"},"_npmVersion":"6.14.8","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"14.12.0","dependencies":{"import-cwd":"^2.0.0","cosmiconfig":"^5.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_2.1.2_1601166224048_0.06473090200611797","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"postcss-load-config","version":"3.0.0","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@3.0.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"}],"homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"dist":{"shasum":"850bb066edd65b734329eacf83af0c0764226c87","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.0.0.tgz","fileCount":7,"integrity":"sha512-lErrN8imuEF1cSiHBV8MiR7HeuzlDpCGNtaMyYHlOBuJHHOGw6S4xOMZp8BbXPr7AGQp14L6PZDlIOpfFJ6f7w==","signatures":[{"sig":"MEUCIQCvkSnnpa6fPWKhVeiBhED4jg4YEFGf6bQ8n9U0mFkaTQIgN9fi0yjk8cla3oTjNOYMC0c7d8gBqRDlfcNNjuowyI4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21334,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfdpfmCRA9TVsSAnZWagAAdXkP/3qGxd4VarzVB3/Q0dMV\nsBIHIPh/opxxM+7dVp4BsRhUE40LlTmRXYI5Ava516E4JrySqJZiyibI0K2t\nvWyXvBUbsoganbkTiHvQZkGL9y9NibtPRL+Hk9MqzB9EvrQc7iYQiv0AUKIv\nu5mzMHTGjQVTI7RxFHYtX+NTCcQ/fXrAuIGBgEtGTEW8oFsWTD4afLI/Hxfr\nT5ZbtXx32Wvc6gDNl9q1nFi76Tx1P91R123jwEoMnqjEWECsoVeKMHjqNfp/\nTcW2TkDOBGWHeBOwv8aKIelfPc+l9JzzKogWaSS+LikxEYXtlB5zQ5+oljAj\nsvsO2HafRoTDNbj4hXlT6CUp6HRcxLjYSwfvetQFeDPVrreQd5CUx4MaCGb4\nETCHhVmpdF3z2sMKXsFXKuH6YfLl8IMbe74YCVaD/VYH1+zDqtbHFJjbqCFF\nkHso+hmHkqC3BlWhFfUPP2dR31Fno2ztXJ/rlnOITbbkP7CpYaFSu5l3Y384\nWyuqMfdzeerW84JD7LBvJsmlHXsLNLrjNCl1OKCuTSdPG+QzEwyS1BFP1/iI\nFbW8H9qXNKUiTz2WHOqKXwBtsePOiInpveJymVusK7NXlHDjLx6NN75Vek47\nLDDbanVZHPLX/1wuNVYAZRxZVnGrqX9tUeDNylkYrGK1j7OUkQmKI0LswkHQ\neO+f\r\n=Gra2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","engines":{"node":">= 10"},"funding":{"url":"https://opencollective.com/postcss/","type":"opencollective"},"_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/postcss/postcss-load-config.git","type":"git"},"_npmVersion":"6.14.8","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"14.13.0","dependencies":{"import-cwd":"^3.0.0","cosmiconfig":"^7.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_3.0.0_1601607654136_0.0005517190892563306","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"postcss-load-config","version":"3.0.1","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@3.0.1","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"}],"homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"dist":{"shasum":"d214bf9cfec1608ffaf0f4161b3ba20664ab64b9","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.0.1.tgz","fileCount":8,"integrity":"sha512-/pDHe30UYZUD11IeG8GWx9lNtu1ToyTsZHnyy45B4Mrwr/Kb6NgYl7k753+05CJNKnjbwh4975amoPJ+TEjHNQ==","signatures":[{"sig":"MEUCIQDB2oT8pNUVjhaczTHHseg1vq/N1DnvR1QJ6loTGKVwBAIgJ3zDap4GVQgeLzc27mQnOXMKtXbbHpTNDivhNlRhxWo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23406,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgIH9aCRA9TVsSAnZWagAAe9cQAKHuLp/1ckQZBba85WtA\nk1PFlUv+Zw8jPECmq5l6p2y8qvs92Q9r0L1oHz61cUFcBEZkIUD4liRfCGQS\nFo/zIibHSq9YGZNu5BWtFFzbWlLFY+oCo8unJ75wDCTTfeZ0HqT+Qz0M/Hrt\nGnv0Tn2u9CA3D+dvSOdvDugUNLDXUbqAH7sDwe3DcDkx53KhTbZ0CrW9zemi\nR5/244vYeEf5qZCUQxV9LzCeuzSz+FMNEXp6uy01DHqyWjtnw3vnDcxD6L5s\nEUEtMQsOHyYOrPw31+9L14q8iiRry6Hk7MAcX1sDD58ukAaHRwvtnvZZL1eZ\nJs3Ai2kQWqAhCv1Pqte+iA+utt5yLYon/gkY0r2v1KEP2GQJOE3PZu8sq0NI\nyZid7n4HgJSj5qyhkpgOh0if4HbaSTdG9NTLWmCQSpkjFepb7evOnjcJZRQ+\nvCOkVPBrwfVA2YBA4HBob0iJNHv3QUiRrNT7uAXqrvaAO14QWSpaOKakjky/\no7+6S6PM7zEO2Rm0LiIkb/zWM95rXPEluy00jENd6cbcFPjdvVVhiOSQqg4D\n+qLT/I9xi5VHxFx/p8X7XkM0H3WbjksQOBhguhZ2r/NNEqkoqNoRtUufpda6\nrWmi8npW9LCwRMq0RUPnGDbncgqYAZG+gSHSeFLKpi1Sww/5Rl+5ha869SC9\nauAq\r\n=Trpy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","types":"src/index.d.ts","engines":{"node":">= 10"},"funding":{"url":"https://opencollective.com/postcss/","type":"opencollective"},"_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/postcss/postcss-load-config.git","type":"git"},"_npmVersion":"7.5.1","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"15.8.0","dependencies":{"import-cwd":"^3.0.0","cosmiconfig":"^7.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_3.0.1_1612742489582_0.02690017080376461","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"postcss-load-config","version":"3.1.0","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@3.1.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"}],"homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"dist":{"shasum":"d39c47091c4aec37f50272373a6a648ef5e97829","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.0.tgz","fileCount":7,"integrity":"sha512-ipM8Ds01ZUophjDTQYSVP70slFSYg3T0/zyfII5vzhN6V57YSxMgG5syXuwi5VtS8wSf3iL30v0uBdoIVx4Q0g==","signatures":[{"sig":"MEUCIQCHgny2UA71WbJRNLVSlLd7BVs6/7AdW9Paw5e4NY7zuQIgHPl7eOsqv7kAVeZmeW7JbDzUeJvFWgklqBfRNYl4aBg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21954,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgxzrJCRA9TVsSAnZWagAAlPcP/3JGUdSyR9sAIDSUqx5x\nUPnXt/I4Wzu6I3T0/opj7iMJXFqr2/1Ku9v1i8UIuoUKz+mJi0u038+QrQYH\nyPaUBN85FcEQ8t06xnbOHW/zDOqvZ18dqWW4QZ0ouLvaEY+fi2CKKbDoILUh\nYxTVEaZ+RWJW+jvrLNT5IKhbr4XXfPc/zTR31ViKwn2yr6wxkyjLkoSBA3vR\nKQNLA/R3VUXz+xEB03Id402gt23x3yWhRcaBwWHhOzAYEOKi9IIg8pHBjAt1\nK5e6FxcEKZjuvYKu/p+2aPrb2NzzBekPtX8kYc17trZCeIc24nVTwYu5gbGe\nPEowPjW86aMD8UJnvG60kLS17ICb5nbI90FURSBR2A3s532jyn0tw7wefBbO\n1WCtCXNCQiXgjksU5lat0g+Vrrq2gYWdhanWEN/pPORobKTVzSvOvr1f+oGK\n8UuciLsUMPuI6j4MEXsDE1LjRTC0GonCMh51zUtnaM0xvl4j5Zfpp/oi+RBJ\ni8l3DTVykjAyJLAXKqpB8Bhq4yYLyFlMPmB4jDsN3f1zgOxCuC0oz+pZYF02\nqp71lYqhKcQTaqUqGL2dd/I1+7LKCm+bVqj+M3D4s1TNPvFe6g7u6b/C8MrX\nU85Gn/JVofa9xgUVysYEMHhexR94TbssJ2OTuwr+ldzOPwvFIhwkFRf0sJIN\niJ37\r\n=1qTP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","types":"src/index.d.ts","engines":{"node":">= 10"},"funding":{"url":"https://opencollective.com/postcss/","type":"opencollective"},"_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/postcss/postcss-load-config.git","type":"git"},"_npmVersion":"7.15.1","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"16.3.0","dependencies":{"yaml":"^1.10.2","lilconfig":"^2.0.3","import-cwd":"^3.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"ts-node":">=9.0.0"},"peerDependenciesMeta":{"ts-node":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_3.1.0_1623669449548_0.11995484582152671","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"postcss-load-config","version":"3.1.1","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@3.1.1","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"}],"homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"dist":{"shasum":"2f53a17f2f543d9e63864460af42efdac0d41f87","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.1.tgz","fileCount":7,"integrity":"sha512-c/9XYboIbSEUZpiD1UQD0IKiUe8n9WHYV7YFe7X7J+ZwCsEKkUJSFWjS9hBU1RR9THR7jMXst8sxiqP0jjo2mg==","signatures":[{"sig":"MEYCIQCjqWkXKjAAJ2/cMEq0/D1eaFi2mflUPr+meCyTcBSLEAIhALl+omQDx/A1Lx6Ig2l0/XZ6/1hWuY3OQdhr87Mt8r6Z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22326,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0MFICRA9TVsSAnZWagAAnGMQAKST9zVCKf9+2JNCdm8i\nHtG4fSQ6cMakJWMPbAAUf2T+piKCzk7NsUSzr8GKXjyJ5y2MjXvF/ocL8Cuj\nYayTqju1RYYCEuZVvJmrYWJbt0yXqLoqM/d9LrCxQcmhZhEv81o/4eogmn1k\n5D/8l81JuwroaanhEFY0oWbzmJtKtqcZTFodmL20sft0MrGRvBvW6d31nnhy\ncoiokf+gX+Iw4mysl/emOTfTzT4aBuIYpzNkT6FDr0md9FfHH0+F5MgYqMa5\nv9ftvkQxuLbwwp7Xwr58HmIOKYpcoWs5k0+gNcN70xbObM0jrCLkMjMa1iwL\nN+AjQspRi3zC9NA3y0cBCMKsTs7C4jhMb2XvElNqDej6vewdiaKsInS6nGE+\nYBBJXIfa3s40hJCFZjRyHoelDIXOksmSuJdTwfTW/9owuQfDwSxpB41XQCa9\nNyNYPn+RD3muFtxAOaGz6sp3ZKZeUYQqTYdu397svptZFZWLOMk4ZEWt/suW\nWyBnXPXgq882RAad+nS6r5/U8zPllyq/RTGEv2JRT/OW7izdF8nDsUBrKfto\nA8xmkhGeRTFphRpnilb2ffjks/l+T7vYD+Tr8RshlxgtYEig1Gfe4GjpPlVQ\n5jIglE9p0jtAXS4yyAjDgFqzoU80S3KU5GTNI9tJRAJ+VFgQzPELWJ3pVBzm\nOjP8\r\n=Lvm9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","types":"src/index.d.ts","engines":{"node":">= 10"},"funding":{"url":"https://opencollective.com/postcss/","type":"opencollective"},"gitHead":"410413fb507890fefba25149a1451817accc64b6","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/postcss/postcss-load-config.git","type":"git"},"_npmVersion":"8.3.0","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"17.3.0","dependencies":{"yaml":"^1.10.2","lilconfig":"^2.0.4"},"_hasShrinkwrap":false,"peerDependencies":{"ts-node":">=9.0.0"},"peerDependenciesMeta":{"ts-node":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_3.1.1_1641070920023_0.8114341516048147","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"postcss-load-config","version":"3.1.2","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@3.1.2","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"},{"name":"François Wouts"}],"homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"dist":{"shasum":"c3a24208ad168f317464aaf59655252781f04365","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.2.tgz","fileCount":8,"integrity":"sha512-X1NVP1itP6VE5dDA4wR6NK1g9lNlkBx9A+tgDKb/8Mnx4HrvX6k+DcTXGelZvfp6p4zCBZjh4Gwyp4aptOUI9Q==","signatures":[{"sig":"MEUCIQCf5MpsXKrb4zELBUmySMj3QvHMBzaqICDCUu9gDz8ZuAIgcYTHmiBtqaJXBKhJesXvstexmVx1cpJjw7fHNCHnZ0s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22453,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiBSUdCRA9TVsSAnZWagAA+aIP/RSPAmA9UQHDxS15aZES\nlMaYb1uI7oTY+SQ209pmIxhTym/QpSazw5dNDnsgy/tRn5h7nVCoJb/qgiqV\nrQVmoWEdm4kQHQs3kM7YbI8O/fEIWGsBZ4jGGHlqIRxvDJfbvtxmBjTiCH+R\nXdBLVFSKQnDLHUGFg8Iz2YXtxIU/7REnrt/91HwoJer/gGI52NTR+qKB/5p2\nt6/glbQSbAvCWqPT4sV24pqYc5V1paLmlLaoAMZKEaMV/ZuTuiYEB0imotBM\nWZx228mcCmtGcOteDxkyXWWuavWVBxxLlzPEw70yBtLtSrhpxQz6BT2kG5x+\ncY8QxIKguSs2+gbOMqHtHK+Ap1fnifQS8Wuuy92fABtfC9Wj0uqeGCOoDR9Y\ngKjJR78m6NSzd1NuAEzscnxNVrwlDkhxLV/0jfAF8WSLx1aI1JCjw8Gdv0hp\nINxWb5DuC9impsn/DLrE6ZznyqXOT2ZDiNqybThkmpJmtQmy7F6WNYP6ixhG\nFzTzMasdVDcu7ayurnfRulwH9m6jwU4tmcVODDCXytrPtv9Jri6ntAk0n0to\nEHtuYvtsDY8kSeRlepT7tDbnbPoE4WnuTbxHcPyWZgYeAtaX7347a3m7nRL7\nk1m1Pj8Ut6fo+mYFtKld2ZWssPOq4tD5LIiaim+acUhUd3Kh2eeP4lbi570e\nAaf6\r\n=SQWf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","types":"src/index.d.ts","engines":{"node":">= 10"},"funding":{"url":"https://opencollective.com/postcss/","type":"opencollective"},"gitHead":"579db1c83ae45321052953ed513131f14f533e0f","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/postcss/postcss-load-config.git","type":"git"},"_npmVersion":"8.3.1","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"17.4.0","dependencies":{"yaml":"^1.10.2","lilconfig":"^2.0.4"},"_hasShrinkwrap":false,"peerDependencies":{"ts-node":">=9.0.0"},"peerDependenciesMeta":{"ts-node":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_3.1.2_1644504349384_0.7281096552828401","host":"s3://npm-registry-packages"}},"3.1.3":{"name":"postcss-load-config","version":"3.1.3","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@3.1.3","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"},{"name":"François Wouts"}],"homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"dist":{"shasum":"21935b2c43b9a86e6581a576ca7ee1bde2bd1d23","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.3.tgz","fileCount":8,"integrity":"sha512-5EYgaM9auHGtO//ljHH+v/aC/TQ5LHXtL7bQajNAUBKUVKiYE8rYpFms7+V26D9FncaGe2zwCoPQsFKb5zF/Hw==","signatures":[{"sig":"MEQCIGstQVdSMxwY8nZgUG6ghO3zIZrMoONJklsg85iQnTdFAiBWj9L9p1N0pHqcbD7HBT8n3ISUxy45/GBnHkBycFTV9Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22464,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiBj9sCRA9TVsSAnZWagAAAOwP/i7+xgpezLLiXMWJdHYw\na1+7GwMDkEt0QxFfqpXs1vJa6Ao7cQMhsETa5xynx4VJcJbYEanZrl7E2jEU\nHX5o37QrwhYcGTz37bC11davY05zsB5daVsgq8JdriP4NlWLvkrBk4QjgXbs\neM+S8dW9nZXtpdFCv86CT/9tWx4eJ6f7ocZkl635tsKrOa5/Vscg2FJGKSLA\nrw0CkIPxIb6284me667dQ3bbt0EAPbMcNlknWrWEzQtYxeIZZcCNPTB8nFtl\neGlPmOcos8Mh1F82xfSDkGPYcDVI8EijgzQVYxWGIpUvhCIGBkz7rWenVxLA\ndzky2UU2zXh8zr/RfO8DJRJ06PLykoTgsGa47VsldOgXUKLqT3ne8qp1pIqT\n49CizdjjyCgcPWY+X08mAb4Kl38G3IA/Cvc4HhkXp3+5xpKSoOw4bEPohIra\nOcoSsWYKTb688BCjc3DsxjQ8o7N6ISp5J/JtXvx6vR1X8YvFNIrDakECkPd8\nQauEG29a4aQLFkb7B/z8/kVAH46dE528nd26wqxE+VttmPKDwZtjlQ+4iAf2\n0QdrUkX3CmW5ImglxIQ2S07hYWJA+2na8PjRA2Y5K2wQhTm8Q2mPxELpa7fu\nNCYktcsmiXYMTI+RIb0Nyfxpc7HrisZcfYKV3iLjSXesDT+Re7AePc4IxFuV\nwu/O\r\n=sdss\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","types":"src/index.d.ts","engines":{"node":">= 10"},"funding":{"url":"https://opencollective.com/postcss/","type":"opencollective"},"gitHead":"1793614f0317509057f78a2a98acd3cda76d9a7e","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/postcss/postcss-load-config.git","type":"git"},"_npmVersion":"8.3.1","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"17.4.0","dependencies":{"yaml":"^1.10.2","lilconfig":"^2.0.4"},"_hasShrinkwrap":false,"peerDependencies":{"ts-node":">=9.0.0"},"peerDependenciesMeta":{"ts-node":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_3.1.3_1644576620594_0.6573068648738005","host":"s3://npm-registry-packages"}},"3.1.4":{"name":"postcss-load-config","version":"3.1.4","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@3.1.4","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"},{"name":"François Wouts"}],"homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"dist":{"shasum":"1ab2571faf84bb078877e1d07905eabe9ebda855","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz","fileCount":8,"integrity":"sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==","signatures":[{"sig":"MEQCIGBNi24SOTP48MP0+qYdu6ggqzGsd8zkiDBHjFGmfvzyAiBteLo2VDQ+WzXuWPA74MNhvXLaW9qyhpYRnHE5oYopEQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22743,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQuRRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrmQRAAgLMe2x6Zxze3qISUnb0300c1GM6CS62olv+/i8uibCNPw1Pt\r\ndlrNrj85mICWS3sISF2xrKNU2ZzxRdi5iNdlZASQ4NkAuBrFuZlQlxyL05mG\r\nB4SmCa9pwzimD5C0SP960Pk24TI1MTUnql8vL32bRBDa5Hucyzus1jHIpy3r\r\nnywHZvf7rkyBKaRuFODhX6V7QbCkxSJoaqcAyBUNuo1PlhoFt/002b1K0ndP\r\nDKfPXzyRF29+QixziMrT90AV776nTuislfE38SnEGBSeJ5Bl8ZPktRCej/QX\r\neyIoF3HdmF/YtTgkH3RBXRThq0IYuWDrFvNipdhBTVQ/yXg2f1PYYpTJ8lqL\r\n3VJrAMDlrdsmMmsgK/W+i3QldE/M+fPT1yLobHGFffvS/0qT7Km0F1CMTu8n\r\nTdJDLv9ZAbSiDhQR2eTK0DV3Sr1HAdhkVznNe+heUX+dtvWMcESyJjx6/YIR\r\nkresnq4uX6BJyrkWF6E3dpVv+Ovo8YbAJTT6TBxtjflMymx7t+oh0tr859zA\r\nBoIHRl4iHfAU8nnEynH5w7OXt4Nk96sVX9TIp1U+cXcPXNcJZiD8CgBaXCv/\r\naPP23ItvsgoGtkQuUNQZ7UJ385WmHXMC1SVIwUVSPJIlsQYSU7FjXhN1Pzs/\r\nXsRKTaaDrrglGwhLUyx9p8RJvgrLzYtL5Kc=\r\n=PXD9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","types":"src/index.d.ts","engines":{"node":">= 10"},"funding":{"url":"https://opencollective.com/postcss/","type":"opencollective"},"gitHead":"ee1e1600903a0eb087d79ba555e1a75f265161db","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/postcss/postcss-load-config.git","type":"git"},"_npmVersion":"8.5.5","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"17.8.0","dependencies":{"yaml":"^1.10.2","lilconfig":"^2.0.5"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":">=8.0.9","ts-node":">=9.0.0"},"peerDependenciesMeta":{"postcss":{"optional":true},"ts-node":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_3.1.4_1648550993226_0.9139856927619225","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"postcss-load-config","version":"4.0.0","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@4.0.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"},{"name":"François Wouts"}],"homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"dist":{"shasum":"4c95647abc531bdf648647b3bf9b64c030a4bff5","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.0.tgz","fileCount":8,"integrity":"sha512-HBMHYoN1OobLx7EpbuW52AOZiJ408ISFJ6QTF/kJ8aKhpoOXFIDzEtcRwoh+JdEt6oUkcU7XZa2Ot0KJ5sI+jQ==","signatures":[{"sig":"MEQCIGsu0JYc9d5EgHdaXTDWNhCyrTarlDWO9FAbUVoavLMEAiBBeMmMGB2SF4u9T1KWxaDgVoU8ynVEHD2ZmN/WsSRF3w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22282,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiit2YACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp95w//U5QWQ/Z4GtdpolzBCdhKGdS16szAu0hLeoNGhZvWTZ8Gu5oK\r\nNr1iNFU/mTaKpEmTFXJczm3M7NZY4VS0NhRvWJvXPZ8MfJeAkB/vYtcWTL56\r\nh7N8Iv8hDMDtzuxAA9vFqTTVFWPPpYaKZxKnrDP4DQoFH34vXBE4W6uMi8Qv\r\na/wCe0Us51h8iMGeyCqvd3c6H0TxWcWjpfZbHNiJtNWmd7FLIvhYJCeBYgI2\r\nilENbe73PUasbRpMqgNhkh9A1q+eg3mVqtAwGzWrykjeZVoHbHfwAcKt6Hg/\r\nukW2x14wK0h40J7NyeUHJC19A9wE+aiSdXP78ivARvIHjTXtuV0PY2OaIKAY\r\nFl/+7xPmktmrFFDJjKzz+kmdafnLYYknLHbCDM2yp+ZKhUjgAEult2vR2LOL\r\n/O3Xf2vlK8n+yTSca01LYl5N1PMlMOStfRQS6uk10rSEIqNl/EFqhxCeoJry\r\nCpj9V8lxqSALvEhC2T+UX7wWOAbhxUc3skWB8PE/H74Hp0WSPEPdFT4Lh5lm\r\nojFBgGC9xllM2g+7XRhqcSUVk52kPo0j6IkfSXeE718uDGpU4+v2DGA6PuoM\r\nLzHW9YvltUEP4DDLpVqYBT0ok4jCJGEacDzzHcpfdSFZ7X4MARG4xZcaVVy/\r\n2wYXDaNHTW7h/rGSFB74mT1FA2sST5hVI7E=\r\n=Zv51\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","types":"src/index.d.ts","engines":{"node":">= 14"},"funding":{"url":"https://opencollective.com/postcss/","type":"opencollective"},"gitHead":"e72f6d09ad6264b0c1f715141a5de46b601032aa","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/postcss/postcss-load-config.git","type":"git"},"_npmVersion":"8.9.0","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"18.2.0","dependencies":{"yaml":"^2.1.0","lilconfig":"^2.0.5"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":">=8.0.9","ts-node":">=9.0.0"},"peerDependenciesMeta":{"postcss":{"optional":true},"ts-node":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_4.0.0_1653267864752_0.28862886308677327","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"postcss-load-config","version":"4.0.1","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@4.0.1","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"},{"name":"François Wouts"}],"homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"dist":{"shasum":"152383f481c2758274404e4962743191d73875bd","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz","fileCount":8,"integrity":"sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==","signatures":[{"sig":"MEUCIGD38t+zkYWSEjWdNBk0hOiDwSbJwlASBiU0siXUZgIOAiEA5B3dMydrELTS1sgPRL74drnqVKwoPQQblQN94ml2LgQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22333,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJilXprACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpIVQ/+O5BsAQxTHkBd3fX0OMOoI7I9D/ylIhahTgr5yTtAegyp7ym8\r\nWkVgf4xMVSGP0Zy5XQgMUxV4+rTVeaMEIQ1qmhe03Y+P4mOQ6Svv8gr1fq24\r\nQqZbYqZ+fjmN1ur5nQzE5TLekgABnf2Io0TlyPUOXdDHFsVNRkH7r2U2rJ0C\r\nMdZBKhiN88pZ2OiRkBO2b7X7HoFlsdckFxAns8Lp5Brdi3SVq15ukAG9k0DW\r\n+zrWrBtC5+DrNs+URrDlLQTzyx5QtBeRCVUCbw9q86NbHGfr4Iccc3IZKS9y\r\ntXug4XHFxOnARC5BRtgXQq2FJg5gfNRg8OSNG8oEsayoL8DeR70ykLoKyzcK\r\n4LPiKtMziebkS5ppKlwYrXoxuHbkXouK/Dlay2jVmfUE5vkR8ddmZ9o1p+5+\r\nIL9zvqN5a6zB0qP2SmKB7VRUnueHU131q5BwrWtVKTXo+h2HK22tU0H/zr2m\r\nNJS/rNOYriBcG+s7TZbHXVtO9A286DyW8HDDlfitFAyPVTQcyH+5S+KZ566c\r\nfsRtSTTO6UfuELF/Zjd0Qfla/9s09HNdP/bTXi5RYpfijqM0TbHdyx0OPosc\r\nW9h8XnSoahZRT3qWQd7FvTyg6EE2uwhPhqZd8Rjv+gXxd3k+9+QKnTE5rDlO\r\njkWIIjVyhvW7ZrPOjAsYsdOwW31uiJUCA2Y=\r\n=U11Z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","types":"src/index.d.ts","engines":{"node":">= 14"},"funding":{"url":"https://opencollective.com/postcss/","type":"opencollective"},"gitHead":"b8cdab0a91052bbe2d19a869534f29170c14d873","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/postcss/postcss-load-config.git","type":"git"},"_npmVersion":"8.9.0","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"18.2.0","dependencies":{"yaml":"^2.1.1","lilconfig":"^2.0.5"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":">=8.0.9","ts-node":">=9.0.0"},"peerDependenciesMeta":{"postcss":{"optional":true},"ts-node":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_4.0.1_1653963371230_0.7383567749094193","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"postcss-load-config","version":"4.0.2","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@4.0.2","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"},{"name":"François Wouts"}],"homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"dist":{"shasum":"7159dcf626118d33e299f485d6afe4aff7c4a3e3","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz","fileCount":8,"integrity":"sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==","signatures":[{"sig":"MEYCIQDTs77s0sC6mxLZKUK3UvxMmTGPFobUIEoN4iMiBKJghQIhAP5s+Mu/mZXJYOqQ/Ry/UqvGpCYR98GSZOVgFAoGsWBO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21626},"main":"src/index.js","types":"src/index.d.ts","engines":{"node":">= 14"},"funding":[{"url":"https://opencollective.com/postcss/","type":"opencollective"},{"url":"https://github.com/sponsors/ai","type":"github"}],"gitHead":"3033a4fe95d284ad6391642be69ed4dab1fafe01","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/postcss/postcss-load-config.git","type":"git"},"_npmVersion":"10.2.3","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"21.2.0","dependencies":{"yaml":"^2.3.4","lilconfig":"^3.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":">=8.0.9","ts-node":">=9.0.0"},"peerDependenciesMeta":{"postcss":{"optional":true},"ts-node":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_4.0.2_1700440421290_0.1048183980468238","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"postcss-load-config","version":"5.0.0","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@5.0.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"},{"name":"François Wouts"}],"homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"dist":{"shasum":"51cea9e062343692014443f0f7ec0e88a6cb2de6","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-5.0.0.tgz","fileCount":8,"integrity":"sha512-i069VOAUi6mpTsToA+qPAAfD7m7dfjm9Yhaqma7KEMJcQFM9jerKBU6rTGNcYLErj4sjR9fZ1q30TpFm2K7PSg==","signatures":[{"sig":"MEUCIQCMX4iKzycPSXlRDglnCJT7Pbg2OllUP+scWqKvr0UxPgIgTBJvUt+so9egkIw68BBjnK4SzCEM8WxdRJUXqJD/eYw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21665},"main":"src/index.js","types":"src/index.d.ts","engines":{"node":">= 18"},"funding":[{"url":"https://opencollective.com/postcss/","type":"opencollective"},{"url":"https://github.com/sponsors/ai","type":"github"}],"gitHead":"c03d8f49a79f600e8bbf06eb45f3134e6442bbde","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/postcss/postcss-load-config.git","type":"git"},"_npmVersion":"10.2.3","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"21.2.0","dependencies":{"yaml":"^2.3.4","lilconfig":"^3.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"jiti":">=1.21.0","postcss":">=8.0.9"},"peerDependenciesMeta":{"jiti":{"optional":true},"postcss":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_5.0.0_1701404715406_0.3586399427446656","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"postcss-load-config","version":"5.0.1","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@5.0.1","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"},{"name":"François Wouts"}],"homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"dist":{"shasum":"301c462fe54903d6d1ffe1e36f7a181e29686a4b","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-5.0.1.tgz","fileCount":8,"integrity":"sha512-d7kcvvpqQpCeC8DkmiKFiOK1sH8Rv8Sei3O0it+o4ixd+jIllmUfVBe8qOZOorMrlSwd4Ke3I7UAE1bOU7u40A==","signatures":[{"sig":"MEQCIBVtlOSqgN/fjCvWxmTPzcFneVTg+fXRfRKpvJhr5WsWAiAalLu9kDuMMmdlVQyrm5j/PGL0th8bjZvC63e4CvNV8Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21731},"main":"src/index.js","types":"src/index.d.ts","engines":{"node":">= 18"},"funding":[{"url":"https://opencollective.com/postcss/","type":"opencollective"},{"url":"https://github.com/sponsors/ai","type":"github"}],"gitHead":"13b09d0c4191359285646ccfbd0d7f4ef0fd07ff","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/postcss/postcss-load-config.git","type":"git"},"_npmVersion":"10.2.4","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"21.3.0","dependencies":{"yaml":"^2.3.4","lilconfig":"^3.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"jiti":">=1.21.0","postcss":">=8.0.9"},"peerDependenciesMeta":{"jiti":{"optional":true},"postcss":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_5.0.1_1701660230933_0.3365222378725259","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"postcss-load-config","version":"5.0.2","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@5.0.2","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"},{"name":"François Wouts"}],"homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"dist":{"shasum":"3d4261d616428e3d6e41c8236c3e456c0f49266f","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-5.0.2.tgz","fileCount":8,"integrity":"sha512-Q8QR3FYbqOKa0bnC1UQ2bFq9/ulHX5Bi34muzitMr8aDtUelO5xKeJEYC/5smE0jNE9zdB/NBnOwXKexELbRlw==","signatures":[{"sig":"MEUCIDHebNL9INUTAj8bNSYhoFiSEfmp8A6cbp8a8FPbymVFAiEA6z/vHb+yXbnKNqkvBcl52mFKPl1ES2FNz6UsbN4Xa0w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21703},"main":"src/index.js","types":"src/index.d.ts","engines":{"node":">= 18"},"funding":[{"url":"https://opencollective.com/postcss/","type":"opencollective"},{"url":"https://github.com/sponsors/ai","type":"github"}],"gitHead":"5d8c80d3e7e4397c72e494ceafcd554c71309038","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/postcss/postcss-load-config.git","type":"git"},"_npmVersion":"10.2.4","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"21.3.0","dependencies":{"yaml":"^2.3.4","lilconfig":"^3.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"jiti":">=1.21.0","postcss":">=8.0.9"},"peerDependenciesMeta":{"jiti":{"optional":true},"postcss":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_5.0.2_1701665977296_0.5560125173658264","host":"s3://npm-registry-packages"}},"5.0.3":{"name":"postcss-load-config","version":"5.0.3","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@5.0.3","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"},{"name":"François Wouts"}],"homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"dist":{"shasum":"f4927637d907de900c4828615077646844545820","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-5.0.3.tgz","fileCount":8,"integrity":"sha512-90pBBI5apUVruIEdCxZic93Wm+i9fTrp7TXbgdUCH+/L+2WnfpITSpq5dFU/IPvbv7aNiMlQISpUkAm3fEcvgQ==","signatures":[{"sig":"MEUCIQDG+iw2CGc1Qu6pNsCC1XZlkq8k6ytSfbkfSvJGTSLWpgIgPFWICjcXnrYoguQ6zv9YO/ysJ+eMUxvHPeY2pNZnJmo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21719},"main":"src/index.js","types":"src/index.d.ts","engines":{"node":">= 18"},"funding":[{"url":"https://opencollective.com/postcss/","type":"opencollective"},{"url":"https://github.com/sponsors/ai","type":"github"}],"gitHead":"865523080f8f39559b3c6570fe1c70fc593eeb61","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/postcss/postcss-load-config.git","type":"git"},"_npmVersion":"10.2.4","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"21.6.1","dependencies":{"yaml":"^2.3.4","lilconfig":"^3.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"jiti":">=1.21.0","postcss":">=8.0.9"},"peerDependenciesMeta":{"jiti":{"optional":true},"postcss":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_5.0.3_1707403908133_0.1802137299758111","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"postcss-load-config","version":"5.1.0","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@5.1.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"},{"name":"François Wouts"}],"homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"dist":{"shasum":"4ded23410da973e05edae9d41fa99bb5c1d5477f","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-5.1.0.tgz","fileCount":8,"integrity":"sha512-G5AJ+IX0aD0dygOE0yFZQ/huFFMSNneyfp0e3/bT05a8OfPC5FUoZRPfGijUdGOJNMewJiwzcHJXFafFzeKFVA==","signatures":[{"sig":"MEUCIQCpbiLzKMMi0PNok53tK2YFU3pwXkVQNJnRqeTEsw3n1QIga2GbBjGfIYZKzH2xOTqVTTYp0oQlFJn3Kfk5jKM7WGw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22221},"main":"src/index.js","types":"src/index.d.ts","engines":{"node":">= 18"},"funding":[{"url":"https://opencollective.com/postcss/","type":"opencollective"},{"url":"https://github.com/sponsors/ai","type":"github"}],"gitHead":"62d325c7c51fa536c433b2a2517e59d8f1ed101d","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/postcss/postcss-load-config.git","type":"git"},"_npmVersion":"10.5.1","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"22.0.0","dependencies":{"yaml":"^2.4.2","lilconfig":"^3.1.1"},"_hasShrinkwrap":false,"peerDependencies":{"tsx":"^4.8.1","jiti":">=1.21.0","postcss":">=8.0.9"},"peerDependenciesMeta":{"tsx":{"optional":true},"jiti":{"optional":true},"postcss":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_5.1.0_1714576492685_0.20668656248249295","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"postcss-load-config","version":"6.0.0","keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"license":"MIT","_id":"postcss-load-config@6.0.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"},{"name":"François Wouts"}],"homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"dist":{"shasum":"6e7ff070bc4b84d1cb44a5d266e6d290faf3fc4a","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.0.tgz","fileCount":8,"integrity":"sha512-Awdbn0DxIoOD0y9ljT7T8nm57tA0EGhnBRN2o8Dn/qZj4XuFfQ9q3mDgB5f4+A8wuD6x23RUgr0RMaId4bcFvA==","signatures":[{"sig":"MEUCICalm4TqprxV4dG7aMgWn5IS4oqisB5zWO0RUqvtQZD8AiEAuHK4REfKcDEzVe61VeIJqWl8De18F0HVf9kOv11Lrmo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22606},"main":"src/index.js","types":"src/index.d.ts","engines":{"node":">= 18"},"funding":[{"url":"https://opencollective.com/postcss/","type":"opencollective"},{"url":"https://github.com/sponsors/ai","type":"github"}],"gitHead":"4be6dcff44bb0269c96d5b947d4daae59a0cfbb5","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"repository":{"url":"git+https://github.com/postcss/postcss-load-config.git","type":"git"},"_npmVersion":"10.5.0","description":"Autoload Config for PostCSS","directories":{},"_nodeVersion":"20.12.2","dependencies":{"lilconfig":"^3.1.1"},"_hasShrinkwrap":false,"peerDependencies":{"tsx":"^4.8.1","jiti":">=1.21.0","yaml":"^2.4.2","postcss":">=8.0.9"},"peerDependenciesMeta":{"tsx":{"optional":true},"jiti":{"optional":true},"yaml":{"optional":true},"postcss":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/postcss-load-config_6.0.0_1717283163724_0.6874091319101314","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"postcss-load-config","version":"6.0.1","description":"Autoload Config for PostCSS","main":"src/index.js","types":"src/index.d.ts","engines":{"node":">= 18"},"funding":[{"type":"opencollective","url":"https://opencollective.com/postcss/"},{"type":"github","url":"https://github.com/sponsors/ai"}],"dependencies":{"lilconfig":"^3.1.1"},"peerDependencies":{"jiti":">=1.21.0","postcss":">=8.0.9","tsx":"^4.8.1","yaml":"^2.4.2"},"peerDependenciesMeta":{"jiti":{"optional":true},"postcss":{"optional":true},"tsx":{"optional":true},"yaml":{"optional":true}},"keywords":["postcss","postcssrc","postcss.config.js"],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"contributors":[{"name":"Ryan Dunckel"},{"name":"Mateusz Derks"},{"name":"Dalton Santos"},{"name":"Patrick Gilday"},{"name":"François Wouts"}],"repository":{"type":"git","url":"git+https://github.com/postcss/postcss-load-config.git"},"license":"MIT","_id":"postcss-load-config@6.0.1","gitHead":"a00cad85aa02020d78106b0656b1d6f19eb56dac","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"homepage":"https://github.com/postcss/postcss-load-config#readme","_nodeVersion":"20.12.2","_npmVersion":"10.5.0","dist":{"integrity":"sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==","shasum":"6fd7dcd8ae89badcf1b2d644489cbabf83aa8096","tarball":"https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz","fileCount":8,"unpackedSize":22654,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDhx6EJGL7kL+4dqtvVnhxPL+36NZiWyyrnHvC2nQ4HPAIgBev1Pa3wbILStMkE/EyrNDrH8tTapsFPrp+iw3F9UdM="}]},"_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"directories":{},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-load-config_6.0.1_1717354923602_0.39253057841496375"},"_hasShrinkwrap":false}},"time":{"created":"2016-06-01T14:46:24.520Z","modified":"2024-06-02T19:02:03.980Z","1.0.0-alpha":"2016-06-01T14:46:24.520Z","1.0.0-alpha2":"2016-07-07T15:35:38.087Z","1.0.0-alpha3":"2016-07-08T22:56:02.737Z","1.0.0-alpha4":"2016-07-09T13:53:56.209Z","1.0.0-beta":"2016-10-12T05:22:36.656Z","1.0.0-rc":"2016-10-14T17:32:33.283Z","1.0.0":"2016-10-27T15:27:11.270Z","1.1.0":"2017-01-11T11:44:41.046Z","1.2.0":"2017-02-13T02:25:26.387Z","2.0.0":"2018-07-10T14:10:21.789Z","2.1.0":"2019-06-10T18:01:44.116Z","2.1.1":"2020-09-17T22:28:00.941Z","2.1.2":"2020-09-27T00:23:44.200Z","3.0.0":"2020-10-02T03:00:54.284Z","3.0.1":"2021-02-08T00:01:29.669Z","3.1.0":"2021-06-14T11:17:29.710Z","3.1.1":"2022-01-01T21:02:00.182Z","3.1.2":"2022-02-10T14:45:49.561Z","3.1.3":"2022-02-11T10:50:20.800Z","3.1.4":"2022-03-29T10:49:53.397Z","4.0.0":"2022-05-23T01:04:24.945Z","4.0.1":"2022-05-31T02:16:11.385Z","4.0.2":"2023-11-20T00:33:41.507Z","5.0.0":"2023-12-01T04:25:15.600Z","5.0.1":"2023-12-04T03:23:51.123Z","5.0.2":"2023-12-04T04:59:37.459Z","5.0.3":"2024-02-08T14:51:48.337Z","5.1.0":"2024-05-01T15:14:52.863Z","6.0.0":"2024-06-01T23:06:03.911Z","6.0.1":"2024-06-02T19:02:03.793Z"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"}],"author":{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/postcss/postcss-load-config.git"},"keywords":["postcss","postcssrc","postcss.config.js"],"license":"MIT","homepage":"https://github.com/postcss/postcss-load-config#readme","bugs":{"url":"https://github.com/postcss/postcss-load-config/issues"},"readme":"\n\n
\n\n```bash\nnpm i -D postcss-load-config\n```\n\n
Usage
\n\n```bash\nnpm i -S|-D postcss-plugin\n```\n\nInstall all required PostCSS plugins and save them to your **package.json** `dependencies`/`devDependencies`\n\nThen create a PostCSS config file by choosing one of the following formats\n\n### `package.json`\n\nCreate a **`postcss`** section in your project's **`package.json`**\n\n```\nProject (Root)\n |– client\n |– public\n |\n |- package.json\n```\n\n```json\n{\n \"postcss\": {\n \"parser\": \"sugarss\",\n \"map\": false,\n \"plugins\": {\n \"postcss-plugin\": {}\n }\n }\n}\n```\n\n### `.postcssrc`\n\nCreate a **`.postcssrc`** file in JSON or YAML format\n\n> ℹ️ It's recommended to use an extension (e.g **`.postcssrc.json`** or **`.postcssrc.yml`**) instead of `.postcssrc`\n\n```\nProject (Root)\n |– client\n |– public\n |\n |- (.postcssrc|.postcssrc.json|.postcssrc.yml)\n |- package.json\n```\n\n**`.postcssrc.json`**\n```json\n{\n \"parser\": \"sugarss\",\n \"map\": false,\n \"plugins\": {\n \"postcss-plugin\": {}\n }\n}\n```\n\n**`.postcssrc.yml`**\n```yaml\nparser: sugarss\nmap: false\nplugins:\n postcss-plugin: {}\n```\n\n> [!NOTE]\n> For YAML configs, you must have [yaml](https://www.npmjs.com/package/yaml) installed as a peer dependency.\n\n### `.postcssrc.js` or `postcss.config.js`\n\nYou may need some logic within your config.\nIn this case create JS/TS file named:\n- `.postcssrc.js`\n- `.postcssrc.mjs`\n- `.postcssrc.cjs`\n- `.postcssrc.ts`\n- `.postcssrc.mts`\n- `.postcssrc.cts`\n- `postcss.config.js`\n- `postcss.config.mjs`\n- `postcss.config.cjs`\n- `postcss.config.ts`\n- `postcss.config.mts`\n- `postcss.config.cts`\n\n> [!NOTE]\n> For TypeScript configs, you must have [tsx](https://www.npmjs.com/package/tsx) or [jiti](https://www.npmjs.com/package/jiti) installed as a peer dependency.\n\n```\nProject (Root)\n |– client\n |– public\n |- (.postcssrc|postcss.config).(js|mjs|cjs|ts|mts|cts)\n |- package.json\n```\n\nYou can export the config as an `{Object}`\n\n**.postcssrc.js**\n```js\nmodule.exports = {\n parser: 'sugarss',\n map: false,\n plugins: {\n 'postcss-plugin': {}\n }\n}\n```\n\nOr export a `{Function}` that returns the config (more about the `ctx` param below)\n\n**.postcssrc.js**\n```js\nmodule.exports = (ctx) => ({\n parser: ctx.parser ? 'sugarss' : false,\n map: ctx.env === 'development' ? ctx.map : false,\n plugins: {\n 'postcss-plugin': ctx.options.plugin\n }\n})\n```\n\nPlugins can be loaded either using an `{Object}` or an `{Array}`\n\n#### `{Object}`\n\n**.postcssrc.js**\n```js\nmodule.exports = ({ env }) => ({\n ...options,\n plugins: {\n 'postcss-plugin': env === 'production' ? {} : false\n }\n})\n```\n\n> ℹ️ When using an `{Object}`, the key can be a Node.js module name, a path to a JavaScript file that is relative to the directory of the PostCSS config file, or an absolute path to a JavaScript file.\n\n#### `{Array}`\n\n**.postcssrc.js**\n```js\nmodule.exports = ({ env }) => ({\n ...options,\n plugins: [\n env === 'production' ? require('postcss-plugin')() : false\n ]\n})\n```\n> :warning: When using an `{Array}`, make sure to `require()` each plugin\n\n
Options
\n\n|Name|Type|Default|Description|\n|:--:|:--:|:-----:|:----------|\n|[**`to`**](#to)|`{String}`|`undefined`|Destination File Path|\n|[**`map`**](#map)|`{String\\|Object}`|`false`|Enable/Disable Source Maps|\n|[**`from`**](#from)|`{String}`|`undefined`|Source File Path|\n|[**`parser`**](#parser)|`{String\\|Function}`|`false`|Custom PostCSS Parser|\n|[**`syntax`**](#syntax)|`{String\\|Function}`|`false`|Custom PostCSS Syntax|\n|[**`stringifier`**](#stringifier)|`{String\\|Function}`|`false`|Custom PostCSS Stringifier|\n\n### `parser`\n\n**.postcssrc.js**\n```js\nmodule.exports = {\n parser: 'sugarss'\n}\n```\n\n### `syntax`\n\n**.postcssrc.js**\n```js\nmodule.exports = {\n syntax: 'postcss-scss'\n}\n```\n\n### `stringifier`\n\n**.postcssrc.js**\n```js\nmodule.exports = {\n stringifier: 'midas'\n}\n```\n\n### [**`map`**](https://github.com/postcss/postcss/blob/master/docs/source-maps.md)\n\n**.postcssrc.js**\n```js\nmodule.exports = {\n map: 'inline'\n}\n```\n\n> :warning: In most cases `options.from` && `options.to` are set by the third-party which integrates this package (CLI, gulp, webpack). It's unlikely one needs to set/use `options.from` && `options.to` within a config file. Unless you're a third-party plugin author using this module and its Node API directly **dont't set `options.from` && `options.to` yourself**\n\n### `to`\n\n```js\nmodule.exports = {\n to: 'path/to/dest.css'\n}\n```\n\n### `from`\n\n```js\nmodule.exports = {\n from: 'path/to/src.css'\n}\n```\n\n
Plugins
\n\n### `{} || null`\n\nThe plugin will be loaded with defaults\n\n```js\n'postcss-plugin': {} || null\n```\n\n**.postcssrc.js**\n```js\nmodule.exports = {\n plugins: {\n 'postcss-plugin': {} || null\n }\n}\n```\n\n> :warning: `{}` must be an **empty** `{Object}` literal\n\n### `{Object}`\n\nThe plugin will be loaded with given options\n\n```js\n'postcss-plugin': { option: '', option: '' }\n```\n\n**.postcssrc.js**\n```js\nmodule.exports = {\n plugins: {\n 'postcss-plugin': { option: '', option: '' }\n }\n}\n```\n\n### `false`\n\nThe plugin will not be loaded\n\n```js\n'postcss-plugin': false\n```\n\n**.postcssrc.js**\n```js\nmodule.exports = {\n plugins: {\n 'postcss-plugin': false\n }\n}\n```\n\n### `Ordering`\n\nPlugin **execution order** is determined by declaration in the plugins section (**top-down**)\n\n```js\n{\n plugins: {\n 'postcss-plugin': {}, // [0]\n 'postcss-plugin': {}, // [1]\n 'postcss-plugin': {} // [2]\n }\n}\n```\n\n
Context
\n\nWhen using a `{Function}` (`postcss.config.js` or `.postcssrc.js`), it's possible to pass context to `postcss-load-config`, which will be evaluated while loading your config. By default `ctx.env (process.env.NODE_ENV)` and `ctx.cwd (process.cwd())` are available on the `ctx` `{Object}`\n\n> ℹ️ Most third-party integrations add additional properties to the `ctx` (e.g `postcss-loader`). Check the specific module's README for more information about what is available on the respective `ctx`\n\n
= 0.9.0"},"testling":{"files":"test/*.js","browsers":["ie/6..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/11.0..latest","iphone/6","ipad/6","android-browser/latest"]},"_id":"object-hash@0.0.5","dist":{"shasum":"e6d0272e3da2b999478aef2e37d63517309a26dc","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.0.5.tgz","integrity":"sha512-ZumX2/GVnrkwje/ZXmNAupAzc9JAKy7szaZPU+3I9blz3XZfsjT9MSpPwTbLCpowLStN34CQm4ZzGxKWKH23MQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAOkjHn2lK4vdNPiVZQxURru0wKRIsZpCtB0W4Z5kKvVAiEAzBWij849UJqvZJn608w7DawbN38zFPKHxUIh1nTNIVI="}]},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"puleos","email":"puleos@gmail.com"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"}],"directories":{}},"0.1.0":{"name":"object-hash","version":"0.1.0","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"dependencies":{"tape":"~2.10.2"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/6..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/11.0..latest","iphone/6","ipad/6","android-browser/latest"]},"_id":"object-hash@0.1.0","dist":{"shasum":"e0bd9c54e2821467cc363c3cc46392ebe8909f3f","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.1.0.tgz","integrity":"sha512-X7mWc+ExbXhbfDnEZleweeu3tmsFMQPI2HPG2ki/2P2HWVtkYY3YNlw7O9gVno6DBejwynqTcpHCCo0oSXWW3g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGhlmr0+91Z2+o1xtjYHdAXsCuQOd+/voCw3va4sarhtAiAQxonp1YOedxsgjOQDeKr+mDODKXIDVu/dR4p9td0foA=="}]},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"puleos","email":"puleos@gmail.com"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"}],"directories":{}},"0.1.1":{"name":"object-hash","version":"0.1.1","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"dependencies":{"tape":"~2.10.2"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/6..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/11.0..latest","iphone/6","ipad/6","android-browser/latest"]},"_id":"object-hash@0.1.1","dist":{"shasum":"24a207a6715f45315bedbd34d31e73ae0fcb9ecf","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.1.1.tgz","integrity":"sha512-0jVwoahFo6vhKrbyaFDYOXskhEneikVmHNrIWK/d5PwMCgN25q4bq+Oe62Qp1JcLGPpviZzAyt7wuCmcfPpEIg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBoQnZrF70DjhOCSkzHrmt4sZmRBcZQCBw7TSZsjtb4YAiAPOT81H8XZpUxd0D9qXa1JIrexo/hmWP8V4+ix0ri6fg=="}]},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"puleos","email":"puleos@gmail.com"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"}],"directories":{}},"0.1.2":{"name":"object-hash","version":"0.1.2","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"dependencies":{"tape":"~2.10.2"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/6..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/11.0..latest","iphone/6","ipad/6","android-browser/latest"]},"_id":"object-hash@0.1.2","dist":{"shasum":"381ce81090fd1372b3bdc1fc99de2dd350ac9c68","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.1.2.tgz","integrity":"sha512-MtO3Y/Zjzrdabr0IYYqb4ASnCn4sf8DYdAJIh0mJVAaW/48rP37SntwRwQ/rx4LcflaYyB7cZRMd590SLuoDNQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC9fpvTIoV6z3A/D+1HpwBOEDoAHImbV9x49l1+16zLOAiEA47Toln7Ur6URHMTZgfcO1VcM8BUzgVNhxHEJ12SL9b4="}]},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"puleos","email":"puleos@gmail.com"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"}],"directories":{}},"0.2.0":{"name":"object-hash","version":"0.2.0","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"dependencies":{"tape":"~2.10.2"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/6..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/11.0..latest","iphone/6","ipad/6","android-browser/latest"]},"_id":"object-hash@0.2.0","dist":{"shasum":"e434cab3bc0d07a1edb18e70d02265c27b254e9d","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.2.0.tgz","integrity":"sha512-VfM8WQkC5R4SmVuOHjmGYMaj6eySZwS9TDgVG76zPfp6U5fvKmi15H1ZcfDZyovQHfBNpSVtzY91os8D+hbf0Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCpl2bUPVGZ95CHJ7XxsMHhWIClDM2mhV3+JWsqtSHZcAIhAKTJI/mdSffWpo17N8n64eUHjtn8LMXK3MlpzEc4bmij"}]},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"puleos","email":"puleos@gmail.com"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"}],"directories":{}},"0.2.1":{"name":"object-hash","version":"0.2.1","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"dependencies":{"tape":"~2.10.2"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/6..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/11.0..latest","iphone/6","ipad/6","android-browser/latest"]},"_id":"object-hash@0.2.1","dist":{"shasum":"52bc8fd5caf7d274b0f3cc08dc0c616e84c2571a","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.2.1.tgz","integrity":"sha512-nJfZAmQvLHbLIoN7Q+VVnyH5/zU52Crlevufl4mE5FeOGSgE89pv/S9onVbIZYsaNi/KtPJPEPzJDIaGGptZ6A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDtenVKR9CcSQXeG0Nq5/zgn0CZq/66+BDtEvkFJuEs4wIhAOxqr5lNbNHpe31OGaJg0WRlJNJm3OCk+kK+ZSC0xlt6"}]},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"puleos","email":"puleos@gmail.com"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"}],"directories":{}},"0.2.2":{"name":"object-hash","version":"0.2.2","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"dependencies":{"tape":"~2.10.2"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/6..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/11.0..latest","iphone/6","ipad/6","android-browser/latest"]},"_id":"object-hash@0.2.2","dist":{"shasum":"0c6b1d665402af1c8ada780fdb4d88f5081cb832","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.2.2.tgz","integrity":"sha512-Ozk9NMh/QZYlFSuoMNQ4ZS2yKTEQq1jwAdmO8vQ1j3zkiCxJvcgifTko+Li+BHkFXM3gnjGSq4Z/b765M6PYZA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQClObGFC/l4khnJZQmghjYKqqxfjHO+VxIj7Q0Gxr8ZdQIhALxFQfECMMJvz0tvLbYz8UBKzOqVdlsbj5TIftlKrLn3"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"puleos","email":"puleos@gmail.com"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"}],"directories":{}},"0.2.3":{"name":"object-hash","version":"0.2.3","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/6..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/11.0..latest","iphone/6","ipad/6","android-browser/latest"]},"_id":"object-hash@0.2.3","dist":{"shasum":"a20ad4f169378f0a02791f854ef38e2f35b483ea","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.2.3.tgz","integrity":"sha512-CKxgW+ksxN/3QyR0DkhN50MkcCEqVCmsSkb72Z+Cr9dsOOVX7AxfrZNkdodM/AaqmHLvKKOTnWx6VmpATdAL/A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE4ziUNjH7hyzgTaxFUGCpI/4HDtiz3Y37U7N5uAb0DpAiEA/uaneTYsNkSsxar1jEvCmuTyOnu30Mu5AEzeMs/cLE8="}]},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"puleos","email":"puleos@gmail.com"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"}],"directories":{}},"0.2.4":{"name":"object-hash","version":"0.2.4","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/6..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/11.0..latest","iphone/6","ipad/6","android-browser/latest"]},"_id":"object-hash@0.2.4","dist":{"shasum":"93955c5f8561163b036c5f670e0a1084b921d308","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.2.4.tgz","integrity":"sha512-9E6B5G8fTlQfIrGnRJZIavM6b+Kv3S4GMmWjhFobQAluSlr+Y0bb7CIuDhfinJuXu2kbDSL2vPNdTLvOgBWfLQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAkDIhyjSaU35beq87nZfxDc/Qcz/xm8rQQyCl3m4IHqAiEAl03YrV7A3S6Ss62URktkjoUpqOk+eV8/Sr84O5bp5EY="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"puleos","email":"puleos@gmail.com"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"}],"directories":{}},"0.2.5":{"name":"object-hash","version":"0.2.5","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/6..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/11.0..latest","iphone/6","ipad/6","android-browser/latest"]},"_id":"object-hash@0.2.5","dist":{"shasum":"88a555c986109262cc9ae76d9a6153b9fe05800c","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.2.5.tgz","integrity":"sha512-FbVtUFkacmZwcvWHqK+snnJEuwGfyZINBxpM3Qm8wLkEQXkrbA4DJcN579xgx7x/oEGe2GjpChlPK06JsjbvEw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHlgQM6GOhmtsuZXLJQsZpYG9aoA0lWLtu/PlYwA1qRXAiEA8mDQMnLFHTb6JftMMW7QbS+XOZd+59EoauQEgYZjRjE="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"puleos","email":"puleos@gmail.com"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"}],"directories":{}},"0.3.0":{"name":"object-hash","version":"0.3.0","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/9..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/12.0..latest","iphone/6","ipad/6","android-browser/latest"]},"_id":"object-hash@0.3.0","dist":{"shasum":"548208e43b36a44e4da30bad6c56ac53b885e744","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.3.0.tgz","integrity":"sha512-svS23O+dr8NzMMAx90mLwft5LMhqDujSqZ2yHN07Skh2Urdmk5dnoUuqn4/MWrxlD/QvYnY3MRMvxTt7PKc+Wg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE0U2f6cN0HXKgQWl5QobMcMlx0r31EJONguiZPruNEnAiBr8QwpzsvUc1YyVIJtm2mB2wZYcFGkCCCPFdu5376S5w=="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"puleos","email":"puleos@gmail.com"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"}],"directories":{}},"0.4.0":{"name":"object-hash","version":"0.4.0","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/9..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/12.0..latest","iphone/6","ipad/6","android-browser/latest"]},"gitHead":"f0254a2f1116c7e8911af4397fec7de9f5b2fe7c","_id":"object-hash@0.4.0","_shasum":"832084230147913d38ec85d80a9057901853b8cc","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"puleos","email":"puleos@gmail.com"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"}],"dist":{"shasum":"832084230147913d38ec85d80a9057901853b8cc","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.4.0.tgz","integrity":"sha512-fz4nejZqH8necxu0Q9mIJtupVYihjCOFJuIpMcMZtfRZKE10LanyWi0EgZuqZUreKryQpSktObnb4QaqftetHg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDIzU8DW7gHTCbBwwfILneOnzLdM7DeM8BQ1fczDLBCVwIgAKt+l9+7+1GK0P7jtKf3hi1rHKWXP4JMuza5sRdRDbE="}]},"directories":{}},"0.5.0":{"name":"object-hash","version":"0.5.0","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/9..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/12.0..latest","iphone/6","ipad/6","android-browser/latest"]},"gitHead":"5bcda2e849080de1efd4bffc746db81d5fdebc5c","_id":"object-hash@0.5.0","_shasum":"e9b784d98b66f416e80de55f2c513710b433fe2d","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"puleos","email":"puleos@gmail.com"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"}],"dist":{"shasum":"e9b784d98b66f416e80de55f2c513710b433fe2d","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.5.0.tgz","integrity":"sha512-aKwrMfOowu+OVAH+zZrQHnxmgvFtHtlVgX59Tk3pHyh6B1CoPCMb01enCybZmxc2txJ867MPYi/DVyQ7cR8ZEw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDL4g7CXdOgdYN8P4NM3yZh32qh25+N9C1e3MfzrLF+0gIhAM8apOgfqE3lktstq88L8NFCf6UotGpb+B9jdVD7b3na"}]},"directories":{}},"0.6.0":{"name":"object-hash","version":"0.6.0","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/9..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/12.0..latest","iphone/6","ipad/6","android-browser/latest"]},"gitHead":"c2611b78b933122b2d4592f5009aac579e531f39","_id":"object-hash@0.6.0","_shasum":"ff5fad33e47f2e8c4515869ffb2b14c5fdcf122c","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.10.38","_npmUser":{"name":"puleos","email":"puleos@gmail.com"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"}],"dist":{"shasum":"ff5fad33e47f2e8c4515869ffb2b14c5fdcf122c","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.6.0.tgz","integrity":"sha512-MDJxaOjO/Ex+0kdukomTsS5qQBitobo28azNICL+qoedQXgWvImO4fQQ01vBqRAXNSXgUe+MV+VRB1hdWvUJ7Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDIKgVFHu+PtbyboFMaotTNCWJ99FZfMuHYC1QESu6YawIhAO0UT5jFcCETKEvQwO2LcB7ctQllaGfgDdglSXaBOubq"}]},"directories":{}},"0.6.1":{"name":"object-hash","version":"0.6.1","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/9..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/12.0..latest","iphone/6","ipad/6","android-browser/latest"]},"gitHead":"5ec41673183e2db93ff1d15a9ccf7765484f8ccb","_id":"object-hash@0.6.1","_shasum":"45fc036998a1fd09aee9b346663a6c5b87a4959e","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.10.38","_npmUser":{"name":"puleos","email":"puleos@gmail.com"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"}],"dist":{"shasum":"45fc036998a1fd09aee9b346663a6c5b87a4959e","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.6.1.tgz","integrity":"sha512-PlDzcuWts59fhHGbUdgmwSRWU/c4bbXEf+/TZXgOh1T/adX971pT4xUGdYycKfpfWXZh5TQchvtRtV/g9EabKQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHXjkzukNDLrfzsSi1AAKjus9pqyYkBjth+iGnOAqcNvAiEA0/At+vugVcmkvJXfIRFKMh7CPopnWnOvVC7tlVYwWv8="}]},"directories":{}},"0.7.0":{"name":"object-hash","version":"0.7.0","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/9..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/12.0..latest","iphone/6","ipad/6","android-browser/latest"]},"gitHead":"33604becce809133b5ecdea01e392e79f4ee2929","_id":"object-hash@0.7.0","_shasum":"5a728ad32b9e989dd67e5fbac97778f6800253ad","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.10.38","_npmUser":{"name":"puleos","email":"puleos@gmail.com"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"}],"dist":{"shasum":"5a728ad32b9e989dd67e5fbac97778f6800253ad","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.7.0.tgz","integrity":"sha512-2ZDP7+17sKWkWfbAybtVktuTp4Y6amtAfEZN5sgMguFwThY+R+n0tptwAT0r4gLJ7xcPMc1cYvZdyySxeOKsEA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDO8BHoownc3hbnACvQjtF0YnixzkkZ1Gt2eIHScNIqfAIhAOtAtVeGUBX8Te4rptWyFMseZ7GYMIYc2Dk22bB0XVcy"}]},"directories":{}},"0.8.0":{"name":"object-hash","version":"0.8.0","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/9..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/12.0..latest","iphone/6","ipad/6","android-browser/latest"]},"gitHead":"68b09cbf947648ea33993ca0605b77fe5ff081a9","_id":"object-hash@0.8.0","_shasum":"6ffb61b770c940d91977fda1466c9269cdd59cfc","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.10.38","_npmUser":{"name":"puleos","email":"puleos@gmail.com"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"}],"dist":{"shasum":"6ffb61b770c940d91977fda1466c9269cdd59cfc","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.8.0.tgz","integrity":"sha512-OGYQrtxQerFGtKBALcYMDQCs359N8sbDdPATnxtJ0iyMvcrGMUPwUawi0A1HiZxUFjKLYSNikLwGuBN0Y3GJpQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCnewjqaK55//8AKwtPr119GqCJ+f+v+7cD9CTdEmV1mwIgPeuOBC2XNB0jjsDRcu3aP2WVin9oTG7J04ZKDSIYn8Y="}]},"directories":{}},"0.9.0":{"name":"object-hash","version":"0.9.0","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/9..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/12.0..latest","iphone/6","ipad/6","android-browser/latest"]},"gitHead":"17c29c69528ba9b3149371509078d51c58417030","_id":"object-hash@0.9.0","_shasum":"a0f7b6858e54fd2c42cf14aa71e132845f7c3d12","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"sqrt","email":"sqrt@entless.org"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"},{"name":"sqrt","email":"sqrt@entless.org"}],"dist":{"shasum":"a0f7b6858e54fd2c42cf14aa71e132845f7c3d12","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.9.0.tgz","integrity":"sha512-i6hC6xZMHkuuyUPHzBTCTJmD8hNSCVfWT5EsJs4/gbwTpqBV9BgmLtvtU36uInl6aVjvO0mITR9ok11t6uNQLg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCnaL1gi8bBqhG4DxserS61LgwQM4nZJMuzgg/QQmlPNAIgV7ACqjzgn8rWANvyEPZ6PUT3Hy3lHEsok90yGGn5KnI="}]},"directories":{}},"0.9.1":{"name":"object-hash","version":"0.9.1","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"https://github.com/puleos/object-hash"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/9..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/12.0..latest","iphone/6","ipad/6","android-browser/latest"]},"gitHead":"3f0ab3c8e821a246559808d3e488c7b675d60453","_id":"object-hash@0.9.1","_shasum":"fb7824033588af0afd10e51a2d90103eef3cd8d1","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"sqrt","email":"sqrt@entless.org"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"},{"name":"sqrt","email":"sqrt@entless.org"}],"dist":{"shasum":"fb7824033588af0afd10e51a2d90103eef3cd8d1","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.9.1.tgz","integrity":"sha512-9MgIYHpgHgVsFhWCW0l+nSQw1z8qYnJ4g3oxc61RkC509JqkuhqzWjzsrXhpP/P1GLKcPMNooCYqblWCLSwOtg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQChXI//OGZquAptvZdk0t1vCUGJB84RelvSSkygAd2XKQIhAIVz1PhDtKzU6prYgxOuQg0YIaPAlhm2RsR5Ytyc4O1C"}]},"directories":{}},"0.9.2":{"name":"object-hash","version":"0.9.2","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"tape":"~2.10.2","gulp":"~3.5.5","gulp-jshint":"~1.5.0","gulp-browserify":"~0.4.6","jshint-stylish":"~0.1.5","gulp-exec":"~1.0.4","gulp-uglify":"~0.2.1","gulp-rename":"~1.2.0"},"engines":{"node":">= 0.8.0"},"testling":{"files":"test/*.js","browsers":["ie/9..latest","chrome/22..latest","firefox/16..latest","safari/latest","opera/12.0..latest","iphone/6","ipad/6","android-browser/latest"]},"gitHead":"aae67a0741eb2b074f78244eb6a758620946f7a3","_id":"object-hash@0.9.2","_shasum":"514291c9f6c8aa1d7240ba015aa9fbef9606edf6","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"sqrt","email":"sqrt@entless.org"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"},{"name":"sqrt","email":"sqrt@entless.org"}],"dist":{"shasum":"514291c9f6c8aa1d7240ba015aa9fbef9606edf6","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.9.2.tgz","integrity":"sha512-meAbFNtJreOFXlf40IETTkard+e0bm4kBYfq8ZMfWNbZeS8ycXnlbOxtzme6JDusgWUB626Zd4r2HQEli0KV2w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHz745qDeXLWEEhH8o68sj7d6iHCZTdIet0iE1QJLIPiAiA1H5uaA3o4ELHy0sAXeeRNlY64lfMzonPqp+KhSq3Lgg=="}]},"directories":{}},"0.9.3":{"name":"object-hash","version":"0.9.3","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^12.0.1","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^2.1.2","gulp-istanbul":"^0.10.3","gulp-jshint":"^2.0.0","gulp-mocha":"^2.2.0","gulp-rename":"^1.2.0","gulp-uglify":"^1.5.1","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^0.13.15","karma-chrome-launcher":"^0.2.2","karma-firefox-launcher":"^0.1.7","karma-mocha":"^0.2.1","karma-phantomjs-launcher":"^0.2.1","mocha":"^2.3.4","phantomjs":"^1.9.19"},"engines":{"node":">= 0.8.0"},"gitHead":"8a2efc81f744a04a927a3a362169b762b3d1cb31","_id":"object-hash@0.9.3","_shasum":"499e73b76db1c4d624f8f862645eb8d06410f88b","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"sqrt","email":"sqrt@entless.org"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"},{"name":"sqrt","email":"sqrt@entless.org"}],"dist":{"shasum":"499e73b76db1c4d624f8f862645eb8d06410f88b","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.9.3.tgz","integrity":"sha512-y0+n1N6UaUqyVgjt9jpdpqzy77or7qEsjpOXAK9e0ZSBiAvc2HtU1iEX6ic2qAUfV4g7/zZq0Howi9g1iFf2tw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID+AU9qT/18u8P/55COmcL9zbI9gPmlAgjrWeeY8+iKWAiEAnxosilYWX6byODlLTm4MwjhdvQ+Juiwnufj4XoFmEbA="}]},"directories":{}},"0.9.4":{"name":"object-hash","version":"0.9.4","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^12.0.1","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^2.1.2","gulp-istanbul":"^0.10.3","gulp-jshint":"^2.0.0","gulp-mocha":"^2.2.0","gulp-rename":"^1.2.0","gulp-uglify":"^1.5.1","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^0.13.15","karma-chrome-launcher":"^0.2.2","karma-firefox-launcher":"^0.1.7","karma-mocha":"^0.2.1","karma-phantomjs-launcher":"^0.2.1","mocha":"^2.3.4","phantomjs":"^1.9.19"},"engines":{"node":">= 0.8.0"},"gitHead":"a17ee122d927283335d929bc2fa2f3c7316c3fd1","_id":"object-hash@0.9.4","_shasum":"6bac7b8d762d4a954533c80b43b5144c202d04c6","_from":".","_npmVersion":"3.3.12","_nodeVersion":"6.0.0-pre","_npmUser":{"name":"sqrt","email":"sqrt@entless.org"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"},{"name":"sqrt","email":"sqrt@entless.org"}],"dist":{"shasum":"6bac7b8d762d4a954533c80b43b5144c202d04c6","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.9.4.tgz","integrity":"sha512-tzlY3jLiYl5tUFZSVhBbO7+KuECvXdXyllWVJ4c2Z9P03w9eqm9ezadbNmqiiapSIioKj1hY5OewyHRG27QTWQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCpbYwmy5fzHqsWldevwa4SVg8YWKi7iI/Q72v8qvOMKgIgDD3nzJZ9REr2Mc2w/Csu5AfGXNdsWX98LpGUfw+pSWg="}]},"directories":{}},"0.9.5":{"name":"object-hash","version":"0.9.5","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^12.0.1","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^2.1.2","gulp-istanbul":"^0.10.3","gulp-jshint":"^2.0.0","gulp-mocha":"^2.2.0","gulp-rename":"^1.2.0","gulp-uglify":"^1.5.1","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^0.13.15","karma-chrome-launcher":"^0.2.2","karma-firefox-launcher":"^0.1.7","karma-mocha":"^0.2.1","karma-phantomjs-launcher":"^0.2.1","mocha":"^2.3.4","phantomjs":"^1.9.19"},"engines":{"node":">= 0.8.0"},"gitHead":"3deb7799092d182be409005b80d6c5f7fc2dfc28","_id":"object-hash@0.9.5","_shasum":"8651daeb7be1425d85aa04df714d3360edf52a2c","_from":".","_npmVersion":"3.3.12","_nodeVersion":"6.0.0-pre","_npmUser":{"name":"sqrt","email":"sqrt@entless.org"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"},{"name":"sqrt","email":"sqrt@entless.org"}],"dist":{"shasum":"8651daeb7be1425d85aa04df714d3360edf52a2c","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-0.9.5.tgz","integrity":"sha512-NubTyxdp+zFlKDminGPf37ofxFJDjwcgJz8Xl1ydfQFihLp8P/jaUIMVX25sTbk/J7mhttFnxrDUPNBca7Qgfg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDNe00Of2owbYvE8742AHaC8v015PMGSdGFZA10nm4aOwIhANUaN5cb585FHmEtMLiTqSi3FPymnntD4UzJqHh2nv1D"}]},"directories":{}},"1.0.0":{"name":"object-hash","version":"1.0.0","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^12.0.1","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^2.1.2","gulp-istanbul":"^0.10.3","gulp-jshint":"^2.0.0","gulp-mocha":"^2.2.0","gulp-rename":"^1.2.0","gulp-uglify":"^1.5.1","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^0.13.15","karma-chrome-launcher":"^0.2.2","karma-firefox-launcher":"^0.1.7","karma-mocha":"^0.2.1","karma-phantomjs-launcher":"^0.2.1","mocha":"^2.3.4","phantomjs":"^1.9.19"},"engines":{"node":">= 0.10.0"},"gitHead":"c8289f24cf99104bea71beefbd3de0d55fda0d41","_id":"object-hash@1.0.0","_shasum":"d58e8d97f2671cd6d409209b71e007c275319f66","_from":".","_npmVersion":"3.3.12","_nodeVersion":"6.0.0-pre","_npmUser":{"name":"sqrt","email":"sqrt@entless.org"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"},{"name":"sqrt","email":"sqrt@entless.org"}],"dist":{"shasum":"d58e8d97f2671cd6d409209b71e007c275319f66","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-1.0.0.tgz","integrity":"sha512-pG+DIL/BSS76kf6UmrGY1eOc/GcHLeUzxZ14mq01xIFu5fGjW0LuEbeOb7lHP4d79gR9LM1Nx6Mz1UCfEpUpnA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCewIjyugeLwMm91tsNT9h1jf0X40fCpdgHrWvidUz1tQIhANu1Aws76eStjoJduRg65f3Z4Y8eEKmD6xQnkSYiTqly"}]},"directories":{}},"1.1.0":{"name":"object-hash","version":"1.1.0","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^13.0.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^2.1.2","gulp-istanbul":"^0.10.3","gulp-jshint":"^2.0.0","gulp-mocha":"^2.2.0","gulp-rename":"^1.2.0","gulp-uglify":"^1.5.1","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^0.13.15","karma-chrome-launcher":"^0.2.2","karma-firefox-launcher":"^0.1.7","karma-mocha":"^0.2.1","karma-phantomjs-launcher":"^0.2.1","mocha":"^2.3.4","phantomjs":"^1.9.19"},"engines":{"node":">= 0.10.0"},"gitHead":"73e5e326b511109473cd049f6cb179f37209cd54","_id":"object-hash@1.1.0","_shasum":"af789ae6fc4f1436d44e475b6732755293dbb9a0","_from":".","_npmVersion":"3.3.12","_nodeVersion":"6.0.0-pre","_npmUser":{"name":"sqrt","email":"sqrt@entless.org"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"},{"name":"sqrt","email":"sqrt@entless.org"}],"dist":{"shasum":"af789ae6fc4f1436d44e475b6732755293dbb9a0","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-1.1.0.tgz","integrity":"sha512-s6pvvW8ajeM780get66qY7FECsBc+ZdPG1qZq8GxwmfDE2bcrVQV3naCKlagi0XAG818Pr2poJBkKjbZjBVisg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDSRKOZQaEUwfG8N98OriA8xskwe5zYfNFhyXs7aXeeFwIgU0V0qErVPILnUtFZzOA2Xy6NW2uJNNO83KX84lUjAho="}]},"directories":{}},"1.1.1":{"name":"object-hash","version":"1.1.1","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^13.0.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^2.1.2","gulp-istanbul":"^0.10.3","gulp-jshint":"^2.0.0","gulp-mocha":"^2.2.0","gulp-rename":"^1.2.0","gulp-uglify":"^1.5.1","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^0.13.15","karma-chrome-launcher":"^0.2.2","karma-firefox-launcher":"^0.1.7","karma-mocha":"^0.2.1","karma-phantomjs-launcher":"^0.2.1","mocha":"^2.3.4","phantomjs":"^1.9.19"},"engines":{"node":">= 0.10.0"},"gitHead":"8767aec2213d401d18722ec496afe3b1d1d52c08","_id":"object-hash@1.1.1","_shasum":"e2b9894374c5dbb2ddbe804c0cd36fc145d681c0","_from":".","_npmVersion":"3.3.12","_nodeVersion":"6.0.0-pre","_npmUser":{"name":"sqrt","email":"sqrt@entless.org"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"},{"name":"sqrt","email":"sqrt@entless.org"}],"dist":{"shasum":"e2b9894374c5dbb2ddbe804c0cd36fc145d681c0","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-1.1.1.tgz","integrity":"sha512-D9xc74T9YofZu78MEUepTZ9/6wjT6AQtYqCMdZkw9tglAo4lkmLJUl1ZOEntRKBsxJMBYTCLptC10TLv/eEspQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDSl8QVME2ktAie9T2RhgoERO6cKO/ElZB5eNgm6OowHAiEAnB3siM51ZzLmG0jWgvw5RhXJIXpdgWyCx3oxA4EHL5M="}]},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/object-hash-1.1.1.tgz_1455539366532_0.17967273062095046"},"directories":{}},"1.1.2":{"name":"object-hash","version":"1.1.2","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^13.0.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^2.1.2","gulp-istanbul":"^0.10.3","gulp-jshint":"^2.0.0","gulp-mocha":"^2.2.0","gulp-rename":"^1.2.0","gulp-uglify":"^1.5.1","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^0.13.15","karma-chrome-launcher":"^0.2.2","karma-firefox-launcher":"^0.1.7","karma-mocha":"^0.2.1","karma-phantomjs-launcher":"^0.2.1","mocha":"^2.3.4","phantomjs":"^1.9.19"},"engines":{"node":">= 0.10.0"},"gitHead":"d2179c079541a4302c2f7b2dafd996160468985d","_id":"object-hash@1.1.2","_shasum":"2b0493d20c80e129305acc86c40a9159d58c4658","_from":".","_npmVersion":"3.3.12","_nodeVersion":"6.0.0-pre","_npmUser":{"name":"sqrt","email":"sqrt@entless.org"},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"},{"name":"sqrt","email":"sqrt@entless.org"}],"dist":{"shasum":"2b0493d20c80e129305acc86c40a9159d58c4658","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-1.1.2.tgz","integrity":"sha512-U77zyke4WVomXN1MCRw4hEt6pyNh6lMmFlrn0A+BRAg0Can7y+2eHR/1hszDGWj1ocCix6h8m+BVGl6jCGl06g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBSYnB7M00aH/ifgydB1swXe7MqJN00bosD8A4SGrahIAiEAm5X0gVBHWu3WrHyYp9ja4WI2Lu2h1X+uPeO+iDEKB3Q="}]},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/object-hash-1.1.2.tgz_1455550254349_0.05658689793199301"},"directories":{}},"1.1.3":{"name":"object-hash","version":"1.1.3","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^13.0.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^2.1.2","gulp-istanbul":"^0.10.3","gulp-jshint":"^2.0.0","gulp-mocha":"^2.2.0","gulp-rename":"^1.2.0","gulp-uglify":"^1.5.1","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^0.13.15","karma-chrome-launcher":"^0.2.2","karma-firefox-launcher":"^0.1.7","karma-mocha":"^0.2.1","karma-phantomjs-launcher":"^0.2.1","mocha":"^2.3.4","phantomjs":"^1.9.19"},"engines":{"node":">= 0.10.0"},"gitHead":"5ad31ab1c73870dde7ddde846cb631784724eec9","_id":"object-hash@1.1.3","_shasum":"2c69bb337b7ab1b652f0fee68b3ce7ab3e5f962c","_from":".","_npmVersion":"3.10.6","_nodeVersion":"7.0.0-pre","_npmUser":{"name":"addaleax","email":"anna@addaleax.net"},"dist":{"shasum":"2c69bb337b7ab1b652f0fee68b3ce7ab3e5f962c","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-1.1.3.tgz","integrity":"sha512-YAMxpunfmOHuo4S5KznCqN7diZrT4zHDrawFdkOX898f0XZ1yg3HkYjLm0F3JDWG/D5ebKbGlcpxe6M/V7WZmg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDX5Vgga05d1X1Smk2Be6HJFdxOwf5mYq5M2oX0DNXhtQIhAISHeyGmJzSEr15olsfLTZIFJFjLFJy8WjSmku9asL3X"}]},"maintainers":[{"name":"addaleax","email":"anna@addaleax.net"},{"name":"puleos","email":"puleos@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/object-hash-1.1.3.tgz_1468264823029_0.752226869110018"},"directories":{}},"1.1.4":{"name":"object-hash","version":"1.1.4","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^13.0.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^2.1.2","gulp-istanbul":"^0.10.3","gulp-jshint":"^2.0.0","gulp-mocha":"^2.2.0","gulp-rename":"^1.2.0","gulp-uglify":"^1.5.1","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^0.13.15","karma-chrome-launcher":"^0.2.2","karma-firefox-launcher":"^0.1.7","karma-mocha":"^0.2.1","karma-phantomjs-launcher":"^0.2.1","mocha":"^2.3.4","phantomjs":"^1.9.19"},"engines":{"node":">= 0.10.0"},"gitHead":"5004fa165e82db05713b5220ed1e42d9bd370d9f","_id":"object-hash@1.1.4","_shasum":"136f07f1a48af5f6b906812451ae4e43978c94aa","_from":".","_npmVersion":"3.10.6","_nodeVersion":"7.0.0-pre","_npmUser":{"name":"addaleax","email":"anna@addaleax.net"},"dist":{"shasum":"136f07f1a48af5f6b906812451ae4e43978c94aa","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-1.1.4.tgz","integrity":"sha512-W6muQbHEfHqZusW/fNQT+Z1WAE0FgjfxtGOdSpOfWYVHYBuPu/geEwikhGftiwJwQ7waei/kB2kY4SD70bTR6A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFxuBtMbeUlVNOeegmhRQZarZ9RPEZEFn/pPpqysn9tzAiBabEn86EA3XKl+5YopfP+54SxBF4Yp9wfIjn8XBGVdyg=="}]},"maintainers":[{"name":"addaleax","email":"anna@addaleax.net"},{"name":"puleos","email":"puleos@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/object-hash-1.1.4.tgz_1470069698161_0.6088556589093059"},"directories":{}},"1.1.5":{"name":"object-hash","version":"1.1.5","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^13.0.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^2.1.2","gulp-istanbul":"^0.10.3","gulp-jshint":"^2.0.0","gulp-mocha":"^2.2.0","gulp-rename":"^1.2.0","gulp-uglify":"^1.5.1","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^0.13.15","karma-chrome-launcher":"^0.2.2","karma-firefox-launcher":"^0.1.7","karma-mocha":"^0.2.1","karma-phantomjs-launcher":"^0.2.1","mocha":"^2.3.4","phantomjs":"^1.9.19"},"engines":{"node":">= 0.10.0"},"gitHead":"f0974d27d15d74af519c30b123db3a1102bf3de8","_id":"object-hash@1.1.5","_shasum":"bdd844e030d0861b692ca175c6cab6868ec233d7","_from":".","_npmVersion":"4.0.1","_nodeVersion":"7.0.0","_npmUser":{"name":"addaleax","email":"anna@addaleax.net"},"dist":{"shasum":"bdd844e030d0861b692ca175c6cab6868ec233d7","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-1.1.5.tgz","integrity":"sha512-hK8Jrmm4uRKxVho8Xl/3dhzzRzSUSEBBuyledJAmmeQcBnDXCoY08HevN3zEseUereZJmuora6WUL2p7I9n0Mw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH5+SvNDQkf0zR/YLR9HxrfiOICfJB2KC0K4qAr/j1CLAiBEKW9XlW14FmKODcW3B4u4GZoNSg1eHJyNbIwLN5pXdg=="}]},"maintainers":[{"name":"addaleax","email":"anna@addaleax.net"},{"name":"puleos","email":"puleos@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/object-hash-1.1.5.tgz_1478452439040_0.3592356538865715"},"directories":{}},"1.1.6":{"name":"object-hash","version":"1.1.6","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","main":"dist/object_hash.js","devDependencies":{"browserify":"^13.0.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^2.1.2","gulp-istanbul":"^0.10.3","gulp-jshint":"^2.0.0","gulp-mocha":"^2.2.0","gulp-rename":"^1.2.0","gulp-uglify":"^1.5.1","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^0.13.15","karma-chrome-launcher":"^0.2.2","karma-firefox-launcher":"^0.1.7","karma-mocha":"^0.2.1","karma-phantomjs-launcher":"^0.2.1","mocha":"^2.3.4","phantomjs":"^1.9.19"},"engines":{"node":">= 0.10.0"},"gitHead":"53285aff2370602247883b4defb9de85c8cfb85e","_id":"object-hash@1.1.6","_shasum":"826fd161372e826bd124a85b7e67710d14146f65","_from":".","_npmVersion":"4.3.0","_nodeVersion":"8.0.0-pre","_npmUser":{"name":"addaleax","email":"anna@addaleax.net"},"dist":{"shasum":"826fd161372e826bd124a85b7e67710d14146f65","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-1.1.6.tgz","integrity":"sha512-KTZ/z5abHs89tjE4wVAwcQqD6EehFbFjSPkxmIXG8gox67Ki5r+HBc3viZhpFJnpMkkZyiXx66JeblmJgriMyw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGi0i1v+vRBdLWKqCFeiEiT7ur1XuiwqYbvr1x2OqMQ+AiEAk2A4GEB+HFigetTmWkCh3B2dxrn2/SDKeDapvWTWj2w="}]},"maintainers":[{"name":"addaleax","email":"anna@addaleax.net"},{"name":"puleos","email":"puleos@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/object-hash-1.1.6.tgz_1488310561260_0.3094455455429852"},"directories":{}},"1.1.7":{"name":"object-hash","version":"1.1.7","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^13.0.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^2.1.2","gulp-istanbul":"^0.10.3","gulp-jshint":"^2.0.0","gulp-mocha":"^2.2.0","gulp-rename":"^1.2.0","gulp-uglify":"^1.5.1","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^0.13.15","karma-chrome-launcher":"^0.2.2","karma-firefox-launcher":"^0.1.7","karma-mocha":"^0.2.1","karma-phantomjs-launcher":"^0.2.1","mocha":"^2.3.4","phantomjs":"^1.9.19"},"engines":{"node":">= 0.10.0"},"main":"./index.js","browser":"./dist/object_hash.js","gitHead":"e4061ba0abe0d6a54fc878867439c799f7f42b2c","_id":"object-hash@1.1.7","_shasum":"a8d83fdf5d4583a4e2e7ffc18e8915e08482ef52","_from":".","_npmVersion":"4.3.0","_nodeVersion":"8.0.0-pre","_npmUser":{"name":"addaleax","email":"anna@addaleax.net"},"dist":{"shasum":"a8d83fdf5d4583a4e2e7ffc18e8915e08482ef52","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-1.1.7.tgz","integrity":"sha512-lhv7ewCsplXdvMuyDArlMN5PspRMinJ7u6b5XpaIzCzkCARO67f150CFmOfzU161rEbBYo89DlyJu1safngyOw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC1t1tgfRNzk/RdfeVVC6YMZrMdalqi7DO8zF/J5KQ3+gIhAIler6LGkSP+O6oFS2VDXMksKgtgWvv3q3qKitq3C9kM"}]},"maintainers":[{"name":"addaleax","email":"anna@addaleax.net"},{"name":"puleos","email":"puleos@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/object-hash-1.1.7.tgz_1488479969175_0.6774615540634841"},"directories":{}},"1.1.8":{"name":"object-hash","version":"1.1.8","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^13.0.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^2.1.2","gulp-istanbul":"^0.10.3","gulp-jshint":"^2.0.0","gulp-mocha":"^2.2.0","gulp-rename":"^1.2.0","gulp-uglify":"^1.5.1","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^0.13.15","karma-chrome-launcher":"^0.2.2","karma-firefox-launcher":"^0.1.7","karma-mocha":"^0.2.1","karma-phantomjs-launcher":"^0.2.1","mocha":"^2.3.4","phantomjs":"^1.9.19"},"engines":{"node":">= 0.10.0"},"main":"./index.js","browser":"./dist/object_hash.js","gitHead":"469439a30fdd41e2f35f2a6aeddebb6a8d923f75","_id":"object-hash@1.1.8","_shasum":"28a659cf987d96a4dabe7860289f3b5326c4a03c","_from":".","_npmVersion":"4.4.0","_nodeVersion":"8.0.0-pre","_npmUser":{"name":"addaleax","email":"anna@addaleax.net"},"dist":{"shasum":"28a659cf987d96a4dabe7860289f3b5326c4a03c","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-1.1.8.tgz","integrity":"sha512-PEGXrjVupekJ/RMT7/vHKhjThBm1dUul3Fhk8TjEPqFmDPyfYURFL6W/gWcvz/yNHeOXosJnUGOm3M2/YfebXw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDDE5vmiFQboqPlA7+P5QYIJTkSTivm/ABAq8BA+QnLKAIhAOFqFMDJyUNpoJgR9Sl7mN3Z5Hva9ckeyXGew0fWQuxU"}]},"maintainers":[{"name":"addaleax","email":"anna@addaleax.net"},{"name":"puleos","email":"puleos@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/object-hash-1.1.8.tgz_1491750842080_0.8127299554180354"},"directories":{}},"1.2.0":{"name":"object-hash","version":"1.2.0","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^13.0.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^2.1.2","gulp-istanbul":"^0.10.3","gulp-jshint":"^2.0.0","gulp-mocha":"^2.2.0","gulp-rename":"^1.2.0","gulp-uglify":"^1.5.1","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^0.13.15","karma-chrome-launcher":"^0.2.2","karma-firefox-launcher":"^0.1.7","karma-mocha":"^0.2.1","karma-phantomjs-launcher":"^0.2.1","mocha":"^2.3.4","phantomjs":"^1.9.19"},"engines":{"node":">= 0.10.0"},"main":"./index.js","browser":"./dist/object_hash.js","gitHead":"e600f09ac0f0132f8472e3d9b92b2dcdfe1732bd","_id":"object-hash@1.2.0","_npmVersion":"5.3.0","_nodeVersion":"8.6.0","_npmUser":{"name":"addaleax","email":"anna@addaleax.net"},"dist":{"integrity":"sha512-smRWXzkvxw72VquyZ0wggySl7PFUtoDhvhpdwgESXxUrH7vVhhp9asfup1+rVLrhsl7L45Ee1Q/l5R2Ul4MwUg==","shasum":"e96af0e96981996a1d47f88ead8f74f1ebc4422b","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-1.2.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDCroWpJv8Ld8eWyFWkDj//6R1HYt/0f3H772WJo14O/wIgDxIeI0pVjaa0pdI5ci6VNoH1JkPPT+ggeRQ0Ueb27ks="}]},"maintainers":[{"name":"addaleax","email":"anna@addaleax.net"},{"name":"puleos","email":"puleos@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/object-hash-1.2.0.tgz_1507768204480_0.36773726250976324"},"directories":{}},"1.3.0":{"name":"object-hash","version":"1.3.0","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^13.0.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^2.1.2","gulp-istanbul":"^0.10.3","gulp-jshint":"^2.0.0","gulp-mocha":"^2.2.0","gulp-rename":"^1.2.0","gulp-uglify":"^1.5.1","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^0.13.15","karma-chrome-launcher":"^0.2.2","karma-firefox-launcher":"^0.1.7","karma-mocha":"^0.2.1","karma-phantomjs-launcher":"^0.2.1","mocha":"^2.3.4","phantomjs":"^1.9.19"},"engines":{"node":">= 0.10.0"},"main":"./index.js","browser":"./dist/object_hash.js","gitHead":"7813a497bfb53d9efa072ee7637c79ebaab4a296","_id":"object-hash@1.3.0","_npmVersion":"5.8.0-next.0","_nodeVersion":"10.0.0-pre","_npmUser":{"name":"addaleax","email":"anna@addaleax.net"},"dist":{"integrity":"sha512-05KzQ70lSeGSrZJQXE5wNDiTkBJDlUT/myi6RX9dVIvz7a7Qh4oH93BQdiPMn27nldYvVQCKMUaM83AfizZlsQ==","shasum":"76d9ba6ff113cf8efc0d996102851fe6723963e2","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-1.3.0.tgz","fileCount":19,"unpackedSize":317008,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCGyIDjyiYpaWghFURwgh25P97xTVCSFS9FYiaPw85tbwIhAOXcl5eTI7p+g8tvq4RrNJVKyfvdhKCuZtAwHXVeHyNw"}]},"maintainers":[{"name":"addaleax","email":"anna@addaleax.net"},{"name":"puleos","email":"puleos@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/object-hash_1.3.0_1521157973301_0.5969662069332622"},"_hasShrinkwrap":false},"1.3.1":{"name":"object-hash","version":"1.3.1","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^13.0.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^2.1.2","gulp-istanbul":"^0.10.3","gulp-jshint":"^2.0.0","gulp-mocha":"^2.2.0","gulp-rename":"^1.2.0","gulp-uglify":"^1.5.1","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^0.13.15","karma-chrome-launcher":"^0.2.2","karma-firefox-launcher":"^0.1.7","karma-mocha":"^0.2.1","karma-phantomjs-launcher":"^0.2.1","mocha":"^2.3.4","phantomjs":"^1.9.19"},"engines":{"node":">= 0.10.0"},"main":"./index.js","browser":"./dist/object_hash.js","gitHead":"3fa7790bd255396ee8979ff1a63542affcb37b0f","_id":"object-hash@1.3.1","_npmVersion":"6.4.1","_nodeVersion":"10.13.0","_npmUser":{"name":"addaleax","email":"anna@addaleax.net"},"dist":{"integrity":"sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA==","shasum":"fde452098a951cb145f039bb7d455449ddc126df","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-1.3.1.tgz","fileCount":19,"unpackedSize":317359,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb6c9GCRA9TVsSAnZWagAAQ8EP/0mUkSKOMNJBRVOnrhS6\nZ/AnmnmAt4+VMcfDSmwu8SNcrSkGOq38zM7FhwiZQZgcZ8N0havCrWe3A4u7\nWzIWv50pBiYkmRap90jOh/XHJBFw/ACXduVxcxKtxdQP5ULh5kxtQbvEtArD\nyu8bZfQoB6mM3xvwXVLmY9ttUpyRDv41YsTCExk6wjtwaMWwHgDfz/AGi6uR\nnLhDoYSUvoEZh1Ij7ZM3j2GEegj5ED/3yfnJ5b8IRKAySK6I3lVaebXk4y1T\nozwO/saiiYSfEoDgMnx8aQKTgKpDJUBAZ6qsXVM8wiKSW1hKNADOvfI6TzP5\nFz4FCdTzDU+iSNG0N99nKtEyVjL0dHo2r+xgXUPZQQAiEft/gKi9A/LgBlhF\nYL9KdqdYqzI/M+GrxD7J2J3n6ewGXYGYBrdkeggNHHjFSjnwT2B64Dr2LPk0\net6xgOh2E3lSDGlvYlP9W/O/w1Ra7cw581QNyHN04P80a8nHAvUVByx1XjBt\nCvyBnexWigSclvqA9ZWr5km1P2eQ1IpqKjteR6LT5NbbXqPg+XAPfBkvH5Z3\neZ2OCdHbtlTbdEajw0DxS45304QNd9vChdj4QoED+w7bOnC1FXL5CGNtMXPO\nOeOy+AI7vnzcTSb5pNb7MEIx4qHKEC+lNylGYkFTd2NG8ASWbVDAtP9Sey0Q\n6+6n\r\n=aXEw\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHXwhr+fq40WpRtjJpF530WXu+xh0HlsnPdYTw/xK+/zAiEA5gyBcHIWH0yfVZAsnGvxJK+5z7Gjer629foCX6lQXbI="}]},"maintainers":[{"name":"addaleax","email":"anna@addaleax.net"},{"name":"puleos","email":"puleos@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/object-hash_1.3.1_1542049605615_0.3664519624945668"},"_hasShrinkwrap":false},"2.0.0":{"name":"object-hash","version":"2.0.0","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^16.2.3","gulp":"^4.0.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^3.0.1","gulp-istanbul":"^1.1.3","gulp-jshint":"^2.0.0","gulp-mocha":"^5.0.0","gulp-rename":"^1.2.0","gulp-uglify":"^3.0.0","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^4.2.0","karma-chrome-launcher":"^2.2.0","karma-mocha":"^1.3.0","mocha":"^6.2.0"},"engines":{"node":">= 6"},"main":"./index.js","browser":"./dist/object_hash.js","gitHead":"03f0f7ff417398983293912712e3a8b868ad5b0e","_id":"object-hash@2.0.0","_nodeVersion":"13.0.0-pre","_npmVersion":"6.9.0-next.0","_npmUser":{"name":"addaleax","email":"anna@addaleax.net"},"dist":{"integrity":"sha512-I7zGBH0rDKwVGeGZpZoFaDhIwvJa3l1CZE+8VchylXbInNiCj7sxxea9P5dTM4ftKR5//nrqxrdeGSTWL2VpBA==","shasum":"7c4cc341eb8b53367312a7c546142f00c9e0ea20","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-2.0.0.tgz","fileCount":18,"unpackedSize":258750,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdm0DzCRA9TVsSAnZWagAAFuwP/R/nDaC7YOfckRaUN/L3\nhHIOep7awZJA42CD3Dim1bUQx7A7kMQH6GdRxn74cm8W6e572GHL5a2lgvZc\nHiL4KCAELwPxqXdtA9aSTZY6e00XqpGkMCQ+pHJ9diMQfr8az26/wrn51Iv8\n86F+LYEyNrfW2bdOFmZIeyKWD7OjOJuWvXlNTcfJBVV16fEke35/t3HzbE28\nwRXc3G4cook5t9bRx0VNBuN1qGnu6fNViW55DsmbVGPK52TY3wdva5vm7K+U\n2OJNvsybTkyaAEgaDQmNoRYXbHYkwkiYghloGAHZji+kNQMc2ikW4GDeKGxl\nJeFravJL9S8JW53Cn64wP6gyMUA7YhG31/8cde/Vri58v7Vz47XQKuCrl2zh\niyqnJFNYPRHzgReO7vkmtbqVnN66bwl1/g7dM++HLCq5n+/nfo/3GwyZz1aO\npJaypoRR3h6yEAowrQekTuIwWc7J7hgow6aWcAV2rAJSv5t0kOOYEpi1a6sv\nGOneMwYS6WSe67v5xP/57tTk6evDDWRV4MpRr4nxWalBv/GJZfOuE0TQFZ8W\nisvSGd+nOFayQPeriwrLmDO/ZIURakUBByplV1+Qx1OVJsyfQpa3d56zEkvW\nlbNNRP5eoZvu6b6STBz0Ytyv20hU4DoLhm7IZK2jFLAj8CrlLENv0il8pNBp\nsfKV\r\n=z9GB\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHlLjCH1RITOPC21+rdUHt9gzURj6mD1d8BwEANhLno/AiEAzx2ETW5fNjoVBeZB5oko9RbI9A2A7TXfZvZ5W7V4CnM="}]},"maintainers":[{"name":"addaleax","email":"anna@addaleax.net"},{"name":"puleos","email":"puleos@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/object-hash_2.0.0_1570455794756_0.9387405533589546"},"_hasShrinkwrap":false},"2.0.1":{"name":"object-hash","version":"2.0.1","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^16.2.3","gulp":"^4.0.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^3.0.1","gulp-istanbul":"^1.1.3","gulp-jshint":"^2.0.0","gulp-mocha":"^5.0.0","gulp-rename":"^1.2.0","gulp-replace":"^1.0.0","gulp-uglify":"^3.0.0","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^4.2.0","karma-chrome-launcher":"^2.2.0","karma-mocha":"^1.3.0","mocha":"^6.2.0"},"engines":{"node":">= 6"},"main":"./index.js","browser":"./dist/object_hash.js","gitHead":"1e0835cad7d273b521b8a3beee6c7cb8bd778bee","_id":"object-hash@2.0.1","_nodeVersion":"14.0.0-pre","_npmVersion":"6.13.0","_npmUser":{"name":"addaleax","email":"anna@addaleax.net"},"dist":{"integrity":"sha512-HgcGMooY4JC2PBt9sdUdJ6PMzpin+YtY3r/7wg0uTifP+HJWW8rammseSEHuyt0UeShI183UGssCJqm1bJR7QA==","shasum":"cef18a0c940cc60aa27965ecf49b782cbf101d96","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-2.0.1.tgz","fileCount":18,"unpackedSize":258888,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd4vWrCRA9TVsSAnZWagAAPCoP/1rq9JVyjQeiCQ/nf7XD\niuI5Q7zU/F/87wtg4y4r7G/HRa8SOamTs4H10dxnHZgwLOAh5WeAo62c7ndV\nz4COt/+RaWFj5x0wC0rnfmUVEmQXOrNbwSaLrCAnLCaGAkV1lguc6QMrpORA\nx88W3F4ZN+LUEsQK8z4SuSATCyNxjBj4jx+yFf0VrhhCuoq/xuIy1pOlq4Qc\nT3Dg7LIV/7YiDpeGOnFecwM5IeojFO3dyTnffr2ZLpuWemCXNPTe4sH7jezy\n4/YXMcYba3RLyI/EWnUFt7bQ7IgxUgAx5hoT0vkDnsneGE/BsKy6btQJsJoQ\nZy1/fgF1A93MU5LMTfF2KpepyN5VT1lhsBFRZ7KfNqec4cYYDEZrwGiAa4HH\nataB8RttCidGezkI998zL0jwzUURqa+BFJWfxCyy0pE45ZwbVhzONPruQ7E+\n65uIX9MMXCRfCCKssjMzQKpKkG2X5UdH3rNJ9U4wDKgNJOwS1fc7DCSCQXr0\ncvo1CS1Q0SG18Me3pqlRWi2j7kimW4rKv3f4uREPGxvxHodCiE6KZFHUuG4O\ngPvKlYIwqFNFPeWlwkj0/hKvib8oRmvoLxZxw0jMIeRhBQy5vInMm7//c57o\nRs7j/4E1sHucA5QUfcYPaumtlBleFmcTuhuQPSSRPtVTY4xfE01ZiASRWmCH\nfOGI\r\n=9Luu\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD6U/MuElL5YqZZ3jkjPcGmri7IZX05OVQRIkOtF0AX4wIhAJpVmukAznS1n0JgPHl+BYPDPuqNtn1Ok2RE8AjPTNdX"}]},"maintainers":[{"name":"addaleax","email":"anna@addaleax.net"},{"name":"puleos","email":"puleos@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/object-hash_2.0.1_1575155115288_0.326411029135119"},"_hasShrinkwrap":false},"2.0.2":{"name":"object-hash","version":"2.0.2","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^16.2.3","gulp":"^4.0.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^3.0.1","gulp-istanbul":"^1.1.3","gulp-jshint":"^2.0.0","gulp-mocha":"^5.0.0","gulp-rename":"^1.2.0","gulp-replace":"^1.0.0","gulp-uglify":"^3.0.0","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^4.2.0","karma-chrome-launcher":"^2.2.0","karma-mocha":"^1.3.0","mocha":"^6.2.0"},"engines":{"node":">= 6"},"main":"./index.js","browser":"./dist/object_hash.js","gitHead":"e090f7e04fd9d5361a32295417c4f6e1ae9ef5a4","_id":"object-hash@2.0.2","_npmVersion":"6.4.1","_nodeVersion":"8.16.1","_npmUser":{"name":"addaleax","email":"anna@addaleax.net"},"dist":{"integrity":"sha512-b+2AKjAf6uQlxxv8ChHdM+VT4eeX+ZSwv+pk2xIXZWbo+yxn4/En1iC+GHe/OFYa9on0AhFF2PvuAcFHoiiHaA==","shasum":"f7b2212dbe07d07e340ccd6004c59504fc4015cf","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-2.0.2.tgz","fileCount":18,"unpackedSize":259842,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeQbQJCRA9TVsSAnZWagAAm0AP/0iGdea3HAMMuXys/7/Z\niIxGrIr9lFeQguef75vfpfV5MzHDluHDDdvmgVSGv+M+DLQ/4CJCT1fOYJ/4\nd6KVy0f/Wym3i2dtNC10WrNTXqVdkaU0MA7ZKAS4Mq6S2G+Yp3WbQMic9WvF\nBT7qU9BEMFvOCv9QtwlvtGjGo5llJnbvVMZCeh9jzb8nyuo50hxX2QrysqIk\nncwM3wfvkBV1eYAwvNG8FskuUC8nb9AE5cUd/1EI1WHUihr76o/ob6du/m9h\nntbhCiM10mCaie2Re/K1nI656kNNz8UMMo3Jr2TjvMCcABumjj3rgo6zdlXP\ndjN2k4idMrSpIcafKNXWInxeeLfVO2GrgT1MI66sq7sEhZNHx3mbxkURHQpo\nbThEuQLgnxJhJye7ShcML3j0oVapb+74KZjnH0qXDYfhVeG5LP1001B6zvXc\n4QhMOP7uARvw/b+GtZc5l5uoB/E+wai26HX5cnV3OoigJuX2ywsjwpZvjSv9\nhQB8GVRgKyV4tWDk3lo2EnuSe2zGpxcrAV6S0DVpcIFlrHVaRYydtVtPlQul\nUlPK4JqjELrk0bH5ZjS4futeKvO9ZGCLbNjAbdIgKGSi+AK1vfUlVtBzEkfr\ny2PmnIGaPsXpV4CWvCRupxYzZ9V6EgJ6kwyLo2qn98Ld+O9fhyeWfHQQMuW1\nv4NP\r\n=JLW1\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQChOS2rR1MkVotvPhmymMLT3XL63q/6xux1FSWc6YtcSgIhAIaFdRJ5PGponm/69k4EKUnxQz41KpE13dE50YohWH5v"}]},"maintainers":[{"name":"addaleax","email":"anna@addaleax.net"},{"name":"puleos","email":"puleos@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/object-hash_2.0.2_1581364233273_0.8618953652104877"},"_hasShrinkwrap":false},"2.0.3":{"name":"object-hash","version":"2.0.3","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^16.2.3","gulp":"^4.0.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^3.0.1","gulp-istanbul":"^1.1.3","gulp-jshint":"^2.0.0","gulp-mocha":"^5.0.0","gulp-rename":"^1.2.0","gulp-replace":"^1.0.0","gulp-uglify":"^3.0.0","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^4.2.0","karma-chrome-launcher":"^2.2.0","karma-mocha":"^1.3.0","mocha":"^6.2.0"},"engines":{"node":">= 6"},"main":"./index.js","browser":"./dist/object_hash.js","gitHead":"7a410c7c3aadf387bfa08d919f6bb9faa565e8fe","_id":"object-hash@2.0.3","_nodeVersion":"14.0.0-pre","_npmVersion":"6.13.7","dist":{"integrity":"sha512-JPKn0GMu+Fa3zt3Bmr66JhokJU5BaNBIh4ZeTlaCBzrBsOeXzwcKKAK1tbLiPKgvwmPXsDvvLHoWh5Bm7ofIYg==","shasum":"d12db044e03cd2ca3d77c0570d87225b02e1e6ea","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-2.0.3.tgz","fileCount":5,"unpackedSize":58661,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeSwa5CRA9TVsSAnZWagAADxgP/1dtIuz+8ZqbSFRUrrre\nuGON1rUpjU61VL9ebkD4Yx3Fm6RQMSEw2OMiaw4KVgAM5MxUxQMHhQg+rVy4\nV5iNmBP64y6V9XOvhtnSdhXSlbWlSOMkFi1cEdAm7Qet5DYi8uGI7xveXrBr\npRfS8dRZdI773Gsr21Il1uTmYM69qCTGAU1AcR2aatsAg7Y3jwcNl05dmD4Z\nD9dchY+olomlnNM3FCJvPs5jRsNFIokveYxptlmeqQOKoh1OcvH0f2X5F0UJ\ncl46tAYx+vZm/zR8ET39tLwwHsX/Gul3p78zcOQEeVTRRXwDERNY3IlN7ihb\nGfHh+bTP4XiyeeCF140ywcBDRkRtyfHK2+sktC6PWNm/ggMMgAZhORkDJohk\nWnxuY24uq9SLkXHNW7K8S7vCw1bQLpPkzIeTLQY6HBNxsTuLnHBv7dMoEVLa\nAlN5CjWQgCHsr0hFmsQAymG3bjltGs17e067hBuJ1Fk88ByRSlQzfNUt1U0q\nctX/CSbCaQg0HnWFKh5My/Zw37FoJCWbbjrjXE3ebSpKuEamg0/ekZlzMOmL\njRIIebhh8RiOIPKvbHnk7UZYWTQmIOxYjgmqh0PvxTELWSQcFodTK7hsyMC1\n/790s5JdOHRit9F0CYPnGhehzu13XrMe2zaBB+dVIUPw+hAZj+V3+yRTASiN\nGghD\r\n=WLDD\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDLyl/VKHb0GPwSXqtmvx93aA8IglPPvAMfo5z3r23gegIgGS24VsPvjXXyKHVRMFvSsLUbFi+1Rh1QppsF26y43dU="}]},"maintainers":[{"name":"addaleax","email":"anna@addaleax.net"},{"name":"puleos","email":"puleos@gmail.com"}],"_npmUser":{"name":"addaleax","email":"anna@addaleax.net"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/object-hash_2.0.3_1581975225063_0.6729135052610222"},"_hasShrinkwrap":false},"2.1.0":{"name":"object-hash","version":"2.1.0","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^16.2.3","gulp":"^4.0.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^3.0.1","gulp-istanbul":"^1.1.3","gulp-jshint":"^2.0.0","gulp-mocha":"^5.0.0","gulp-rename":"^1.2.0","gulp-replace":"^1.0.0","gulp-uglify":"^3.0.0","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^4.2.0","karma-chrome-launcher":"^2.2.0","karma-mocha":"^1.3.0","mocha":"^6.2.0"},"engines":{"node":">= 6"},"main":"./index.js","browser":"./dist/object_hash.js","gitHead":"f61b9a5d584158abc3e31c29d2b1fa3d74772677","_id":"object-hash@2.1.0","_nodeVersion":"16.0.0-pre","_npmVersion":"7.3.0","dist":{"integrity":"sha512-Q7aaYco6F+fQe/hgugbM+Qi3eBCiSo/zhxvJNX2lQSwe+e4BS6cCF9G+qWCV3Sbjm+gcdoVad9Z/jEus5C+JxA==","shasum":"73df6ebeaa8086e43f65ae20452c1ce4adfcf170","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-2.1.0.tgz","fileCount":5,"unpackedSize":58800,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf5jaUCRA9TVsSAnZWagAARYQP/jnUbasvzzFD6I8VHgbF\nHyHVPcfibe5IbL1JJVAv6AwZdKrkCGIwxE3Lqs9yZcvwsfXFdpTPCDCs0CGp\nezskkNTvlKgwY3UY77KVuHoMAZDQB673fwDmeycN0RTfoVDHtiCAvXj+/Bsi\niHvS63QJ0O7urtKRQZd1Ppfb6T5uCUt5K75ADDgBuMcWY9Np2tHu6fzfPzCM\nMw2LrSaM9EgGg1dT/oy/n9ojjdTceLnTfuqP1WGPi8QWu/rOliKyt1AeNTEG\ndTIVdb4mv/CKErXQK2Xqj4mIKMAa/aX5ZxP3LkXfgra9uXYvhqvE8xfXvBAh\nlWgEmvK7ZgexrJ8+UCiicj0m5UenQ80t4xs3Snk1kZd8rZEGpmeOw8MnAhhh\nosUfUgydr9jDmMAK0Q8W8yDL3hk/nbOo158xuQdi32AwUMO35y0v01Xs4pkN\n+NU9rYUXf3sCoYxRZ4gp3txVQGW/d8jbUYYdCywA7d+hqTSgaIzsY3Wcdyoy\nGA5xYJGL7QCodttFcpmXfukBad9NBDCfuZzNHZNE6dGi/2NVY2rT8+ZF9Xq4\nbLVPGFrIrbq2So5bxTpAbMNUmm/4U+oYuweHiNp3cVY3Q+jr5rLHz68a6ZSy\nFmFOkCDxksJmdYOa4GgnKNbc6P58x8Ng9bMvYys6TPNuCjUtCJPy5l2ZAHna\nZNbV\r\n=jq5S\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD4gUDTRWKGSMT2kCE8BYAgo++BMigCY4SkySpAPQaVtgIhAOs8hqgGDCxopTY1kP1BR+NAJcbQtRXljKt+YCd+xUQ1"}]},"_npmUser":{"name":"addaleax","email":"anna@addaleax.net"},"directories":{},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"},{"name":"addaleax","email":"anna@addaleax.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/object-hash_2.1.0_1608922771967_0.021420992382469972"},"_hasShrinkwrap":false},"2.1.1":{"name":"object-hash","version":"2.1.1","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^16.2.3","gulp":"^4.0.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^3.0.1","gulp-istanbul":"^1.1.3","gulp-jshint":"^2.0.0","gulp-mocha":"^5.0.0","gulp-rename":"^1.2.0","gulp-replace":"^1.0.0","gulp-uglify":"^3.0.0","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^4.2.0","karma-chrome-launcher":"^2.2.0","karma-mocha":"^1.3.0","mocha":"^6.2.0"},"engines":{"node":">= 6"},"main":"./index.js","browser":"./dist/object_hash.js","gitHead":"f61b9a5d584158abc3e31c29d2b1fa3d74772677","_id":"object-hash@2.1.1","_nodeVersion":"16.0.0-pre","_npmVersion":"7.3.0","dist":{"integrity":"sha512-VOJmgmS+7wvXf8CjbQmimtCnEx3IAoLxI3fp2fbWehxrWBcAQFbk+vcwb6vzR0VZv/eNCJ/27j151ZTwqW/JeQ==","shasum":"9447d0279b4fcf80cff3259bf66a1dc73afabe09","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-2.1.1.tgz","fileCount":5,"unpackedSize":58747,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf5jbWCRA9TVsSAnZWagAAfc4P/RIqoctcSGKMGHQxVg6r\nYB7po/819ky3AF6xMpgZ2jJ7Lf6mkQ3/EunW+n8J/oc/uROwl0LOULvAZgIj\nJTudsgqK+sjYXaiO+C0pRD093McjgAPUsQ30kX6qk9lSglXrF4OzckUAuG6O\nJ2Tqut7INMtqVVhngQpcqi5nxxvscJbJdH9vqgo6rU21r1+urvf4N5/HUc9i\n2D9TFaS35f8BI4CDAKzknIAyo5hhIeBHoNVFTToI/a3tcqCpC11ovAKkXI29\nrkU+NPOHQr1jNGFnVNCTg/B9Xk8CFhlqoQVd3unDUvPRTrK3HBdMtnTaQdDo\nWMt0nb4o1yxd1Gfq9MqjMJt6B8utjr3K2IC/O4bPEfafTX7DHNMgFW/d0r+E\nte75TAHBJowcGHVGZylme5/dsDAu5RH4Rm4z8WQyZs/DlMKaxdEbWEO5AJgo\nxeBShAyjZp4FjrePIA/U1/5zP0v69AoCAWzk0RyM+HDPsyx26HR+dYdY03EN\njabWDfXGBh476cOjbYSIjs423DX3bj43InvZ8y1IZN2XgYUPHsmKSfSpItfc\nQQ1ru6UcLxtDizL9dFsQexcC6FOsNJXYUnzm22CM8lYfNB/ebsNiYEqYOT8U\nebV+21O2BUrPEeEp8DAg/NjX2LE6m2wdSNif64bDQE28DG37Jjq4ssW+GivV\n9RfT\r\n=trbg\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBWW3Z5IXf8DkEVENygaQvJi2iV2ouLFk1r4P9JdLo2aAiEAwtS8xgMin6T+iavDHEEIPgXjSzGh3CNzdpWvQmcSscE="}]},"_npmUser":{"name":"addaleax","email":"anna@addaleax.net"},"directories":{},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"},{"name":"addaleax","email":"anna@addaleax.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/object-hash_2.1.1_1608922837701_0.615626317274047"},"_hasShrinkwrap":false},"2.2.0":{"name":"object-hash","version":"2.2.0","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^16.2.3","gulp":"^4.0.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^3.0.1","gulp-istanbul":"^1.1.3","gulp-jshint":"^2.0.0","gulp-mocha":"^5.0.0","gulp-rename":"^1.2.0","gulp-replace":"^1.0.0","gulp-uglify":"^3.0.0","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^4.2.0","karma-chrome-launcher":"^2.2.0","karma-mocha":"^1.3.0","mocha":"^6.2.0"},"engines":{"node":">= 6"},"main":"./index.js","browser":"./dist/object_hash.js","gitHead":"f5fa94c47c1cbcc96987772b32427297512cbd3f","_id":"object-hash@2.2.0","_nodeVersion":"14.17.0","_npmVersion":"6.14.13","dist":{"integrity":"sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==","shasum":"5ad518581eefc443bd763472b8ff2e9c2c0d54a5","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz","fileCount":5,"unpackedSize":59029,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgrgs1CRA9TVsSAnZWagAAu34P/1lrdI0uaK+f6lXoUR9e\nXoHkoz1MYo525RCGejIk1kX1GLF1G+3M9ioySGSn+Kzj7jXKBnyJb+uqFrAt\ns54Yz2HouhRmEzg4agFxDRiQ9GtmiQAN6zaduaqMZE4dkS+yIpTzYs11kNre\nLgGDI+j/v9iqQo4Ta1Uxq/p3Od5oTR7Edko4119i1+wN+UJN2Gs+5IbAwU3c\nOSwdM8PFGhRNDbYlBUTvktKhUQlzii8C+FHLBFmy/hx8dE7TqedJoMZzJYJT\nS0nJIY3qcCLM8IS6ddD/3aWdOV3oLjoHJj4ITFzvCfiIg/zwf09BeXNVBk9S\nTw74NVBoQAR7LxlQuFDYl+l7LL6DnMeLpY0aoByMkJ0aajf+/az8sIbewjHy\ndn5Jb91fmgtNBF0uz1zNIgUok2jZn14R+uJB4zqLmtB9CqJG+QmWTRaBWyvI\n3cUk8Ul98Hi05Sw2vgRTUcnLrQrVUxmbJbOR0IxbbHxOM4SeXXIihE8jQmnT\nqyS5ug1ExjhjZaYF8tMkmJa4/qd6Be1a4J4OybM5qGRjaRxUsiYaVA5s7kAS\nAnkv81ZEvovBpdbLoHmlvtTjlHL3C5+n5w3bo7VXLe2sDJGUgsfHfu/GADTk\nPV7zJhrXn8qVqAYYhrmDTX7oszKWVVXq3gkMJgrioJVEViPFPcs0DOA/69+2\n1chg\r\n=j7n/\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDaYfDA5Z7aWUEZEZlvhn8TZfuqP3ldmmFJ6RLBR+5sNAiEAxAYZcndyryGjW/ZR1vM07XzQKdfYytnOPFSsZxvvH90="}]},"_npmUser":{"name":"addaleax","email":"anna@addaleax.net"},"directories":{},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"},{"name":"addaleax","email":"anna@addaleax.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/object-hash_2.2.0_1622018868490_0.7767982220126814"},"_hasShrinkwrap":false},"3.0.0":{"name":"object-hash","version":"3.0.0","description":"Generate hashes from javascript objects in node and the browser.","homepage":"https://github.com/puleos/object-hash","repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"keywords":["object","hash","sha1","md5"],"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"scripts":{"test":"node ./node_modules/.bin/mocha test","prepublish":"gulp dist"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"license":"MIT","devDependencies":{"browserify":"^16.2.3","gulp":"^4.0.0","gulp-browserify":"^0.5.1","gulp-coveralls":"^0.1.4","gulp-exec":"^3.0.1","gulp-istanbul":"^1.1.3","gulp-jshint":"^2.0.0","gulp-mocha":"^5.0.0","gulp-rename":"^1.2.0","gulp-replace":"^1.0.0","gulp-uglify":"^3.0.0","jshint":"^2.8.0","jshint-stylish":"^2.1.0","karma":"^4.2.0","karma-chrome-launcher":"^2.2.0","karma-mocha":"^1.3.0","mocha":"^6.2.0"},"engines":{"node":">= 6"},"main":"./index.js","browser":"./dist/object_hash.js","gitHead":"04db18b253f62d9ef88203b64560693b33812868","_id":"object-hash@3.0.0","_nodeVersion":"14.18.0","_npmVersion":"6.14.15","dist":{"integrity":"sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==","shasum":"73f97f753e7baffc0e2cc9d6e079079744ac82e9","tarball":"https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz","fileCount":5,"unpackedSize":58857,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiD7b3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpZjA//eKp9yFXFgYbfrt/wtzPI5MBatg8X3Fjo9oqOmH9wsDSrS+jd\r\nj5MJ+P7FxitPebYfxwdUjVkc5R0D7Mr7Z/gNAaTKED892o5tGy0bJy1PYJP9\r\nQkPlj4pfCN1fBZCDx28xP5xEmnnLCyDkP4xO6fga7eKSpuO2bhVGN65vsNdR\r\npu1kuxruwvgnNSdxffu/BJI0tek/36iok7Lvy+dTNipmhSFk/6WWoEAjaXcj\r\nYBHtGN4UK6ejoZKNwy5ZgI9lULgPwyvB6hZc8sjd5uwGo96Qz1opymatIhRz\r\nyL8RkjUBPdZcZnYelwG4VsdxsU6Sli8xGwgy2CehT3zdWCkdz/pdlLv5lEk0\r\n9lg1mSCCQ6byht5tz5jfguN3m09SiJbrKk6hhbAtwLR0gx4CiX5mHbQP3Yns\r\n6LB38Qjq983gSdt1y6KFLfSdUOH00jEDERvfqiP4uAGfQz5t0Cozn6UXCEOu\r\nOhZoU6SFbvY5jcV7vi1m3bt4ht+kyLHZUlw9OtyqmcTyagE2WksECMsrP7le\r\ncrHDfLxB+EBGRCGwXlnUROx3tlzKDoOuTMhMTu4kSt8ygGDZwO9CCgUv3Onm\r\nHYG7vbIhRHb9tIErGadxGECeTl0LuQaU3CutCvNWh5XvXyBj/fXdgvS4zMIN\r\nufVWH0iDMbw4i7U7LnlK9tr69x4QpkwqKRs=\r\n=W4kp\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHRuRfqrvXiyuj9TrTAVvaHHkwv8l+TO4tbMaZVLOwK/AiEAy69Lt+jzDvHaGPIHfOo1QhUxYYeuaeza1enxVSTmqd0="}]},"_npmUser":{"name":"addaleax","email":"anna@addaleax.net"},"directories":{},"maintainers":[{"name":"puleos","email":"puleos@gmail.com"},{"name":"addaleax","email":"anna@addaleax.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/object-hash_3.0.0_1645197046894_0.44201253010542785"},"_hasShrinkwrap":false}},"readme":"# object-hash\n\nGenerate hashes from objects and values in node and the browser. Uses node.js\ncrypto module for hashing. Supports SHA1 and many others (depending on the platform)\nas well as custom streams (e.g. CRC32).\n\n[](https://www.npmjs.com/package/object-hash)\n\n[](https://secure.travis-ci.org/puleos/object-hash?branch=master)\n[](https://coveralls.io/github/puleos/object-hash?branch=master)\n\n* Hash values of any type.\n* Supports a keys only option for grouping similar objects with different values.\n\n```js\nvar hash = require('object-hash');\n\nhash({foo: 'bar'}) // => '67b69634f9880a282c14a0f0cb7ba20cf5d677e9'\nhash([1, 2, 2.718, 3.14159]) // => '136b9b88375971dff9f1af09d7356e3e04281951'\n```\n\n## Versioning Disclaimer\n\nStarting with version `1.1.8` (released April 2017), new versions will consider\nthe exact returned hash part of the API contract, i.e. changes that will affect\nhash values will be considered `semver-major`. Previous versions may violate\nthat expectation.\n\nFor more information, see [this discussion](https://github.com/puleos/object-hash/issues/30).\n\n## hash(value, options)\n\nGenerate a hash from any object or type. Defaults to sha1 with hex encoding.\n\n* `algorithm` hash algo to be used: 'sha1', 'md5', 'passthrough'. default: sha1\n * This supports the algorithms returned by `crypto.getHashes()`. Note that the default of SHA-1 is not considered secure, and a stronger algorithm should be used if a cryptographical hash is desired.\n * This also supports the `passthrough` algorith, which will return the information that would otherwise have been hashed.\n* `excludeValues` {true|false} hash object keys, values ignored. default: false\n* `encoding` hash encoding, supports 'buffer', 'hex', 'binary', 'base64'. default: hex\n* `ignoreUnknown` {true|*false} ignore unknown object types. default: false\n* `replacer` optional function that replaces values before hashing. default: accept all values\n* `respectFunctionProperties` {true|false} Whether properties on functions are considered when hashing. default: true\n* `respectFunctionNames` {true|false} consider `name` property of functions for hashing. default: true\n* `respectType` {true|false} Whether special type attributes (`.prototype`, `.__proto__`, `.constructor`)\n are hashed. default: true\n* `unorderedArrays` {true|false} Sort all arrays before hashing. Note that this affects *all* collections,\n i.e. including typed arrays, Sets, Maps, etc. default: false\n* `unorderedSets` {true|false} Sort `Set` and `Map` instances before hashing, i.e. make\n `hash(new Set([1, 2])) == hash(new Set([2, 1]))` return `true`. default: true\n* `unorderedObjects` {true|false} Sort objects before hashing, i.e. make `hash({ x: 1, y: 2 }) === hash({ y: 2, x: 1 })`. default: true\n* `excludeKeys` optional function for excluding specific key(s) from hashing, if true is returned then exclude from hash. default: include all keys\n\n## hash.sha1(value)\n\nHash using the sha1 algorithm.\n\nNote that SHA-1 is not considered secure, and a stronger algorithm should be used if a cryptographical hash is desired.\n\n*Sugar method, equivalent to* `hash(value, {algorithm: 'sha1'})`\n\n## hash.keys(value)\n\nHash object keys using the sha1 algorithm, values ignored.\n\n*Sugar method, equivalent to* `hash(value, {excludeValues: true})`\n\n## hash.MD5(value)\n\nHash using the md5 algorithm.\n\nNote that the MD5 algorithm is not considered secure, and a stronger algorithm should be used if a cryptographical hash is desired.\n\n*Sugar method, equivalent to* `hash(value, {algorithm: 'md5'})`\n\n## hash.keysMD5(value)\n\nHash object keys using the md5 algorithm, values ignored.\n\nNote that the MD5 algorithm is not considered secure, and a stronger algorithm should be used if a cryptographical hash is desired.\n\n*Sugar method, equivalent to* `hash(value, {algorithm: 'md5', excludeValues: true})`\n\n## hash.writeToStream(value, [options,] stream)\n\nWrite the information that would otherwise have been hashed to a stream, e.g.:\n\n```js\nhash.writeToStream({foo: 'bar', a: 42}, {respectType: false}, process.stdout)\n// => e.g. 'object:a:number:42foo:string:bar'\n```\n\n## Installation\n\nnode:\n\n```js\nnpm install object-hash\n```\n\nbrowser: */dist/object_hash.js*\n\n```html\n\n\n\n```\n\n## Example usage\n\n```js\nvar hash = require('object-hash');\n\nvar peter = { name: 'Peter', stapler: false, friends: ['Joanna', 'Michael', 'Samir'] };\nvar michael = { name: 'Michael', stapler: false, friends: ['Peter', 'Samir'] };\nvar bob = { name: 'Bob', stapler: true, friends: [] };\n\n/***\n * sha1 hex encoding (default)\n */\nhash(peter);\n// 14fa461bf4b98155e82adc86532938553b4d33a9\nhash(michael);\n// 4b2b30e27699979ce46714253bc2213010db039c\nhash(bob);\n// 38d96106bc8ef3d8bd369b99bb6972702c9826d5\n\n/***\n * hash object keys, values ignored\n */\nhash(peter, { excludeValues: true });\n// 48f370a772c7496f6c9d2e6d92e920c87dd00a5c\nhash(michael, { excludeValues: true });\n// 48f370a772c7496f6c9d2e6d92e920c87dd00a5c\nhash.keys(bob);\n// 48f370a772c7496f6c9d2e6d92e920c87dd00a5c\n\n/***\n * hash object, ignore specific key(s)\n */\nhash(peter, { excludeKeys: function(key) {\n if ( key === 'friends') {\n return true;\n }\n return false;\n }\n});\n// 66b7d7e64871aa9fda1bdc8e88a28df797648d80\n\n/***\n * md5 base64 encoding\n */\nhash(peter, { algorithm: 'md5', encoding: 'base64' });\n// 6rkWaaDiG3NynWw4svGH7g==\nhash(michael, { algorithm: 'md5', encoding: 'base64' });\n// djXaWpuWVJeOF8Sb6SFFNg==\nhash(bob, { algorithm: 'md5', encoding: 'base64' });\n// lFzkw/IJ8/12jZI0rQeS3w==\n```\n\n## Legacy Browser Support\n\nIE <= 8 and Opera <= 11 support dropped in version 0.3.0. If you require\nlegacy browser support you must either use an ES5 shim or use version 0.2.5\nof this module.\n\n## Development\n\n```sh-session\ngit clone https://github.com/puleos/object-hash\n```\n\n## Node Docker Wrapper\n\nIf you want to stand this up in a docker container, you should take at look\nat the [](https://github.com/bean5/node-object-hash) project.\n\n### gulp tasks\n\n* `gulp watch` (default) watch files, test and lint on change/add\n* `gulp test` unit tests\n* `gulp karma` browser unit tests\n* `gulp lint` jshint\n* `gulp dist` create browser version in /dist\n\n## License\n\nMIT\n\n## Changelog\n\n### v2.0.0\n\nOnly Node.js versions `>= 6.0.0` are being tested in CI now.\nNo other breaking changes were introduced.\n","maintainers":[{"name":"puleos","email":"puleos@gmail.com"},{"name":"addaleax","email":"anna@addaleax.net"}],"time":{"modified":"2023-01-14T04:36:54.132Z","created":"2014-03-07T16:46:45.130Z","0.0.2":"2014-03-07T16:46:45.130Z","0.0.3":"2014-03-07T17:43:09.259Z","0.0.4":"2014-03-07T19:48:49.499Z","0.0.5":"2014-03-07T23:48:46.837Z","0.1.0":"2014-03-15T14:50:35.644Z","0.1.1":"2014-03-15T15:47:18.536Z","0.1.2":"2014-03-15T16:07:22.632Z","0.2.0":"2014-03-16T00:18:37.258Z","0.2.1":"2014-03-16T17:01:15.343Z","0.2.2":"2014-03-18T20:19:41.519Z","0.2.3":"2014-03-20T19:16:08.730Z","0.2.4":"2014-04-07T18:55:48.631Z","0.2.5":"2014-04-07T19:02:05.885Z","0.3.0":"2014-04-08T15:04:46.973Z","0.4.0":"2014-12-16T21:30:33.463Z","0.5.0":"2015-01-28T01:07:22.718Z","0.6.0":"2015-05-04T19:12:18.209Z","0.6.1":"2015-05-04T19:17:34.787Z","0.7.0":"2015-05-04T19:20:06.345Z","0.8.0":"2015-05-06T21:25:53.440Z","0.9.0":"2015-08-26T12:03:46.886Z","0.9.1":"2015-08-27T19:40:21.145Z","0.9.2":"2015-10-17T22:05:25.978Z","0.9.3":"2015-12-10T06:31:12.515Z","0.9.4":"2015-12-20T12:32:13.601Z","0.9.5":"2015-12-21T23:26:02.711Z","1.0.0":"2015-12-25T23:31:45.460Z","1.1.0":"2016-01-10T00:15:32.418Z","1.1.1":"2016-02-15T12:29:30.624Z","1.1.2":"2016-02-15T15:30:58.542Z","1.1.3":"2016-07-11T19:20:25.862Z","1.1.4":"2016-08-01T16:41:40.136Z","1.1.5":"2016-11-06T17:13:59.570Z","1.1.6":"2017-02-28T19:36:01.885Z","1.1.7":"2017-03-02T18:39:31.271Z","1.1.8":"2017-04-09T15:14:02.974Z","1.2.0":"2017-10-12T00:30:05.695Z","1.3.0":"2018-03-15T23:52:53.348Z","1.3.1":"2018-11-12T19:06:45.792Z","2.0.0":"2019-10-07T13:43:14.913Z","2.0.1":"2019-11-30T23:05:15.627Z","2.0.2":"2020-02-10T19:50:33.395Z","2.0.3":"2020-02-17T21:33:45.170Z","2.1.0":"2020-12-25T18:59:32.151Z","2.1.1":"2020-12-25T19:00:37.860Z","2.2.0":"2021-05-26T08:47:48.685Z","3.0.0":"2022-02-18T15:10:47.040Z"},"homepage":"https://github.com/puleos/object-hash","keywords":["object","hash","sha1","md5"],"repository":{"type":"git","url":"git+https://github.com/puleos/object-hash.git"},"author":{"name":"Scott Puleo","email":"puleos@gmail.com"},"bugs":{"url":"https://github.com/puleos/object-hash/issues"},"license":"MIT","readmeFilename":"readme.markdown","users":{"diegoperini":true,"pavel.zubkou":true,"hugojosefson":true,"deniscarriere":true,"cmp-cc":true,"djmax":true,"antixrist":true,"sejoker":true,"arielfr":true,"steel1990":true,"artmsilva":true,"shaomingquan":true,"scott.m.sarsfield":true,"mikeyddvl":true,"nogirev":true,"chenzhuoqi":true,"reinerba":true,"martinandersen3d":true,"level9i":true,"monkeymonk":true,"robixxu":true,"ksyrytczyk":true,"acatl":true,"zuojiang":true,"johniexu":true,"jochemstoel":true,"ruyadorno":true}}
\ No newline at end of file
diff --git a/.npm-cache/_cacache/content-v2/sha512/25/4d/ed7874cd8e6136542185cee63c117cc20d5c04a81d9af1fb08bf0692b4784058911e55dd68d500fcd0253af997445d748b6d2b2e2f0263902056a9141454 b/.npm-cache/_cacache/content-v2/sha512/25/4d/ed7874cd8e6136542185cee63c117cc20d5c04a81d9af1fb08bf0692b4784058911e55dd68d500fcd0253af997445d748b6d2b2e2f0263902056a9141454
deleted file mode 100644
index 33143b7..0000000
Binary files a/.npm-cache/_cacache/content-v2/sha512/25/4d/ed7874cd8e6136542185cee63c117cc20d5c04a81d9af1fb08bf0692b4784058911e55dd68d500fcd0253af997445d748b6d2b2e2f0263902056a9141454 and /dev/null differ
diff --git a/.npm-cache/_cacache/content-v2/sha512/28/71/fc4add904b6a87bb4ab33a54c20281e52dd944236c2275c4a925bd5d01862cd8f78635ce416e8d8454012d6736df65c343b2accbbd366dd1c858911ead28 b/.npm-cache/_cacache/content-v2/sha512/28/71/fc4add904b6a87bb4ab33a54c20281e52dd944236c2275c4a925bd5d01862cd8f78635ce416e8d8454012d6736df65c343b2accbbd366dd1c858911ead28
deleted file mode 100644
index fea6c03..0000000
--- a/.npm-cache/_cacache/content-v2/sha512/28/71/fc4add904b6a87bb4ab33a54c20281e52dd944236c2275c4a925bd5d01862cd8f78635ce416e8d8454012d6736df65c343b2accbbd366dd1c858911ead28
+++ /dev/null
@@ -1 +0,0 @@
-{"_id":"function-bind","_rev":"21-9aa01cf26f7dbb16477c93bbb7628ab7","name":"function-bind","description":"Implementation of Function.prototype.bind","dist-tags":{"latest":"1.1.2"},"versions":{"0.1.0":{"name":"function-bind","version":"0.1.0","description":"Implementation of function.prototype.bind","keywords":[],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/function-bind.git"},"main":"index","homepage":"https://github.com/Raynos/function-bind","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/function-bind/issues","email":"raynos2@gmail.com"},"dependencies":{},"devDependencies":{"tape":"~1.0.2"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/function-bind/raw/master/LICENSE"}],"scripts":{"test":"node ./test/index.js","start":"node ./index.js","watch":"nodemon -w ./index.js index.js","travis-test":"istanbul cover ./test/index.js && ((cat coverage/lcov.info | coveralls) || exit 0)","cover":"istanbul cover --report none --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","test-browser":"testem-browser ./test/browser/index.js","testem":"testem-both -b=./test/browser/index.js"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"function-bind@0.1.0","dist":{"shasum":"4d356a3bbea3a1226d0dde4749a8a80087cda3e2","tarball":"https://registry.npmjs.org/function-bind/-/function-bind-0.1.0.tgz","integrity":"sha512-4UP4tXl/2KpwfhzRR9vtQ3Ft5QG4om3n1QDCq5FkqnODDd2ca/qqXFiBdf/RHxjlDcjzpGL1ocTUyXrfXci1NQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDNXonyKvW3aq2Dt5dDse7duLKV9Wq8jSqVk/93L6VErQIgPkMu0ju/ZNrI843cZj06HKkUJVzoM6j8ggH8kOZ75do="}]},"_from":".","_npmVersion":"1.2.25","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"directories":{}},"1.0.0":{"name":"function-bind","version":"1.0.0","description":"Implementation of function.prototype.bind","keywords":[],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/function-bind.git"},"main":"index","homepage":"https://github.com/Raynos/function-bind","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/function-bind/issues","email":"raynos2@gmail.com"},"dependencies":{},"devDependencies":{"tape":"~2.14.0","covert":"~0.4.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/function-bind/raw/master/LICENSE"}],"scripts":{"test":"node test/index.js","coverage":"covert test/*.js","coverage-quiet":"covert test/*.js --quiet"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"2e324165faafc0211bea7ddc5ec54b97f884e350","_id":"function-bind@1.0.0","_shasum":"00e4e206738ad45ec0017d62a7ef77d9917ab2a2","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"00e4e206738ad45ec0017d62a7ef77d9917ab2a2","tarball":"https://registry.npmjs.org/function-bind/-/function-bind-1.0.0.tgz","integrity":"sha512-ZdHaPFa9xBJ0eBlxf+Ia/NQ7DQfEq26SruzXjpHJ1Et5uLsWnEGoHBD6LSaxshBfNTEGK0zAxCrHdABRcgo3dA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD5TMzEEuM2k3O29zQ/UDd4+YD0KJfV32UbGTlV4fL1iAIhAJvp8l4cCyTdxZdMmTEQIWhA18n5q+sdSFuLnrCVXcEP"}]},"directories":{}},"1.0.2":{"name":"function-bind","version":"1.0.2","description":"Implementation of Function.prototype.bind","keywords":["function","bind","shim","es5"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/function-bind.git"},"main":"index","homepage":"https://github.com/Raynos/function-bind","contributors":[{"name":"Raynos"},{"name":"Jordan Harband","url":"https://github.com/ljharb"}],"bugs":{"url":"https://github.com/Raynos/function-bind/issues","email":"raynos2@gmail.com"},"dependencies":{},"devDependencies":{"tape":"~3.0.0","covert":"~1.0.0","jscs":"~1.6.2"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/function-bind/raw/master/LICENSE"}],"scripts":{"test":"npm run lint && node test/index.js && npm run coverage-quiet","coverage":"covert test/*.js","coverage-quiet":"covert test/*.js --quiet","lint":"jscs *.js */*.js"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"71784cd83079ccd7f20684e959e1958936a0e3ff","_id":"function-bind@1.0.2","_shasum":"c2873b69c5e6d7cefae47d2555172926c8c2e05e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"c2873b69c5e6d7cefae47d2555172926c8c2e05e","tarball":"https://registry.npmjs.org/function-bind/-/function-bind-1.0.2.tgz","integrity":"sha512-v2124bSW+kLVmfLEHDpsTeQy+sLEg9gdD/1aVTO7jolX/EmBEq9+atKWYEV3w791Os5USi8yNyuUtiVEXMWiAw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC/fb09LXqi/S/XCiGGR80GFQWGnlb//2iDXvrTilfDrAIhAI7izsP+giJBxJFL5uX/9k+Uwe75W26i1/oIUkjTnwEg"}]},"directories":{}},"1.1.0":{"name":"function-bind","version":"1.1.0","description":"Implementation of Function.prototype.bind","keywords":["function","bind","shim","es5"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/function-bind.git"},"main":"index","homepage":"https://github.com/Raynos/function-bind","contributors":[{"name":"Raynos"},{"name":"Jordan Harband","url":"https://github.com/ljharb"}],"bugs":{"url":"https://github.com/Raynos/function-bind/issues","email":"raynos2@gmail.com"},"dependencies":{},"devDependencies":{"tape":"^4.4.0","covert":"^1.1.0","jscs":"^2.9.0","eslint":"^2.0.0","@ljharb/eslint-config":"^2.1.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/function-bind/raw/master/LICENSE"}],"scripts":{"test":"npm run lint && npm run tests-only && npm run coverage-quiet","tests-only":"node test","coverage":"covert test/*.js","coverage-quiet":"covert test/*.js --quiet","lint":"npm run jscs && npm run eslint","jscs":"jscs *.js */*.js","eslint":"eslint *.js */*.js"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"cb5057f2a0018ac48c812ccee86934a5af30efdb","_id":"function-bind@1.1.0","_shasum":"16176714c801798e4e8f2cf7f7529467bb4a5771","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"16176714c801798e4e8f2cf7f7529467bb4a5771","tarball":"https://registry.npmjs.org/function-bind/-/function-bind-1.1.0.tgz","integrity":"sha512-rdjNZR1BePD6g5bTgalqkSN9eMuHgB2KHOBupLM8f5TblXwiV8nSY31dygkdwLNFn1m2KAkjFsREUuLNcU1rdg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIChAIxsZ/Z+Uf2sKfvL7vSYyvIua0IhoERa8wsDlRDMpAiEAzdZkw5K770jnn0pTnBbjF5h9dkklqX/QJaDMU5+nPHY="}]},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/function-bind-1.1.0.tgz_1455438520627_0.822420896962285"},"directories":{}},"1.1.1":{"name":"function-bind","version":"1.1.1","description":"Implementation of Function.prototype.bind","keywords":["function","bind","shim","es5"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/function-bind.git"},"main":"index","homepage":"https://github.com/Raynos/function-bind","contributors":[{"name":"Raynos"},{"name":"Jordan Harband","url":"https://github.com/ljharb"}],"bugs":{"url":"https://github.com/Raynos/function-bind/issues","email":"raynos2@gmail.com"},"dependencies":{},"devDependencies":{"@ljharb/eslint-config":"^12.2.1","covert":"^1.1.0","eslint":"^4.5.0","jscs":"^3.0.7","tape":"^4.8.0"},"license":"MIT","scripts":{"pretest":"npm run lint","test":"npm run tests-only","posttest":"npm run coverage -- --quiet","tests-only":"node test","coverage":"covert test/*.js","lint":"npm run jscs && npm run eslint","jscs":"jscs *.js */*.js","eslint":"eslint *.js */*.js"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"1213f807066d1cb8d39a0592d5118f4b1f03de4a","_id":"function-bind@1.1.1","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"integrity":"sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==","shasum":"a56899d3ea3c9bab874bb9773b7c5ede92f4895d","tarball":"https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDsVxPdBe+3LZpIF8YZMP7chLM+i5RVRwvtzCd5Yx7zigIgHw6sg2uwy+ItJamfc9+b+XTQOi93JrtZ+8F6YNq3Jz8="}]},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/function-bind-1.1.1.tgz_1503906695005_0.1665907499846071"},"directories":{}},"1.1.2":{"name":"function-bind","version":"1.1.2","description":"Implementation of Function.prototype.bind","keywords":["function","bind","shim","es5"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/Raynos/function-bind.git"},"funding":{"url":"https://github.com/sponsors/ljharb"},"main":"index","homepage":"https://github.com/Raynos/function-bind","contributors":[{"name":"Raynos"},{"name":"Jordan Harband","url":"https://github.com/ljharb"}],"bugs":{"url":"https://github.com/Raynos/function-bind/issues","email":"raynos2@gmail.com"},"devDependencies":{"@ljharb/eslint-config":"^21.1.0","aud":"^2.0.3","auto-changelog":"^2.4.0","eslint":"=8.8.0","in-publish":"^2.0.1","npmignore":"^0.3.0","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","tape":"^5.7.1"},"license":"MIT","scripts":{"prepublishOnly":"safe-publish-latest","prepublish":"not-in-publish || npm run prepublishOnly","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","test":"npm run tests-only","posttest":"aud --production","tests-only":"nyc tape 'test/**/*.js'","lint":"eslint --ext=js,mjs .","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github/workflows"]},"_id":"function-bind@1.1.2","gitHead":"40197beb5f4cf89dd005f0b268256c1e4716ea81","_nodeVersion":"20.8.0","_npmVersion":"10.1.0","dist":{"integrity":"sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==","shasum":"2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c","tarball":"https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz","fileCount":12,"unpackedSize":31427,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAnYrMYyelTQQ9xaQa84pR8N36UHNo7fToz4G3Xhj1ioAiEAo0Wl8ZCzkWU1VC9qLQaMxOvLxcQy3YyIWnTLHe6hmCk="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/function-bind_1.1.2_1697137699495_0.5322546821621981"},"_hasShrinkwrap":false}},"readme":"# function-bind [![Version Badge][npm-version-svg]][package-url]\n\n[![github actions][actions-image]][actions-url]\n\n[![dependency status][deps-svg]][deps-url]\n[![dev dependency status][dev-deps-svg]][dev-deps-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][npm-badge-png]][package-url]\n\nImplementation of function.prototype.bind\n\nOld versions of phantomjs, Internet Explorer < 9, and node < 0.6 don't support `Function.prototype.bind`.\n\n## Example\n\n```js\nFunction.prototype.bind = require(\"function-bind\")\n```\n\n## Installation\n\n`npm install function-bind`\n\n## Contributors\n\n - Raynos\n\n## MIT Licenced\n\n[package-url]: https://npmjs.org/package/function-bind\n[npm-version-svg]: https://versionbadg.es/Raynos/function-bind.svg\n[deps-svg]: https://david-dm.org/Raynos/function-bind.svg\n[deps-url]: https://david-dm.org/Raynos/function-bind\n[dev-deps-svg]: https://david-dm.org/Raynos/function-bind/dev-status.svg\n[dev-deps-url]: https://david-dm.org/Raynos/function-bind#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/function-bind.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/function-bind.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/function-bind.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=function-bind\n[codecov-image]: https://codecov.io/gh/Raynos/function-bind/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/Raynos/function-bind/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/Raynos/function-bind\n[actions-url]: https://github.com/Raynos/function-bind/actions\n","maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"time":{"modified":"2023-10-12T19:08:19.863Z","created":"2013-06-16T23:25:41.232Z","0.1.0":"2013-06-16T23:25:42.888Z","1.0.0":"2014-08-09T17:02:51.069Z","1.0.1":"2014-10-03T07:38:13.045Z","1.0.2":"2014-10-05T07:23:52.930Z","1.1.0":"2016-02-14T08:28:42.411Z","1.1.1":"2017-08-28T07:51:35.937Z","1.1.2":"2023-10-12T19:08:19.687Z"},"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/Raynos/function-bind.git"},"homepage":"https://github.com/Raynos/function-bind","keywords":["function","bind","shim","es5"],"contributors":[{"name":"Raynos"},{"name":"Jordan Harband","url":"https://github.com/ljharb"}],"bugs":{"url":"https://github.com/Raynos/function-bind/issues","email":"raynos2@gmail.com"},"readmeFilename":"README.md","users":{"flumpus-dev":true},"license":"MIT"}
\ No newline at end of file
diff --git a/.npm-cache/_cacache/content-v2/sha512/28/c4/5e154af4078b7e0fe381923477298aafa1ca765da4b33b9e54701ea681031ddca6dc13e9964f2bd557b0ffcec7446cd9d5e9a71952eb64887417bd3af547 b/.npm-cache/_cacache/content-v2/sha512/28/c4/5e154af4078b7e0fe381923477298aafa1ca765da4b33b9e54701ea681031ddca6dc13e9964f2bd557b0ffcec7446cd9d5e9a71952eb64887417bd3af547
deleted file mode 100644
index 05145cd..0000000
Binary files a/.npm-cache/_cacache/content-v2/sha512/28/c4/5e154af4078b7e0fe381923477298aafa1ca765da4b33b9e54701ea681031ddca6dc13e9964f2bd557b0ffcec7446cd9d5e9a71952eb64887417bd3af547 and /dev/null differ
diff --git a/.npm-cache/_cacache/content-v2/sha512/2c/32/733d510410f47ecb8f33f7703411dd325dbf29001c865a8fe4e5861d620a58dbfd84b0eb24b09aeaee5387c6bcab54e9f57a31baa00a7c6a1bce2100fcb3 b/.npm-cache/_cacache/content-v2/sha512/2c/32/733d510410f47ecb8f33f7703411dd325dbf29001c865a8fe4e5861d620a58dbfd84b0eb24b09aeaee5387c6bcab54e9f57a31baa00a7c6a1bce2100fcb3
deleted file mode 100644
index 35a650e..0000000
Binary files a/.npm-cache/_cacache/content-v2/sha512/2c/32/733d510410f47ecb8f33f7703411dd325dbf29001c865a8fe4e5861d620a58dbfd84b0eb24b09aeaee5387c6bcab54e9f57a31baa00a7c6a1bce2100fcb3 and /dev/null differ
diff --git a/.npm-cache/_cacache/content-v2/sha512/2e/c0/c33e64731d2900f75e37dccf47936eb68ba3642dadd22d2c155a14e4ae7e59580eaaf8ac5b9420cd5594272ee3db3df9848a25106c1bc48a6bcca66c6ae2 b/.npm-cache/_cacache/content-v2/sha512/2e/c0/c33e64731d2900f75e37dccf47936eb68ba3642dadd22d2c155a14e4ae7e59580eaaf8ac5b9420cd5594272ee3db3df9848a25106c1bc48a6bcca66c6ae2
deleted file mode 100644
index 49df700..0000000
--- a/.npm-cache/_cacache/content-v2/sha512/2e/c0/c33e64731d2900f75e37dccf47936eb68ba3642dadd22d2c155a14e4ae7e59580eaaf8ac5b9420cd5594272ee3db3df9848a25106c1bc48a6bcca66c6ae2
+++ /dev/null
@@ -1 +0,0 @@
-{"_id":"any-promise","_rev":"27-ff4600162a7dddb4298528aa91fa559f","name":"any-promise","description":"Resolve any installed ES6 compatible promise","dist-tags":{"latest":"1.3.0"},"versions":{"0.0.1":{"name":"any-promise","version":"0.0.1","description":"Resolve any installed ES6 compatible promise","main":"any-promise.js","scripts":{"test":"make test"},"repository":{"type":"git","url":"https://github.com/kevinbeaty/any-promise"},"keywords":["promise","es6"],"author":{"name":"Kevin Beaty"},"license":"MIT","bugs":{"url":"https://github.com/kevinbeaty/any-promise/issues"},"homepage":"http://github.com/kevinbeaty/any-promise","dependencies":{},"devDependencies":{"promise":"~6.0.1","es6-promise":"~2.0.0","rsvp":"~3.0.14","bluebird":"~2.3.10","when":"~3.5.2","q":"~1.0.1","native-promise-only":"~0.7.6-a","promises-aplus-tests":"~2.1.0","mocha":"~2.0.1"},"_id":"any-promise@0.0.1","dist":{"shasum":"8d0c4a1910cede7ba0410ebd76503a69659f5aca","tarball":"https://registry.npmjs.org/any-promise/-/any-promise-0.0.1.tgz","integrity":"sha512-bBfATBzzw3DEj8NueSKx/1+voY16dEsWXYnPB2s57vpMGOH/g3DL0B6s7fWRe1UfQWClVGDAq/LbEumiTKNRuA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHT+vclvX51GwVanbXX4TEtf7+yjSRlV3NC/L2cvalPRAiEAyd8lWJC/OBjJ6AsqTaarqL23+JItq3/gB2gmRb/LBhk="}]},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"kevinbeaty","email":"kevin@simplectic.com"},"maintainers":[{"name":"kevinbeaty","email":"kevin@simplectic.com"}]},"0.0.2":{"name":"any-promise","version":"0.0.2","description":"Resolve any installed ES6 compatible promise","main":"any-promise.js","browser":"any-promise-shim.js","scripts":{"test":"make test"},"repository":{"type":"git","url":"https://github.com/kevinbeaty/any-promise"},"keywords":["promise","es6"],"author":{"name":"Kevin Beaty"},"license":"MIT","bugs":{"url":"https://github.com/kevinbeaty/any-promise/issues"},"homepage":"http://github.com/kevinbeaty/any-promise","dependencies":{},"devDependencies":{"promise":"~6.0.1","es6-promise":"~2.0.0","rsvp":"~3.0.14","bluebird":"~2.3.10","when":"~3.5.2","q":"~1.0.1","native-promise-only":"~0.7.6-a","promises-aplus-tests":"~2.1.0","mocha":"~2.0.1"},"_id":"any-promise@0.0.2","dist":{"shasum":"352babf996ab367c5145cee93c0ec63171d0941e","tarball":"https://registry.npmjs.org/any-promise/-/any-promise-0.0.2.tgz","integrity":"sha512-RtGU9vJvaqIlRDJR9hvBbncMoA0Jsr7zgYoNMJDziUxuJqKO83GC/Vsp1336IscMEAxvd3xcznCY7/czxFKkIQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDdOcgdjw4sHgsZkwyGIK6Os+lFQfJOSF4rvKIY0SithQIgEmw8sOG2cBJxSnlOun7f8TPfRBb+sXQKhfNNFjEHIn8="}]},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"kevinbeaty","email":"kevin@simplectic.com"},"maintainers":[{"name":"kevinbeaty","email":"kevin@simplectic.com"}]},"0.1.0":{"name":"any-promise","version":"0.1.0","description":"Resolve any installed ES6 compatible promise","main":"any-promise.js","browser":"any-promise-shim.js","scripts":{"test":"make test"},"repository":{"type":"git","url":"https://github.com/kevinbeaty/any-promise"},"keywords":["promise","es6"],"author":{"name":"Kevin Beaty"},"license":"MIT","bugs":{"url":"https://github.com/kevinbeaty/any-promise/issues"},"homepage":"http://github.com/kevinbeaty/any-promise","dependencies":{},"devDependencies":{"promise":"~6.0.1","es6-promise":"~2.0.1","rsvp":"~3.0.16","bluebird":"~2.5.3","when":"~3.6.4","q":"~1.1.2","native-promise-only":"~0.7.6-a","promises-aplus-tests":"~2.1.0","mocha":"~2.1.0"},"_id":"any-promise@0.1.0","dist":{"shasum":"830b680aa7e56f33451d4b049f3bd8044498ee27","tarball":"https://registry.npmjs.org/any-promise/-/any-promise-0.1.0.tgz","integrity":"sha512-lqzY9o+BbeGHRCOyxQkt/Tgvz0IZhTmQiA+LxQW8wSNpcTbj8K+0cZiSEvbpNZZP9/11Gy7dnLO3GNWUXO4d1g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCglEZmU+29esIDfE4fwKnFQ5/DATlOtIIcSdlEhqTBAQIgZ9J6XPBvzsDjB3enfuG2W6F5tlxiq0TPMjeA9kvfhXY="}]},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"kevinbeaty","email":"kevin@simplectic.com"},"maintainers":[{"name":"kevinbeaty","email":"kevin@simplectic.com"}]},"0.2.0":{"name":"any-promise","version":"0.2.0","description":"Resolve any installed ES6 compatible promise","main":"index.js","browser":{"./register.js":"./register-shim.js"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/kevinbeaty/any-promise.git"},"keywords":["promise","es6"],"author":{"name":"Kevin Beaty"},"license":"MIT","bugs":{"url":"https://github.com/kevinbeaty/any-promise/issues"},"homepage":"http://github.com/kevinbeaty/any-promise","dependencies":{},"devDependencies":{"promise":"~7.1.1","es6-promise":"~3.0.2","rsvp":"~3.1.0","bluebird":"~3.1.5","when":"~3.7.7","q":"~1.4.1","native-promise-only":"~0.8.1","promises-aplus-tests":"~2.1.0","mocha":"~2.4.2"},"gitHead":"3f75f1c79285b8137e671a362bccd0f2db7e26ec","_id":"any-promise@0.2.0","_shasum":"0ad4f1d32108b13edc663a72a0146b26845cc4f5","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"kevinbeaty","email":"kevin@simplectic.com"},"dist":{"shasum":"0ad4f1d32108b13edc663a72a0146b26845cc4f5","tarball":"https://registry.npmjs.org/any-promise/-/any-promise-0.2.0.tgz","integrity":"sha512-lrammFVMf5x4hZa5rnKN90JHhn60lY4w/6oVz3Mb7KjSRKBcT2UjMgcW5HJ9ueeLzH7wm4dcVqMLN7F8zrD3EA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCH39bqh85bXqJfx7uLa8wCMk/jahhbyFynYYblSGwIcAIgWkL9L/Esqw3Jp5IN9B/gCqEV2K5n2AHaUVpkCY5ck3g="}]},"maintainers":[{"name":"kevinbeaty","email":"kevin@simplectic.com"}]},"1.0.0":{"name":"any-promise","version":"1.0.0","description":"Resolve any installed ES6 compatible promise","main":"index.js","browser":{"./register.js":"./register-shim.js"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/kevinbeaty/any-promise.git"},"keywords":["promise","es6"],"author":{"name":"Kevin Beaty"},"license":"MIT","bugs":{"url":"https://github.com/kevinbeaty/any-promise/issues"},"homepage":"http://github.com/kevinbeaty/any-promise","dependencies":{},"devDependencies":{"promise":"~7.1.1","es6-promise":"~3.0.2","rsvp":"~3.1.0","bluebird":"~3.1.5","when":"~3.7.7","q":"~1.4.1","native-promise-only":"~0.8.1","promises-aplus-tests":"~2.1.0","mocha":"~2.4.2"},"gitHead":"968ac51c7ff38b32047efde4eee101ce82bc709a","_id":"any-promise@1.0.0","_shasum":"033bc631313e235e739e1e4219ffdff026881c4f","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"kevinbeaty","email":"kevin@simplectic.com"},"dist":{"shasum":"033bc631313e235e739e1e4219ffdff026881c4f","tarball":"https://registry.npmjs.org/any-promise/-/any-promise-1.0.0.tgz","integrity":"sha512-4KJpnW+HX/1VGfbe3++J5m49/42A32BpaoeTgkK4gKviNqEyaZM54VbufhT6ZC55pAXWzDS8WhNXDbKMhZfF5A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCA0kBEHE6W33Xatwp2p1WXnO93e/34G0wZwAAOC/J2mAIhAIVCcXasuCAr/kxG0JaG9O2U+rT+R6MGtAgSEeQpHBrZ"}]},"maintainers":[{"name":"kevinbeaty","email":"kevin@simplectic.com"}]},"1.1.0":{"name":"any-promise","version":"1.1.0","description":"Resolve any installed ES6 compatible promise","main":"index.js","browser":{"./register.js":"./register-shim.js"},"scripts":{"test":"make test"},"repository":{"type":"git","url":"git+https://github.com/kevinbeaty/any-promise.git"},"keywords":["promise","es6"],"author":{"name":"Kevin Beaty"},"license":"MIT","bugs":{"url":"https://github.com/kevinbeaty/any-promise/issues"},"homepage":"http://github.com/kevinbeaty/any-promise","dependencies":{},"devDependencies":{"promise":"^7.0.0","es6-promise":"^3.0.0","rsvp":"^3.0.0","bluebird":"^3.0.0","when":"^3.0.0","q":"^1.0.0","native-promise-only":"^0.8.0","promises-aplus-tests":"^2.0.0","mocha":"^2.0.0"},"gitHead":"192f4ef393db3193582199dd3595990c9acaf1cd","_id":"any-promise@1.1.0","_shasum":"00e2a4f78b22454ff6dfec436edf2f93a8c59fa8","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"kevinbeaty","email":"kevin@simplectic.com"},"dist":{"shasum":"00e2a4f78b22454ff6dfec436edf2f93a8c59fa8","tarball":"https://registry.npmjs.org/any-promise/-/any-promise-1.1.0.tgz","integrity":"sha512-81vSRKbMk+wid+WqwJ4Hzwyih5f3RXsWqGBuAFuUzMP2r+zI63fUkr68yM0kgI8glYhmSURYvN0borZ8Cspl8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBfZvv+Um3FI/9eOPTdxDzJ44IO95Ov/aAon6+7nJZwQAiB1FHLJDK3n68O7eytd1k4YILrAXXpm3aji4zdwuyH/bg=="}]},"maintainers":[{"name":"kevinbeaty","email":"kevin@simplectic.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/any-promise-1.1.0.tgz_1454468553798_0.9758589719422162"}},"1.2.0":{"name":"any-promise","version":"1.2.0","description":"Resolve any installed ES6 compatible promise","main":"index.js","browser":{"./register.js":"./register-shim.js"},"scripts":{"test":"mocha test/index.js"},"repository":{"type":"git","url":"git+https://github.com/kevinbeaty/any-promise.git"},"keywords":["promise","es6"],"author":{"name":"Kevin Beaty"},"license":"MIT","bugs":{"url":"https://github.com/kevinbeaty/any-promise/issues"},"homepage":"http://github.com/kevinbeaty/any-promise","dependencies":{},"devDependencies":{"bluebird":"^3.0.0","es6-promise":"^3.0.0","mocha":"^2.0.0","native-promise-only":"^0.8.0","phantomjs-prebuilt":"^2.1.7","promise":"^7.0.0","promises-aplus-tests":"^2.0.0","q":"^1.0.0","rsvp":"^3.0.0","when":"^3.0.0","zuul":"^3.10.1"},"gitHead":"cecab1f12408387ce87eef570573be10758556d9","_id":"any-promise@1.2.0","_shasum":"4f2c28e424e2830b34ec95bd77699940c834a4a9","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"kevinbeaty","email":"kevin@simplectic.com"},"dist":{"shasum":"4f2c28e424e2830b34ec95bd77699940c834a4a9","tarball":"https://registry.npmjs.org/any-promise/-/any-promise-1.2.0.tgz","integrity":"sha512-+mGzsRaheypSV+AKVaLz6M4Lc4gVo2t9O/lDvafuxVdmQyMwsS5iKe2aYh/IJxObZODd0K3Gd+k8Ba6KFiHOZQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA3agm2K+5iX+63a2iJHKs6W5gvJ8k6poHcm+nJXdc1MAiB0ysa/vBf7/zzvZ6jpFzHqXVOAXRl7P2EFaE46vsjEjQ=="}]},"maintainers":[{"name":"kevinbeaty","email":"kevin@simplectic.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/any-promise-1.2.0.tgz_1462284979104_0.33836774318479"}},"1.3.0":{"name":"any-promise","version":"1.3.0","description":"Resolve any installed ES6 compatible promise","main":"index.js","typings":"index.d.ts","browser":{"./register.js":"./register-shim.js"},"scripts":{"test":"ava"},"repository":{"type":"git","url":"git+https://github.com/kevinbeaty/any-promise.git"},"keywords":["promise","es6"],"author":{"name":"Kevin Beaty"},"license":"MIT","bugs":{"url":"https://github.com/kevinbeaty/any-promise/issues"},"homepage":"http://github.com/kevinbeaty/any-promise","dependencies":{},"devDependencies":{"ava":"^0.14.0","bluebird":"^3.0.0","es6-promise":"^3.0.0","is-promise":"^2.0.0","lie":"^3.0.0","mocha":"^2.0.0","native-promise-only":"^0.8.0","phantomjs-prebuilt":"^2.0.0","pinkie":"^2.0.0","promise":"^7.0.0","q":"^1.0.0","rsvp":"^3.0.0","vow":"^0.4.0","when":"^3.0.0","zuul":"^3.0.0"},"gitHead":"39a1034e7345ca5f0f0a2e6cc82f3bf8e308b2cc","_id":"any-promise@1.3.0","_shasum":"abc6afeedcea52e809cdc0376aed3ce39635d17f","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"kevinbeaty","email":"kevin@simplectic.com"},"dist":{"shasum":"abc6afeedcea52e809cdc0376aed3ce39635d17f","tarball":"https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz","integrity":"sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCSkTzUFQ/JyEvNjiVMv8AUdfL3dH7W22562obmjYAOTAIhAI0GdkMrhA3oAdJJRX0Xm6DESeC6a8TEmC+cQxK29TYO"}]},"maintainers":[{"name":"kevinbeaty","email":"kevin@simplectic.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/any-promise-1.3.0.tgz_1462709704988_0.08345960266888142"}}},"readme":"## Any Promise\n\n[](http://travis-ci.org/kevinbeaty/any-promise)\n\nLet your library support any ES 2015 (ES6) compatible `Promise` and leave the choice to application authors. The application can *optionally* register its preferred `Promise` implementation and it will be exported when requiring `any-promise` from library code.\n\nIf no preference is registered, defaults to the global `Promise` for newer Node.js versions. The browser version defaults to the window `Promise`, so polyfill or register as necessary.\n\n### Usage with global Promise:\n\nAssuming the global `Promise` is the desired implementation:\n\n```bash\n# Install any libraries depending on any-promise\n$ npm install mz\n```\n\nThe installed libraries will use global Promise by default.\n\n```js\n// in library\nvar Promise = require('any-promise') // the global Promise\n\nfunction promiseReturningFunction(){\n return new Promise(function(resolve, reject){...})\n}\n```\n\n### Usage with registration:\n\nAssuming `bluebird` is the desired Promise implementation:\n\n```bash\n# Install preferred promise library\n$ npm install bluebird\n# Install any-promise to allow registration\n$ npm install any-promise\n# Install any libraries you would like to use depending on any-promise\n$ npm install mz\n```\n\nRegister your preference in the application entry point before any other `require` of packages that load `any-promise`:\n\n```javascript\n// top of application index.js or other entry point\nrequire('any-promise/register/bluebird')\n\n// -or- Equivalent to above, but allows customization of Promise library\nrequire('any-promise/register')('bluebird', {Promise: require('bluebird')})\n```\n\nNow that the implementation is registered, you can use any package depending on `any-promise`:\n\n\n```javascript\nvar fsp = require('mz/fs') // mz/fs will use registered bluebird promises\nvar Promise = require('any-promise') // the registered bluebird promise \n```\n\nIt is safe to call `register` multiple times, but it must always be with the same implementation.\n\nAgain, registration is *optional*. It should only be called by the application user if overriding the global `Promise` implementation is desired.\n\n### Optional Application Registration\n\nAs an application author, you can *optionally* register a preferred `Promise` implementation on application startup (before any call to `require('any-promise')`:\n\nYou must register your preference before any call to `require('any-promise')` (by you or required packages), and only one implementation can be registered. Typically, this registration would occur at the top of the application entry point.\n\n\n#### Registration shortcuts\n\nIf you are using a known `Promise` implementation, you can register your preference with a shortcut:\n\n\n```js\nrequire('any-promise/register/bluebird')\n// -or-\nimport 'any-promise/register/q';\n```\n\nShortcut registration is the preferred registration method as it works in the browser and Node.js. It is also convenient for using with `import` and many test runners, that offer a `--require` flag:\n\n```\n$ ava --require=any-promise/register/bluebird test.js\n```\n\nCurrent known implementations include `bluebird`, `q`, `when`, `rsvp`, `es6-promise`, `promise`, `native-promise-only`, `pinkie`, `vow` and `lie`. If you are not using a known implementation, you can use another registration method described below.\n\n\n#### Basic Registration\n\nAs an alternative to registration shortcuts, you can call the `register` function with the preferred `Promise` implementation. The benefit of this approach is that a `Promise` library can be required by name without being a known implementation. This approach does NOT work in the browser. To use `any-promise` in the browser use either registration shortcuts or specify the `Promise` constructor using advanced registration (see below).\n\n```javascript\nrequire('any-promise/register')('when')\n// -or- require('any-promise/register')('any other ES6 compatible library (known or otherwise)')\n```\n\nThis registration method will try to detect the `Promise` constructor from requiring the specified implementation. If you would like to specify your own constructor, see advanced registration.\n\n\n#### Advanced Registration\n\nTo use the browser version, you should either install a polyfill or explicitly register the `Promise` constructor:\n\n```javascript\nrequire('any-promise/register')('bluebird', {Promise: require('bluebird')})\n```\n\nThis could also be used for registering a custom `Promise` implementation or subclass.\n\nYour preference will be registered globally, allowing a single registration even if multiple versions of `any-promise` are installed in the NPM dependency tree or are using multiple bundled JavaScript files in the browser. You can bypass this global registration in options:\n\n\n```javascript\nrequire('../register')('es6-promise', {Promise: require('es6-promise').Promise, global: false})\n```\n\n### Library Usage\n\nTo use any `Promise` constructor, simply require it:\n\n```javascript\nvar Promise = require('any-promise');\n\nreturn Promise\n .all([xf, f, init, coll])\n .then(fn);\n\n\nreturn new Promise(function(resolve, reject){\n try {\n resolve(item);\n } catch(e){\n reject(e);\n }\n});\n\n```\n\nExcept noted below, libraries using `any-promise` should only use [documented](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) functions as there is no guarantee which implementation will be chosen by the application author. Libraries should never call `register`, only the application user should call if desired.\n\n\n#### Advanced Library Usage\n\nIf your library needs to branch code based on the registered implementation, you can retrieve it using `var impl = require('any-promise/implementation')`, where `impl` will be the package name (`\"bluebird\"`, `\"when\"`, etc.) if registered, `\"global.Promise\"` if using the global version on Node.js, or `\"window.Promise\"` if using the browser version. You should always include a default case, as there is no guarantee what package may be registered.\n\n\n### Support for old Node.js versions\n\nNode.js versions prior to `v0.12` may have contained buggy versions of the global `Promise`. For this reason, the global `Promise` is not loaded automatically for these old versions. If using `any-promise` in Node.js versions versions `<= v0.12`, the user should register a desired implementation.\n\nIf an implementation is not registered, `any-promise` will attempt to discover an installed `Promise` implementation. If no implementation can be found, an error will be thrown on `require('any-promise')`. While the auto-discovery usually avoids errors, it is non-deterministic. It is recommended that the user always register a preferred implementation for older Node.js versions.\n\nThis auto-discovery is only available for Node.jS versions prior to `v0.12`. Any newer versions will always default to the global `Promise` implementation.\n\n### Related\n\n- [any-observable](https://github.com/sindresorhus/any-observable) - `any-promise` for Observables.\n\n","maintainers":[{"name":"kevinbeaty","email":"kevin@simplectic.com"}],"time":{"modified":"2022-06-13T03:07:19.066Z","created":"2014-11-06T01:20:39.140Z","0.0.1":"2014-11-06T01:20:39.140Z","0.0.2":"2014-11-09T02:40:29.490Z","0.1.0":"2014-12-31T17:45:57.008Z","0.2.0":"2016-01-29T23:37:50.143Z","1.0.0":"2016-01-31T19:54:53.013Z","1.1.0":"2016-02-03T03:02:34.874Z","1.2.0":"2016-05-03T14:16:21.155Z","1.3.0":"2016-05-08T12:15:06.060Z"},"homepage":"http://github.com/kevinbeaty/any-promise","keywords":["promise","es6"],"repository":{"type":"git","url":"git+https://github.com/kevinbeaty/any-promise.git"},"author":{"name":"Kevin Beaty"},"bugs":{"url":"https://github.com/kevinbeaty/any-promise/issues"},"license":"MIT","readmeFilename":"README.md","users":{"allain":true,"rsp":true,"zaptun":true,"tarunbk":true,"btd":true,"coalesce":true,"jsumners":true,"scottfreecode":true,"nickeltobias":true,"andfaulkner":true,"panlw":true}}
\ No newline at end of file
diff --git a/.npm-cache/_cacache/content-v2/sha512/30/2a/940c292618f69378af99b694aea548f1eba0deaa5e74a0e45cb258b43714a562e52b19b54ea3d2f67b2bbd086906e80b6ee797e16342c7ee024eb43348e7 b/.npm-cache/_cacache/content-v2/sha512/30/2a/940c292618f69378af99b694aea548f1eba0deaa5e74a0e45cb258b43714a562e52b19b54ea3d2f67b2bbd086906e80b6ee797e16342c7ee024eb43348e7
deleted file mode 100644
index fb97a64..0000000
--- a/.npm-cache/_cacache/content-v2/sha512/30/2a/940c292618f69378af99b694aea548f1eba0deaa5e74a0e45cb258b43714a562e52b19b54ea3d2f67b2bbd086906e80b6ee797e16342c7ee024eb43348e7
+++ /dev/null
@@ -1 +0,0 @@
-{"_id":"lines-and-columns","_rev":"36-b3b2fbbf97004f53571b43353d0b8246","name":"lines-and-columns","description":"Maps lines and columns to character offsets and back.","dist-tags":{"latest":"2.0.4","v12x":"1.2.4","v11x":"1.1.11"},"versions":{"1.0.0":{"name":"lines-and-columns","version":"1.0.0","description":"Maps lines and columns to character offsets and back.","main":"dist/lines-and-columns.cjs.js","jsnext:main":"dist/lines-and-columns.es6.js","engines":{"node":">=4.0.0"},"scripts":{"build":"rm -rf dist && rollup -c -f cjs -o dist/lines-and-columns.cjs.js && rollup -c -f es6 -o dist/lines-and-columns.es6.js","pretest":"npm run build","test":"mocha test.js"},"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"keywords":["lines","columns","parser"],"author":{"name":"Brian Donovan","email":"me@brian-donovan.com"},"license":"MIT","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","devDependencies":{"babel":"^6.1.18","babel-plugin-transform-es2015-destructuring":"^6.1.18","babel-plugin-transform-es2015-modules-commonjs":"^6.2.0","babel-plugin-transform-flow-strip-types":"^6.1.18","babel-plugin-transform-strict-mode":"^6.2.0","mocha":"^2.3.4","rollup":"^0.21.0","rollup-plugin-babel":"^2.1.0"},"gitHead":"0e88ddfececd4af4f9eaf6c2987cd321f5e66459","_id":"lines-and-columns@1.0.0","_shasum":"de486cde66262180bce3119585766e9a7d056784","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"eventualbuddha","email":"me@brian-donovan.com"},"dist":{"shasum":"de486cde66262180bce3119585766e9a7d056784","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.0.0.tgz","integrity":"sha512-6zPjI/ABrHq26yGsnqERtjBS5X8PB+OMLeKmWDS5Xs81Dzz4b8mzHGpZ76vJEd3MqCSZFuXRopYDLQbbAKQ5/Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDF3Mn+7SYRJl18bz+hYALOPQhqEEzncXDSeF3oq+3EKAiAPEdScSROlo1vjTIfMYS/XAQDZUj7ajHqtpDrWI8BJRA=="}]},"maintainers":[{"name":"eventualbuddha","email":"me@brian-donovan.com"}],"directories":{}},"1.0.1":{"name":"lines-and-columns","version":"1.0.1","description":"Maps lines and columns to character offsets and back.","main":"dist/lines-and-columns.cjs.js","jsnext:main":"dist/lines-and-columns.es6.js","engines":{"node":">=4.0.0"},"scripts":{"build":"rm -rf dist && rollup -c -f cjs -o dist/lines-and-columns.cjs.js && rollup -c -f es6 -o dist/lines-and-columns.es6.js","pretest":"npm run build","test":"mocha test.js"},"files":["dist"],"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"keywords":["lines","columns","parser"],"author":{"name":"Brian Donovan","email":"me@brian-donovan.com"},"license":"MIT","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","devDependencies":{"babel":"^6.1.18","babel-plugin-transform-es2015-destructuring":"^6.1.18","babel-plugin-transform-es2015-modules-commonjs":"^6.2.0","babel-plugin-transform-flow-strip-types":"^6.1.18","babel-plugin-transform-strict-mode":"^6.2.0","mocha":"^2.3.4","rollup":"^0.21.0","rollup-plugin-babel":"^2.1.0"},"gitHead":"7635f8fb3f9ff02a04f0f3e19cd012e18656e85c","_id":"lines-and-columns@1.0.1","_shasum":"30372b66259fb97378bdcd59c6c2fe447a7993c7","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"eventualbuddha","email":"me@brian-donovan.com"},"dist":{"shasum":"30372b66259fb97378bdcd59c6c2fe447a7993c7","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.0.1.tgz","integrity":"sha512-qpHueAwTQ1+BhWKOuePC5nh52MogcsNTHfdgRTNmpKfHLEN6DbtRbQf6xEPRNVmVUeuqlQq84ROeLaPreCpS8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEbKtnruaecMxdrElqQth/9CqZAC57rf7zppE/02PeiDAiATxSUH3eJWs4d2nq9KRRxR6UmmlOR9YejTmcGg9KV2hA=="}]},"maintainers":[{"name":"eventualbuddha","email":"me@brian-donovan.com"}],"directories":{}},"1.0.2":{"name":"lines-and-columns","version":"1.0.2","description":"Maps lines and columns to character offsets and back.","main":"dist/lines-and-columns.cjs.js","jsnext:main":"dist/lines-and-columns.es6.js","engines":{"node":">=4.0.0"},"scripts":{"build":"rm -rf dist && rollup -c -f cjs -o dist/lines-and-columns.cjs.js && rollup -c -f es6 -o dist/lines-and-columns.es6.js","pretest":"npm run build","test":"mocha test.js"},"files":["dist"],"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"keywords":["lines","columns","parser"],"author":{"name":"Brian Donovan","email":"me@brian-donovan.com"},"license":"MIT","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","devDependencies":{"babel":"^6.1.18","babel-plugin-transform-es2015-destructuring":"^6.1.18","babel-plugin-transform-es2015-modules-commonjs":"^6.2.0","babel-plugin-transform-flow-strip-types":"^6.1.18","babel-plugin-transform-strict-mode":"^6.2.0","mocha":"^2.3.4","rollup":"^0.21.0","rollup-plugin-babel":"^2.1.0"},"gitHead":"610143f9664251127d20ca6d04aa7383e9e60cbc","_id":"lines-and-columns@1.0.2","_shasum":"33d9624cfcc5e3eb63923be2d8b7155fbb04c155","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"eventualbuddha","email":"me@brian-donovan.com"},"dist":{"shasum":"33d9624cfcc5e3eb63923be2d8b7155fbb04c155","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.0.2.tgz","integrity":"sha512-JLPLufguZW3v23idTMD2Dv6+iyxcVlohQLZJVEshy5juPTmE/AGEBGmJelvOLPR4AqWnY/kAo3k6YBHlC1+3dg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFwDB+tzqn5UWTX2+5EhnkwW82K5G3FvMsemgLdB45ZHAiEAjP+wBESGp8jMWplqIVIYvrDu4p2gIXEPqTjo3/j+qg8="}]},"maintainers":[{"name":"eventualbuddha","email":"me@brian-donovan.com"}],"directories":{}},"1.1.0":{"name":"lines-and-columns","version":"1.1.0","description":"Maps lines and columns to character offsets and back.","main":"dist/lines-and-columns.cjs.js","jsnext:main":"dist/lines-and-columns.es6.js","scripts":{"flow":"flow check --all","build":"rm -rf dist && rollup -c -f cjs -o dist/lines-and-columns.cjs.js && rollup -c -f es6 -o dist/lines-and-columns.es6.js","pretest":"npm run build","test":"mocha test.js","prepublish":"npm run flow && npm run build"},"files":["dist"],"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"keywords":["lines","columns","parser"],"author":{"name":"Brian Donovan","email":"me@brian-donovan.com"},"license":"MIT","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","devDependencies":{"babel":"^6.5.2","babel-plugin-syntax-class-properties":"^6.5.0","babel-plugin-transform-class-properties":"^6.6.0","babel-plugin-transform-es2015-block-scoping":"^6.7.0","babel-plugin-transform-es2015-classes":"^6.6.5","babel-plugin-transform-es2015-destructuring":"^6.6.5","babel-plugin-transform-es2015-modules-commonjs":"^6.7.0","babel-plugin-transform-es2015-shorthand-properties":"^6.5.0","babel-plugin-transform-flow-strip-types":"^6.7.0","babel-plugin-transform-strict-mode":"^6.6.5","mocha":"^2.4.5","rollup":"^0.25.4","rollup-plugin-babel":"^2.4.0"},"gitHead":"c1e6ba514d96fcd917383ccfb854cc33ea15cf9e","_id":"lines-and-columns@1.1.0","_shasum":"91b83757be950239b1f9ff6f46f1370d69d026d2","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.7.1","_npmUser":{"name":"eventualbuddha","email":"me@brian-donovan.com"},"dist":{"shasum":"91b83757be950239b1f9ff6f46f1370d69d026d2","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.0.tgz","integrity":"sha512-EjOc62wKB5odUIlr4JyxjRwlxtqFdM6gnPNSgxlSdlRiTqdQtkC75oWHydJDcqJaYxVo/53JCdXz2pejL02B5w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFWv3B2jY0hebjT/9i3iS7a1qVamCI/6ChP7zNZfVDxeAiBPRoNfAWFfhEeT2p+4Ze+/iy4h/Y3g+S7HEldkRr+rrw=="}]},"maintainers":[{"name":"eventualbuddha","email":"me@brian-donovan.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/lines-and-columns-1.1.0.tgz_1457488184614_0.5232401010580361"},"directories":{}},"1.1.1":{"name":"lines-and-columns","version":"1.1.1","description":"Maps lines and columns to character offsets and back.","main":"dist/lines-and-columns.cjs.js","jsnext:main":"dist/lines-and-columns.es6.js","scripts":{"flow":"flow check --all","build":"rm -rf dist && rollup -c -f cjs -o dist/lines-and-columns.cjs.js && rollup -c -f es6 -o dist/lines-and-columns.es6.js","pretest":"npm run build","test":"mocha test.js","prepublish":"npm run flow && npm run build"},"files":["dist"],"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"keywords":["lines","columns","parser"],"author":{"name":"Brian Donovan","email":"me@brian-donovan.com"},"license":"MIT","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","devDependencies":{"babel":"^6.5.2","babel-plugin-syntax-class-properties":"^6.5.0","babel-plugin-transform-class-properties":"^6.6.0","babel-plugin-transform-es2015-block-scoping":"^6.7.0","babel-plugin-transform-es2015-classes":"^6.6.5","babel-plugin-transform-es2015-destructuring":"^6.6.5","babel-plugin-transform-es2015-modules-commonjs":"^6.7.0","babel-plugin-transform-es2015-shorthand-properties":"^6.5.0","babel-plugin-transform-flow-strip-types":"^6.7.0","babel-plugin-transform-strict-mode":"^6.6.5","mocha":"^2.4.5","rollup":"^0.25.4","rollup-plugin-babel":"^2.4.0"},"gitHead":"4650b8f7a8a739a06328a5de84400753c9cbe273","_id":"lines-and-columns@1.1.1","_shasum":"4f46560cc4176f202250bae717cc6121ce7ddb48","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.7.1","_npmUser":{"name":"eventualbuddha","email":"me@brian-donovan.com"},"dist":{"shasum":"4f46560cc4176f202250bae717cc6121ce7ddb48","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.1.tgz","integrity":"sha512-QZZcNSKtmXciGthYI8EQ3qqkvQMdR1+sxtdRQzv8dR7+jSWiJqTl2kKNaMyAJBFhsYYsj/Up15AjCqaZozkEgw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDRZs5qWlF5RFKVMIgYQ7bhu1GGDRZRz6LCevDibiWCDQIgY7yb9bU42LusoxSoPxCHbFs0UwIyqFX6RuJbBbpqRcc="}]},"maintainers":[{"name":"eventualbuddha","email":"me@brian-donovan.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lines-and-columns-1.1.1.tgz_1457488564610_0.6213514695409685"},"directories":{}},"1.1.2":{"name":"lines-and-columns","description":"Maps lines and columns to character offsets and back.","main":"dist/lines-and-columns.js","jsnext:main":"dist/lines-and-columns.mjs","scripts":{"flow":"flow check --all","prebuild":"rm -rf dist","build":"rollup -c","pretest":"npm run build","test":"mocha","prepublish":"npm run flow && npm run build","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"files":["dist"],"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"keywords":["lines","columns","parser"],"author":{"name":"Brian Donovan","email":"me@brian-donovan.com"},"license":"MIT","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","devDependencies":{"babel":"^6.5.2","babel-plugin-syntax-class-properties":"^6.8.0","babel-plugin-transform-class-properties":"^6.10.2","babel-plugin-transform-es2015-block-scoping":"^6.10.1","babel-plugin-transform-es2015-classes":"^6.9.0","babel-plugin-transform-es2015-destructuring":"^6.9.0","babel-plugin-transform-es2015-modules-commonjs":"^6.10.3","babel-plugin-transform-es2015-shorthand-properties":"^6.8.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-plugin-transform-strict-mode":"^6.8.0","cz-conventional-changelog":"^1.1.6","flow-bin":"^0.27.0","mocha":"^2.5.3","rollup":"^0.33.0","rollup-plugin-babel":"^2.6.1","semantic-release":"^4.3.5"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"version":"1.1.2","gitHead":"79964233efe24ee9a5ae4eae85ebe7142ebddf41","_id":"lines-and-columns@1.1.2","_shasum":"648792a91ae008b973a325974782580c4e017275","_from":".","_npmVersion":"2.15.8","_nodeVersion":"6.2.2","_npmUser":{"name":"eventualbuddha","email":"me@brian-donovan.com"},"dist":{"shasum":"648792a91ae008b973a325974782580c4e017275","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.2.tgz","integrity":"sha512-F0g79Mp7j2XWTcF30mEDILAlWCDkOY8uVd+HAwsLe99rguffDJcNHAFyySyGgAU0heNoyaRP00iL6HakQyrBIQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDnXTPhREmERDNi1o8TMKSdx7Qsp+7wePX3hCJYffuyYgIgYDnQ2SmJ8OMH+AD/k+OVIFRRWWAyVmAnBiCVP3QV9Eg="}]},"maintainers":[{"name":"eventualbuddha","email":"me@brian-donovan.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lines-and-columns-1.1.2.tgz_1466739388702_0.5629058612976223"},"directories":{}},"1.1.3":{"name":"lines-and-columns","description":"Maps lines and columns to character offsets and back.","main":"dist/lines-and-columns.js","jsnext:main":"dist/lines-and-columns.mjs","scripts":{"flow":"flow check --all","prebuild":"rm -rf dist","build":"rollup -c","pretest":"npm run build","test":"mocha","prepublish":"npm run flow && npm run build","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"files":["dist"],"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"keywords":["lines","columns","parser"],"author":{"name":"Brian Donovan","email":"me@brian-donovan.com"},"license":"MIT","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","devDependencies":{"babel":"^6.5.2","babel-plugin-syntax-class-properties":"^6.8.0","babel-plugin-transform-class-properties":"^6.10.2","babel-plugin-transform-es2015-block-scoping":"^6.10.1","babel-plugin-transform-es2015-classes":"^6.9.0","babel-plugin-transform-es2015-destructuring":"^6.9.0","babel-plugin-transform-es2015-modules-commonjs":"^6.10.3","babel-plugin-transform-es2015-shorthand-properties":"^6.8.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-plugin-transform-strict-mode":"^6.8.0","cz-conventional-changelog":"^1.1.6","flow-bin":"^0.27.0","mocha":"^2.5.3","rollup":"^0.33.0","rollup-plugin-babel":"^2.6.1","semantic-release":"^4.3.5"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"version":"1.1.3","gitHead":"9617425c265b2513647101a3be3a1ec940066746","_id":"lines-and-columns@1.1.3","_shasum":"f125832de8738e7be1598bf24d9feb21d0d9eb98","_from":".","_npmVersion":"2.15.8","_nodeVersion":"6.2.2","_npmUser":{"name":"eventualbuddha","email":"me@brian-donovan.com"},"dist":{"shasum":"f125832de8738e7be1598bf24d9feb21d0d9eb98","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.3.tgz","integrity":"sha512-SOoxbuO7UQlCbff5DADtDeDsVXa/YwF+N7EuzJGPzRwk+oPbfEKURcHRBhlnIb1NLwA7obql+g4THNk+uTDOew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDRIWe8F3vSGh5JyZUkSL2VFTNCio+nqnrSu6yBxxjXVQIgLpbmywuJlXebAHvTYjgvzYs22B2A6cG6okRfBWP//mo="}]},"maintainers":[{"name":"eventualbuddha","email":"me@brian-donovan.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lines-and-columns-1.1.3.tgz_1466740355894_0.8184910498093814"},"directories":{}},"1.1.4":{"name":"lines-and-columns","description":"Maps lines and columns to character offsets and back.","main":"dist/lines-and-columns.js","jsnext:main":"dist/lines-and-columns.mjs","scripts":{"flow":"flow check --all","prebuild":"rm -rf dist","build":"rollup -c && cp index.js.flow dist/lines-and-columns.js.flow","pretest":"npm run build","test":"mocha","prepublish":"npm run flow && npm run build","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"files":["dist"],"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"keywords":["lines","columns","parser"],"author":{"name":"Brian Donovan","email":"me@brian-donovan.com"},"license":"MIT","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","devDependencies":{"babel":"^6.5.2","babel-plugin-syntax-class-properties":"^6.8.0","babel-plugin-transform-class-properties":"^6.10.2","babel-plugin-transform-es2015-block-scoping":"^6.10.1","babel-plugin-transform-es2015-classes":"^6.9.0","babel-plugin-transform-es2015-destructuring":"^6.9.0","babel-plugin-transform-es2015-modules-commonjs":"^6.10.3","babel-plugin-transform-es2015-shorthand-properties":"^6.8.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-plugin-transform-strict-mode":"^6.8.0","cz-conventional-changelog":"^1.1.6","flow-bin":"^0.27.0","mocha":"^2.5.3","rollup":"^0.33.0","rollup-plugin-babel":"^2.6.1","semantic-release":"^4.3.5"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"version":"1.1.4","gitHead":"9f4a9b7dfbde6043a445845cfcb89a75da551d51","_id":"lines-and-columns@1.1.4","_shasum":"1255c21e10861baddd8107fbf53df03e0a805f26","_from":".","_npmVersion":"2.15.8","_nodeVersion":"6.2.2","_npmUser":{"name":"eventualbuddha","email":"me@brian-donovan.com"},"dist":{"shasum":"1255c21e10861baddd8107fbf53df03e0a805f26","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.4.tgz","integrity":"sha512-qlf02asU3s05nBj4vopYjvrnjQMvKo84DhqTg400bd5Rc/+omJc8OASXj9nJlA1OfMroezjseXnnScS3owajgg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHCD6yYexVj76Clfo4gviqGxZboDq3t61AcGdVY9ZAYhAiAPZ1MEho1hf3pq9Tg4cP+frhFd8G0g0oeNFm9gHHYiHg=="}]},"maintainers":[{"name":"eventualbuddha","email":"me@brian-donovan.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lines-and-columns-1.1.4.tgz_1466960264032_0.44263432384468615"},"directories":{}},"1.1.5":{"name":"lines-and-columns","description":"Maps lines and columns to character offsets and back.","main":"dist/lines-and-columns.js","jsnext:main":"dist/lines-and-columns.mjs","scripts":{"flow":"flow check","prebuild":"rm -rf dist","build":"rollup -c && cp index.js.flow dist/lines-and-columns.js.flow","pretest":"npm run build","test":"mocha","prepublish":"npm run flow && npm run build","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"files":["dist"],"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"keywords":["lines","columns","parser"],"author":{"name":"Brian Donovan","email":"me@brian-donovan.com"},"license":"MIT","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","devDependencies":{"babel":"^6.5.2","babel-plugin-syntax-class-properties":"^6.8.0","babel-plugin-transform-class-properties":"^6.10.2","babel-plugin-transform-es2015-block-scoping":"^6.10.1","babel-plugin-transform-es2015-classes":"^6.9.0","babel-plugin-transform-es2015-destructuring":"^6.9.0","babel-plugin-transform-es2015-modules-commonjs":"^6.10.3","babel-plugin-transform-es2015-shorthand-properties":"^6.8.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-plugin-transform-strict-mode":"^6.8.0","cz-conventional-changelog":"^1.1.6","flow-bin":"^0.27.0","mocha":"^2.5.3","rollup":"^0.33.0","rollup-plugin-babel":"^2.6.1","semantic-release":"^4.3.5"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"version":"1.1.5","gitHead":"b9726de36f160bf45aa64b24244572cf6bb11c77","_id":"lines-and-columns@1.1.5","_shasum":"fca3bf4dcbc1ed32e138b719b7eefccf401ffe4b","_from":".","_npmVersion":"2.15.8","_nodeVersion":"6.2.2","_npmUser":{"name":"eventualbuddha","email":"me@brian-donovan.com"},"dist":{"shasum":"fca3bf4dcbc1ed32e138b719b7eefccf401ffe4b","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.5.tgz","integrity":"sha512-oVyZbrZsN6s0QlEoUDpynAniMRmqpI5P+12R5C150yky+nVeTPiymxy5geOMbxY+6uK7sFWwqWmqg0uGLV/97w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA/g05Q/99BWhmOumrPRVnQQadBPAin4yRryDm4cP0+GAiEA/Q+N59Pp4SQG48b8uqIVP1ElWEIfV+bNzNufJW5Y98M="}]},"maintainers":[{"name":"eventualbuddha","email":"me@brian-donovan.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lines-and-columns-1.1.5.tgz_1466978038879_0.6655475040897727"},"directories":{}},"1.1.6":{"name":"lines-and-columns","description":"Maps lines and columns to character offsets and back.","main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","scripts":{"lint":"tslint --config tslint.json --project tsconfig.json --type-check","lint-fix":"tslint --config tslint.json --project tsconfig.json --type-check --fix","prebuild":"rm -rf dist","build":"./script/build","pretest":"npm run build","test":"mocha","prepublish":"npm run lint && npm run build","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"files":["dist"],"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"keywords":["lines","columns","parser"],"author":{"name":"Brian Donovan","email":"me@brian-donovan.com"},"license":"MIT","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","devDependencies":{"@types/mocha":"^2.2.34","@types/node":"^6.0.52","mocha":"^3.2.0","semantic-release":"^6.3.2","ts-node":"^1.7.2","tslint":"^4.1.1","typescript":"^2.1.4"},"version":"1.1.6","gitHead":"bde3deba75c01fa95d18cd4786593df2318cdeb6","_id":"lines-and-columns@1.1.6","_shasum":"1c00c743b433cd0a4e80758f7b64a57440d9ff00","_from":".","_npmVersion":"2.15.11","_nodeVersion":"6.9.2","_npmUser":{"name":"eventualbuddha","email":"me@brian-donovan.com"},"dist":{"shasum":"1c00c743b433cd0a4e80758f7b64a57440d9ff00","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz","integrity":"sha512-8ZmlJFVK9iCmtLz19HpSsR8HaAMWBT284VMNednLwlIMDP2hJDCIhUp0IZ2xUcZ+Ob6BM0VvCSJwzASDM45NLQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDLl/FNkkYPyi2ee1uoarDfXWpx+xhCI11T8dc9V0Z5FgIhAJBncoAQNpYZQuUze6Xrm0kwlmyZxai9supNtSlWQUzC"}]},"maintainers":[{"name":"eventualbuddha","email":"me@brian-donovan.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/lines-and-columns-1.1.6.tgz_1482255134226_0.4856822253204882"},"directories":{}},"1.1.7":{"name":"lines-and-columns","version":"1.1.7","description":"Maps lines and columns to character offsets and back.","keywords":["lines","columns","parser"],"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"license":"MIT","author":{"name":"Brian Donovan","email":"brian@donovans.cc"},"type":"module","exports":"./build/index.mjs","types":"./build/index.d.ts","scripts":{"prebuild":"rm -rf build","build":"tsc --build tsconfig.build.json","build:watch":"tsc --build tsconfig.build.json --watch","lint":"eslint .","lint:fix":"eslint . --fix","prepublishOnly":"npm run lint && npm run build","test":"is-ci test:coverage test:watch","test:coverage":"jest --coverage","test:watch":"jest --watch"},"devDependencies":{"@types/jest":"^27.0.3","@types/node":"^16.11.9","@typescript-eslint/eslint-plugin":"^5.4.0","@typescript-eslint/parser":"^5.4.0","esbuild":"^0.13.15","esbuild-runner":"^2.2.1","eslint":"^8.2.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","is-ci-cli":"^2.2.0","jest":"^27.3.1","prettier":"^2.4.1","semantic-release":"^18.0.0","typescript":"^4.5.2"},"engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"gitHead":"78591e9929c0546ebdc52b73ddc8a898fe699ed8","_id":"lines-and-columns@1.1.7","_nodeVersion":"14.18.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-HBp1gFWrO0H3YCWs7dSTUcSxcfREVWvTWr1qBLQlQ741CDHQuV+R2XYqEogJrscQs0obzz2N/TM5pDigBaf2XA==","shasum":"a3dba31d1b53d293ba700e20035be10b36189d12","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.7.tgz","fileCount":5,"unpackedSize":5452,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmXNyCRA9TVsSAnZWagAAGu4P/A4itu1AGYzMG2JajK01\ntHGhny+0B1I1haWMelk2MSuJRSczT5mTtFapMPjIU6uJuzz/x4bSeZCAU65I\noHv6DEcXYmYIzGTcgT4B8hUBuSCCy9xF9wdl1V8qFRo9Hb0RxdSIj1lOHlsx\nW/TbRCsSFf1+LJQSiZo45mnc7SI60MvTSwwHHOt7leeZPh2KeAGq8xEq7PdU\nPkqrkPddxx2eOsGBWpGja7DuFj8uyhILB1B0VRm5URhZ2nwQCzTjOzYVNhC/\ntRIrd37fnFyBAYBREysrRwhrqG2CNDck9x4wV9+oKGyu5hF1vC0q3cuU5N2Q\ndyyKkjAp+td84kuXRfgT5mB0cgMCTDEAK3R2rBK8UsZgbcpVk2dtYZb1bR+S\n1TbnjPJ4aoN9ofl1gZeZR9FNMPz895OjGP3z0nGvsTh+lljYwr/EpFGHrS6D\nmVuLGbYze8Vd0fSUJ4T+AG8JAUeJLSc6mDT2+fs3yVGCASAakZ/tMq/fmK2p\ndrPmmpG2nbqqLs48nYdVmPBnjF7Sa6PnUw4CVyLp2xpzQekIXSvtZgi0/QbJ\nL05zsI1caPyl5mY8VoXhe6y8dY5bOJUBIPLBAjdyWyFwmaSS2VRX3fr9xmEi\nlbA/fY0sSI+i12CzftK+lr6UippxbfLfjrF9pyPEdEHucrMj14Z5rAfuE+SB\nfnLt\r\n=C9m7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCQUZppFqgW90RpFo4y1Z8+fmkfElGz6hMOlRqr9sGXSQIhAPKWbpgAJ9nUljoftc/Vwlsx45g+9GvJeYrMjOhjwBbU"}]},"_npmUser":{"name":"eventualbuddha","email":"brian@donovans.cc"},"directories":{},"maintainers":[{"name":"eventualbuddha","email":"brian@donovans.cc"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/lines-and-columns_1.1.7_1637446514320_0.38816438343702564"},"_hasShrinkwrap":false,"deprecated":"please use 1.1.8 or 2.0.1 or later"},"1.2.0":{"name":"lines-and-columns","version":"1.2.0","description":"Maps lines and columns to character offsets and back.","keywords":["lines","columns","parser"],"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"license":"MIT","author":{"name":"Brian Donovan","email":"brian@donovans.cc"},"type":"module","exports":"./build/index.mjs","types":"./build/index.d.ts","scripts":{"prebuild":"rm -rf build","build":"tsc --build tsconfig.build.json","build:watch":"tsc --build tsconfig.build.json --watch","lint":"eslint .","lint:fix":"eslint . --fix","prepublishOnly":"npm run lint && npm run build","test":"is-ci test:coverage test:watch","test:coverage":"jest --coverage","test:watch":"jest --watch"},"devDependencies":{"@types/jest":"^27.0.3","@types/node":"^16.11.9","@typescript-eslint/eslint-plugin":"^5.4.0","@typescript-eslint/parser":"^5.4.0","esbuild":"^0.13.15","esbuild-runner":"^2.2.1","eslint":"^8.2.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","is-ci-cli":"^2.2.0","jest":"^27.3.1","prettier":"^2.4.1","semantic-release":"^18.0.0","typescript":"^4.5.2"},"engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"gitHead":"2474adcebc7086ff2aadd5978318ba77d071e525","_id":"lines-and-columns@1.2.0","_nodeVersion":"14.18.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-tfO1siOurT114rus/3opoeRtTAWjfgQFY+p8Q2wswWVhXpjk99Rb/IKX76akoJDh7pxlQuf4XfZ4p/PSwBMuuQ==","shasum":"730382e9a1cbb3fdeb5494b3915bfae145c0d3d2","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.0.tgz","fileCount":5,"unpackedSize":5452,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmXVnCRA9TVsSAnZWagAAJx8P/iKvY07uph8wHucPyFDS\nsO4gYQTpWogzsd91v2amkC7Y4h17Nh3x9oadxie+Pf+HXr8Nc6C+5JXE+RC3\npPv5SvijYdE84fUlW70Ap7toKXXYQvhlYhjy+ayPzQ+ZoPDG1BJ8OLJsPIGQ\nBpizK7bXBd1gjjkus897ZjTkq9QeWC/pJDKc2xkaushpZcC+v38XOTwbb0k0\neLyVUkLKmPGDvJ73xpCJm7VWyupY0tAY4QSyNUYg7jN5wH+1dieWf5oDJKMz\ny/tWsaNFL7zidFVZXQ2NZK4jVFNBfDZWzylle5FXAGsUwacoW4z1oZiBhExC\n5+pheyvlH+zPqU4sybenNnfJNAcUnsJaGEgYIv+k/VFQ+upVlQRWQuJlBe70\nfGPLndKcD90WOmkx3Fx1/dDyKnT/2BuiIzoJawFga2SlNIE/0d7PdhO8OzMH\ndgSNhkQLNAXP8PXVEACE4muYnqGveuVTPkHb0BZylvVwiovJlgudMr7JyPHz\nI4zalbrhLzV7vI7HJQSAjOMxPooJW4WJfsI+YSlkJrMLjy0TGyLNwcDlE1bT\ni02eLgjSjs9xewjCTDBGXrcZj3e1gSZBrKkXnPn+2ZlhYyGKOJxBssYKykws\n9opeOjmz/vEtoRWYJZb2ve/QKjN3ZHpIbROZ27QBb8PeQ/GBMFOKljFLPvck\nHE7N\r\n=JJNv\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDtdSsuKYkV3CQTnMWdwvf0fLDXmvcEmXLBENWcqG4bCQIgMImIr1HjD9mtKdYBKq2nFhjBdOyg3lCwLdnjopZ24BM="}]},"_npmUser":{"name":"eventualbuddha","email":"brian@donovans.cc"},"directories":{},"maintainers":[{"name":"eventualbuddha","email":"brian@donovans.cc"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/lines-and-columns_1.2.0_1637447015533_0.3933273335050267"},"_hasShrinkwrap":false,"deprecated":"please use 1.2.1 or later"},"2.0.0":{"name":"lines-and-columns","version":"2.0.0","description":"Maps lines and columns to character offsets and back.","keywords":["lines","columns","parser"],"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"license":"MIT","author":{"name":"Brian Donovan","email":"brian@donovans.cc"},"type":"module","exports":"./build/index.mjs","types":"./build/index.d.ts","scripts":{"prebuild":"rm -rf build","build":"tsc --build tsconfig.build.json","build:watch":"tsc --build tsconfig.build.json --watch","lint":"eslint .","lint:fix":"eslint . --fix","prepublishOnly":"npm run lint && npm run build","test":"is-ci test:coverage test:watch","test:coverage":"jest --coverage","test:watch":"jest --watch"},"devDependencies":{"@types/jest":"^27.0.3","@types/node":"^16.11.9","@typescript-eslint/eslint-plugin":"^5.4.0","@typescript-eslint/parser":"^5.4.0","esbuild":"^0.13.15","esbuild-runner":"^2.2.1","eslint":"^8.2.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","is-ci-cli":"^2.2.0","jest":"^27.3.1","prettier":"^2.4.1","semantic-release":"^18.0.0","typescript":"^4.5.2"},"engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"gitHead":"f2ab22ac87f816751ca2f7377704f150ecc4ecb1","_id":"lines-and-columns@2.0.0","_nodeVersion":"14.18.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-gxLwtmUfKU+NaDpY16nyh/qKfvBaEdszWI5d5+ebUze7QnPgKkbiwWnygMSddD8Ra1GrWzp4TcmQAfoga0ckvA==","shasum":"be2ba35c94d7ee3f24ddfd3d21b4a0795a399b1b","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.0.tgz","fileCount":5,"unpackedSize":5452,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmXY7CRA9TVsSAnZWagAAJiUP/22QBtwKeRd7DKtA5Uk4\nP9fStKKFCdxK8LlPUWAFe2/U7IeH1eBiTIRHY/jVYDVsewwstK4+wdLcHTIN\n06H+hyKFKDUI1LoEt3YEhrAq9CHC/g+O5H6ybVZcLqNgVjSa8Kh28h6eekrH\n/B1ooTwVise84GZqRkHE4bVgXkutST3donT1GSwXIl9uW1K1nhP32SyJa7bn\n5x2CF+i125tILwUsuiX7b1hbUmtAfWzl1hpqdkxmv8zA5sM6/+x7Q3d8QKxB\nSUNR+lcMhHY8qFE1+k3Ohoqn7Nr+JWT3YHjHwfupkirwjS/MIsnnnlMa0QCw\njEabC+uLRUy6TmoJ5fE6H0BPLg5TsmwNkGL3qBPwsa/HkIDHg+QBU/yImj2Q\nvmZKM8YrYwRy1rOmbMj1U/AO80A+aZm6cwc15JBUWEfV766YJTqokzLcERCz\nHcVguoujA8gJa8EmFyQfFm1BMtnerQWntB/4pNCPgVQcB50ENRWD9nFncazz\npCYivBT0Eom3tuCktyyIe7Rio4WOdAD4fCD71tsmC5c+3MZNMtzg3yBMl+eW\nBAmAJ5rY9f9BeF9R100t8h+eGac4VntTD/+pNEdrU2FOj/3H5FwQnQ6I1is7\nZW1oLxC5eRrY2OkrZ9G6Qvq6yP3CPeEpW426hrgbtU8HiBgwc/4tSY649Mbs\nABjC\r\n=QuB+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDM+DRe3tUdqbJrcCiMNTwntREtHi1UZGQkcojdTGsdBgIgTXgFvYtsAOAsaOTh8QvUSWjYOs8W/dXS+Q6ILFIAwSg="}]},"_npmUser":{"name":"eventualbuddha","email":"brian@donovans.cc"},"directories":{},"maintainers":[{"name":"eventualbuddha","email":"brian@donovans.cc"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/lines-and-columns_2.0.0_1637447227743_0.40634113968537044"},"_hasShrinkwrap":false,"deprecated":"please 2.0.1 or later"},"2.0.1":{"name":"lines-and-columns","version":"2.0.1","description":"Maps lines and columns to character offsets and back.","keywords":["lines","columns","parser"],"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"license":"MIT","author":{"name":"Brian Donovan","email":"brian@donovans.cc"},"type":"module","exports":"./build/index.js","types":"./build/index.d.ts","scripts":{"prebuild":"rm -rf build","build":"tsc --build tsconfig.build.json","build:watch":"tsc --build tsconfig.build.json --watch","lint":"eslint .","lint:fix":"eslint . --fix","prepublishOnly":"npm run lint && npm run build","test":"is-ci test:coverage test:watch","test:coverage":"jest --coverage","test:watch":"jest --watch"},"devDependencies":{"@types/jest":"^27.0.3","@types/node":"^16.11.9","@typescript-eslint/eslint-plugin":"^5.4.0","@typescript-eslint/parser":"^5.4.0","esbuild":"^0.13.15","esbuild-runner":"^2.2.1","eslint":"^8.2.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","is-ci-cli":"^2.2.0","jest":"^27.3.1","prettier":"^2.4.1","semantic-release":"^18.0.0","typescript":"^4.5.2"},"engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"gitHead":"d2aedf5349f43dcea50222a62c9fb4ccfd87f5db","_id":"lines-and-columns@2.0.1","_nodeVersion":"14.18.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-7rsOYyoMwr75yCekiYv4xp5LMXAYXtRI+eSOCaHdrwRe98DY5qQzMmOd+0U88/eFGsIrPO5yrNvcZnoauuG6QQ==","shasum":"5ff4eb28c1b4b90c9eba78898de1642e722de5d6","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.1.tgz","fileCount":5,"unpackedSize":5451,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmXnLCRA9TVsSAnZWagAALlEP/iLEM1siSHft/oaad58Z\nE1audSoibi7VxnIlu8VrUHHKjjZbywWAxBskbstdLdp8hk3WgydO0e8vSKG7\nk7q3YNd/4kCExGBJ/owYnF0vMkvqKyXy+Qvo4jkU93XuI52yhFvB+u5eCj5I\nsb8E3R4ipq995I1jY2AykYAme1/HxZScQ7PapR/74Wr9kwp5DkHwvPDu5+2b\ncGM5Xgb+pWWB+7m8LOMIBg+Sp3Jj1RA4BbhnejjxCDOC4pOIq2aOMk//377+\nyjtwxW+uMwvuJ4jNGcUAjPMqP+rtm8OEAzDfNO3iiY2kyQ3Vo7qnGpCzCiub\nHDMxzNejUxieclwKGGEKWA766ibiLVTmS6b0wo8WmJWSQ4heRjjkNnWSPAdB\nbvy/ZBy4e8iYKHf9Oxw+sAZ6mitSqpXAPF0/JGpzhoETDWLj7sKQccpJiS56\nxm6eCMgF4DLnE5UBghWvtYpSsy/Mys542arxFgw4cZfurcfwy4KHTPvgYMRN\ni3qpF18s3x2twpdL9xhVZtFu5YNsXfFWUg1o4H+O0tOwdtr1JxGUdbK5OiS2\nZAIgSNFZYz2FMTJ4TpP7o58WGTpYJkvM/eZtvhCT8i3XixN1fGQMx71YzKxc\nkt/7myb2Ik4ioc7pfK+of2eT+8YcldlLGBPbnng1tTIDrtzCZLLVtlAZiDjs\n4ylL\r\n=UPYT\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDQlsSSROY5P3Z8lBSaRnW5mbMrUDpOq8GSvocAAY7VhQIgFCZv0ohbfe8ldGzSdSkoI6ChZJhXQBFahP+GhEt3p58="}]},"_npmUser":{"name":"eventualbuddha","email":"brian@donovans.cc"},"directories":{},"maintainers":[{"name":"eventualbuddha","email":"brian@donovans.cc"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/lines-and-columns_2.0.1_1637448139567_0.5111330770496894"},"_hasShrinkwrap":false},"1.1.8":{"name":"lines-and-columns","version":"1.1.8","description":"Maps lines and columns to character offsets and back.","keywords":["lines","columns","parser"],"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"license":"MIT","author":{"name":"Brian Donovan","email":"brian@donovans.cc"},"type":"module","exports":"./build/index.js","types":"./build/index.d.ts","scripts":{"prebuild":"rm -rf build","build":"tsc --build tsconfig.build.json","build:watch":"tsc --build tsconfig.build.json --watch","lint":"eslint .","lint:fix":"eslint . --fix","prepublishOnly":"npm run lint && npm run build","test":"is-ci test:coverage test:watch","test:coverage":"jest --coverage","test:watch":"jest --watch"},"devDependencies":{"@types/jest":"^27.0.3","@types/node":"^16.11.9","@typescript-eslint/eslint-plugin":"^5.4.0","@typescript-eslint/parser":"^5.4.0","esbuild":"^0.13.15","esbuild-runner":"^2.2.1","eslint":"^8.2.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","is-ci-cli":"^2.2.0","jest":"^27.3.1","prettier":"^2.4.1","semantic-release":"^18.0.0","typescript":"^4.5.2"},"engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"gitHead":"213b884e58bfbbdcf54a855f10c0f0175d8f6d37","_id":"lines-and-columns@1.1.8","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-4nimUILxeva1mIa9C6uSFcO69vWL0sh6wnldXZG18c9r9M5Vp8fnI9XOcDZPNII7m+JMRwnzPL4N5C5tAcKEuQ==","shasum":"bcc1795411871b77192d8235a37b37f0c077f279","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.8.tgz","fileCount":5,"unpackedSize":5451,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmYAWCRA9TVsSAnZWagAADVQP/0gDgFVSxyyJFOCatZFe\nemvffjyFG/71kfdwJfXwuK6Id1XkeuiM6xG+6gFdkWtkMyW1zQIrsqM7Rl7D\nZhz1xU+Q5LyWmgVzjUYr0haCsVml8QqrfkXlKxCp39ZvA1K6l1a33KXiA2LW\nSbKmqqcj2yDyJSIVmABHfJ2JYH0WKaIkTRJbXhZmzc2FTM5NEQEZYuTzreKY\nHE/yeq9niw0kCrU9nx7SV3Z69v2dUI27DV7h84ZypIOd/yD5HP55zNPUNk9B\nEWJVgG5ErOAgOrhSeEXrR5jbHh4e+OPJZI8O04G+mbY+Hu5YLc+3OPpABOhO\nGLv3/gGrEu9nWG+gsiFk/Sr1aQS7JeE/R/5toHc2sUeFWVH95MJ+mI2asnzH\nxfWYO3lyuyGF+flNrWshDmyNCjmPxHGy/TjmgnIDPxPx4ccio3OQJEBOtgyp\nBJNfyMVX0gYIPlKhRbXCYlWPRZSLBgbOwUTRd/uKpwHiY445istPtr76PPRL\nYn4aoTodB9ub6AzdEBoxzSV0AMwnRrP+fq88y9gpL3p3eyYK8qQez6QEbLUZ\nhRLRRm+ZBjBB/GyV0JLueii7Oi38azZbgX8NOvCUb6k4v54Labrivbu/vgri\nseI7Z3fWtF+NTvByrlOuUUvQVjX2Yiuc/y5cWuBnNibV7RFlXSkr6bU/pQy7\npLXi\r\n=JohI\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCt91FGWL6Q4QD6LKmLzjKVPg5v7TpWmNSbpG9s/WbUmAIhALiHRnhIDc4fGc2sHyZMGahAUAeFGzSBzMwu5QJS265v"}]},"_npmUser":{"name":"eventualbuddha","email":"brian@donovans.cc"},"directories":{},"maintainers":[{"name":"eventualbuddha","email":"brian@donovans.cc"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/lines-and-columns_1.1.8_1637449750624_0.41938497636709804"},"_hasShrinkwrap":false,"deprecated":"use 1.1.10 or later"},"1.1.9":{"name":"lines-and-columns","version":"1.1.9","description":"Maps lines and columns to character offsets and back.","keywords":["lines","columns","parser"],"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"license":"MIT","author":{"name":"Brian Donovan","email":"brian@donovans.cc"},"type":"module","main":"./build/index.cjs","exports":{"import":"./build/index.mjs","require":"./build/index.cjs"},"types":"./build/index.d.ts","scripts":{"build:watch":"tsc --build tsconfig.build.json --watch","lint":"eslint .","lint:fix":"eslint . --fix","test":"is-ci test:coverage test:watch","test:coverage":"jest --coverage","test:watch":"jest --watch"},"devDependencies":{"@types/jest":"^27.0.3","@types/node":"^16.11.9","@typescript-eslint/eslint-plugin":"^5.4.0","@typescript-eslint/parser":"^5.4.0","esbuild":"^0.13.15","esbuild-runner":"^2.2.1","eslint":"^8.2.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","is-ci-cli":"^2.2.0","jest":"^27.3.1","prettier":"^2.4.1","semantic-release":"^18.0.0","typescript":"^4.5.2"},"engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"gitHead":"f405090a3a69b431e1deca879531ae38fa73edb0","_id":"lines-and-columns@1.1.9","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-rpDZBibnmaf8snIGG4CWqx5aAztoEeXWdLghALF202x6eS0FrbPxZnNf/NSeWkepOgNVsD4avd1FBg5kvvZIDA==","shasum":"a5fdcb01d06bf3825c4ba120a7d96c6792184cae","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.9.tgz","fileCount":6,"unpackedSize":7493,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmYF3CRA9TVsSAnZWagAAo0AQAIfQFEB+r97WjRbVXEHZ\nNukVaGOy+9vdgDsk2pbuVcoQwfTQenM0h1ll8JI/SSlMiDu3fBaO1t+emRP6\ngFdx6Tl+BX9Jssm3jb+IhFQIAHZ2l9wAeoHodrra46i3zmAwAbxV92etixrV\nW1L+Xzv3gFIDvMYmzeMIcFgTFsyx1bT5/VKnqVIklqUjOT6vJJlhirkmMigH\n6F/r9qh0yZ+Ny28BX91Dkuo5je3mymjKI3YYQieROmq9B9yY9Suu7kMl0Pjc\nW7Vz2Vry5DDDX79Xg0Ai4cf/jtA0IOhl2YgAdItwWCpUQsK7jYzwdhtw1FFG\nIKQIKRoO79Dz+ymgvrXGas5KJknfvWUHkW5WLFsmIMqS1hefjAPnl6zijYhH\ndpLZmpeuONjIAO0DoDKrft9tDu6wgbrDPIq9ureo7ZOH+HMHyrawK+RQeUvN\nNtrXIa/Nbyx6LyrdjSXPTCg8xd/QECZVc0Ursggm9eY+X02A7zLOYfk31hlv\nLknKXVl12x+UGCZ1sdg2Hrs38q5ko2WNWslQUkg5dNWMHlkpIZLokHxX2aRY\nGpHFaMgcjwonPijoMQGH0bqYUmKMMT+AZIWPsTHsyVu1vNi5MA6z78zcRkls\nR5gSEG0W7TEVqZE6CX3lAMWZSmB7ebMPdSigq720pO3gEhFKTB1crxf9yIGS\n7Lt4\r\n=kQkj\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDVtDIG4o3inbbegCkGZLHQZRevI+hACBGt5oqzAWb73gIgYN36nDnCwCzk1BcKFFftGWFmqKgCwDCygDQ9uDEQk4g="}]},"_npmUser":{"name":"eventualbuddha","email":"brian@donovans.cc"},"directories":{},"maintainers":[{"name":"eventualbuddha","email":"brian@donovans.cc"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/lines-and-columns_1.1.9_1637450103213_0.43000422555653883"},"_hasShrinkwrap":false,"deprecated":"use 1.1.10 or later"},"1.2.1":{"name":"lines-and-columns","version":"1.2.1","description":"Maps lines and columns to character offsets and back.","keywords":["lines","columns","parser"],"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"license":"MIT","author":{"name":"Brian Donovan","email":"brian@donovans.cc"},"type":"module","main":"./build/index.cjs","exports":{"import":"./build/index.mjs","require":"./build/index.cjs"},"types":"./build/index.d.ts","scripts":{"build:watch":"tsc --build tsconfig.build.json --watch","lint":"eslint .","lint:fix":"eslint . --fix","test":"is-ci test:coverage test:watch","test:coverage":"jest --coverage","test:watch":"jest --watch"},"devDependencies":{"@types/jest":"^27.0.3","@types/node":"^16.11.9","@typescript-eslint/eslint-plugin":"^5.4.0","@typescript-eslint/parser":"^5.4.0","esbuild":"^0.13.15","esbuild-runner":"^2.2.1","eslint":"^8.2.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","is-ci-cli":"^2.2.0","jest":"^27.3.1","prettier":"^2.4.1","semantic-release":"^18.0.0","typescript":"^4.5.2"},"engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"gitHead":"9b5d514e12b8ef3b56f9396c28c3518e2cae118d","_id":"lines-and-columns@1.2.1","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-91ZNKhhjixyL5pQ0a6Chny53eg1Q7usO/eaU6Jjws6BhclcINGKG4zDkA6Wq11pZ6oqvElwBV+rnRTfG7t1Xmw==","shasum":"2710d566aed4caeb6761f4c78d94435f15a939e9","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.1.tgz","fileCount":6,"unpackedSize":7493,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmYH/CRA9TVsSAnZWagAACkEP/3Sayx/QxgUKM3/BXQvU\nSFqZsRDE/Dqb1Zncg3cUooUB+JTyVmwnI2uL/B6hiJ0oNBsj7jhab6sVfDIa\n3bDyOYpljQNEoeAoG5riJ7D0xArsKufqYJHiOXGvesF9adXOvBebE5BiW6Oc\n9XSxzgoGgShWzDoYccVU6Y7dsmxe4Vr6kVymsqQ2jRr9Le8vAMCiVsIaNnl0\nKVy+PKe8XAWqsCEqSBk/lDJBwsq08es/vpKZe5vL86D/Nci/qtpEqvE84YD6\nG2NCrAVU2QoVC//OewrGZpFL6xE+xdT3s3X67QnwG1bSjDIErWNriM+VrPOS\nd/NxDALFnsgv935YDcPpt+Kx0j4zzz5WYeUIDVuQd4sQEYV+FYG/Qjy+htho\nXx3koA1uzsTRwDe13et+P/Nahj6rd+T1kQjHW1B0I0+xTR/MQvhO6EvuABd7\nqWlq+2JzNgbuyMYE69vk9QOH6xyZj0TwrFDkqW3xrf/9BA3OBe/4f7/HImkY\nbq78txpV7W6jIDaXlYu0Led2FTVMODK+1gJ0B1z0sXbG97oxGd+OVf51+vew\np/yAopYRWPPWaGAP43AUbFtux7NtelU4qMOs02h7tmAEYvsK+G93EPysIZKy\n98kNhzQ+q46BjVgu4Sz3sW+SCEZvZoNQfNDnSC1XynKL+ftV6MZuf6j94zxu\n6vs9\r\n=TQwt\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDri3R7XUPMeLVAKIo4meRiAIQg9jA963i10MLqYkwHgAIgMxaqw2JmjYPeRk5Z5r6JE9OExrtkvfdt9DFX3NMWRaI="}]},"_npmUser":{"name":"eventualbuddha","email":"brian@donovans.cc"},"directories":{},"maintainers":[{"name":"eventualbuddha","email":"brian@donovans.cc"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/lines-and-columns_1.2.1_1637450239485_0.44838416996774044"},"_hasShrinkwrap":false,"deprecated":"use 1.2.3 or later"},"2.0.2":{"name":"lines-and-columns","version":"2.0.2","description":"Maps lines and columns to character offsets and back.","keywords":["lines","columns","parser"],"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"license":"MIT","author":{"name":"Brian Donovan","email":"brian@donovans.cc"},"type":"module","main":"./build/index.cjs","exports":{"import":"./build/index.mjs","require":"./build/index.cjs"},"types":"./build/index.d.ts","scripts":{"prebuild":"rm -rf build","build":"tsc --project tsconfig.build.json && mv build/index.js build/index.mjs && tsc --project tsconfig.build.json --module commonjs && mv build/index.js build/index.cjs","build:watch":"tsc --project tsconfig.build.json --watch","lint":"eslint .","lint:fix":"eslint . --fix","prepublishOnly":"npm run lint && npm run build","test":"is-ci test:coverage test:watch","test:coverage":"jest --coverage","test:watch":"jest --watch"},"devDependencies":{"@types/jest":"^27.0.3","@types/node":"^16.11.9","@typescript-eslint/eslint-plugin":"^5.4.0","@typescript-eslint/parser":"^5.4.0","esbuild":"^0.13.15","esbuild-runner":"^2.2.1","eslint":"^8.2.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","is-ci-cli":"^2.2.0","jest":"^27.3.1","prettier":"^2.4.1","semantic-release":"^18.0.0","typescript":"^4.5.2"},"engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"gitHead":"1596423297c02ea1dd4f28fbfa07a5dfc8ff6e25","_id":"lines-and-columns@2.0.2","_nodeVersion":"14.18.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-RaBDLqsC4A5/YmPV5DENC2/Q4DaXsk89b+jhUFPl0kvkztkyjGnJAH0I6Bcze/fO06ieP0NxTM+02iXFlt0OZQ==","shasum":"84de68939c83376b568327a156899c64a369f4d5","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.2.tgz","fileCount":6,"unpackedSize":7659,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDYZTKmiQaKKsmMlBwsumn4hnQ+p3ihHd3Ax6x5ULft5gIhAMObQx0sqUbv+n3lOXEXMutw3hVkZKBmESF0eqz1vAyT"}]},"_npmUser":{"name":"eventualbuddha","email":"brian@donovans.cc"},"directories":{},"maintainers":[{"name":"eventualbuddha","email":"brian@donovans.cc"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/lines-and-columns_2.0.2_1637450926833_0.25550799192942764"},"_hasShrinkwrap":false},"1.2.2":{"name":"lines-and-columns","version":"1.2.2","description":"Maps lines and columns to character offsets and back.","keywords":["lines","columns","parser"],"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"license":"MIT","author":{"name":"Brian Donovan","email":"brian@donovans.cc"},"type":"module","main":"./build/index.js","types":"./build/index.d.ts","scripts":{"build:watch":"tsc --build tsconfig.build.json --watch","lint":"eslint .","lint:fix":"eslint . --fix","test":"is-ci test:coverage test:watch","test:coverage":"jest --coverage","test:watch":"jest --watch"},"devDependencies":{"@types/jest":"^27.0.3","@types/node":"^16.11.9","@typescript-eslint/eslint-plugin":"^5.4.0","@typescript-eslint/parser":"^5.4.0","esbuild":"^0.13.15","esbuild-runner":"^2.2.1","eslint":"^8.2.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","is-ci-cli":"^2.2.0","jest":"^27.3.1","prettier":"^2.4.1","semantic-release":"^18.0.0","typescript":"^4.5.2"},"engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"readme":"# lines-and-columns\n\nMaps lines and columns to character offsets and back. This is useful for parsers\nand other text processors that deal in character ranges but process text with\nmeaningful lines and columns.\n\n## Install\n\n```\n$ npm install [--save] lines-and-columns\n```\n\n## Usage\n\n```js\nimport { LinesAndColumns } from 'lines-and-columns'\n\nconst lines = new LinesAndColumns(\n `table {\n border: 0\n}`\n)\n\nlines.locationForIndex(9)\n// { line: 1, column: 1 }\n\nlines.indexForLocation({ line: 1, column: 2 })\n// 10\n```\n\n## License\n\nMIT\n","readmeFilename":"README.md","gitHead":"88c0068267d24b990775630f05137b720d0802c5","_id":"lines-and-columns@1.2.2","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-nXjfuvceZmVgD6K/cDwDU4tVAwTqjZfLRqcBSX33Efu5/RA7hRhuNOzKw1YugxVqNbf+pfhglAaKQs8jn/KLSw==","shasum":"f74afb0ad97d43cf72df6bc99611d3abe08e4175","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.2.tgz","fileCount":5,"unpackedSize":5473,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmZLHCRA9TVsSAnZWagAA08wQAIwGpq/POa65Ws+5Seh6\nzM3d6LQINjShACE8wsl+mbn8DoXoYriM5v6DjohIQQng6K5F/EFfZX7qRjLp\nymdhLIle/h2hZCmV0RYSPXoM441UBIteop96ErrDJXOsl1Ke6VQXY2BHF9Nj\nPtF8un+eTsAdIJN1zIOcJGZYkZKuaGqpbKRVDAVRZCMvuXwJpGXUocyCO09E\nlvj/c/iBWPzOyC6APl1wrdGFtAIu9FzsbXh1r7Y5I889Y0AKK9uyPRUSp3Jp\nQtTphnILnmiqSjg+y6f9yKqN1DBKErpsEJuWYve2lbmHbtLubsVRulEmQqGR\nHvBAQmOuU0moIqzpGoRvxcDOGtwCuyBEJ1pK4yxzmTxB55Lx+9lcC3bDAZpg\nVUaYD1/O/K3RBO1dMoaDUtxU8qNvPHmUDwI7ElcO/Cr9rsW1vaQfPE8h4eUQ\nux4DjF/EhI1kMMmIQsMEpw4WtcUBCvBD5pJO1VETpADsQxCMzmcR2GziFe9q\nZFjmpGeQFcyelCqKmQ2nu0/92/IwnEuPtNx5xegNKbTVf4hUSKPp1/D+qh/L\nALdHTXTnsDggIad9GlnjW52GJMo6eULWIcB1i3wuOKDUadQzlrN4q7GLWFhz\nv8ylJVVGeAmenphkkymsBgMUr6ZNgVP0TPuoFTFLpbg+zn+u5S8aPtbOUJaC\nZrju\r\n=uUbQ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB4PUhFx7QypSVSNI3+Ygo0Oxab3wS4uyu9MkzUho45bAiEA54JMP4VcShyH+CYeREoAGPiDgsDrhWsdIu6Ojg/1X0s="}]},"_npmUser":{"name":"eventualbuddha","email":"brian@donovans.cc"},"directories":{},"maintainers":[{"name":"eventualbuddha","email":"brian@donovans.cc"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/lines-and-columns_1.2.2_1637454535337_0.15639165278752087"},"_hasShrinkwrap":false,"deprecated":"use 1.2.3 or later"},"1.2.3":{"name":"lines-and-columns","version":"1.2.3","description":"Maps lines and columns to character offsets and back.","keywords":["lines","columns","parser"],"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"license":"MIT","author":{"name":"Brian Donovan","email":"brian@donovans.cc"},"main":"./build/index.js","types":"./build/index.d.ts","scripts":{"build:watch":"tsc --build tsconfig.build.json --watch","lint":"eslint .","lint:fix":"eslint . --fix","test":"is-ci test:coverage test:watch","test:coverage":"jest --coverage","test:watch":"jest --watch"},"devDependencies":{"@types/jest":"^27.0.3","@types/node":"^16.11.9","@typescript-eslint/eslint-plugin":"^5.4.0","@typescript-eslint/parser":"^5.4.0","esbuild":"^0.13.15","esbuild-runner":"^2.2.1","eslint":"^8.2.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","is-ci-cli":"^2.2.0","jest":"^27.3.1","prettier":"^2.4.1","semantic-release":"^18.0.0","typescript":"^4.5.2"},"engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"readme":"# lines-and-columns\n\nMaps lines and columns to character offsets and back. This is useful for parsers\nand other text processors that deal in character ranges but process text with\nmeaningful lines and columns.\n\n## Install\n\n```\n$ npm install [--save] lines-and-columns\n```\n\n## Usage\n\n```js\nimport { LinesAndColumns } from 'lines-and-columns'\n\nconst lines = new LinesAndColumns(\n `table {\n border: 0\n}`\n)\n\nlines.locationForIndex(9)\n// { line: 1, column: 1 }\n\nlines.indexForLocation({ line: 1, column: 2 })\n// 10\n```\n\n## License\n\nMIT\n","readmeFilename":"README.md","gitHead":"202600ade7764fad528c0621d7640c43e535d4d1","_id":"lines-and-columns@1.2.3","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-bQEvPBbeyPQGdQ/1H/tnLUz0479EH/9pHxCe3TGRQFxpg/PIbBeTUwpm7xyewdFfHjKLGidU/lSH1QkF+i8HUg==","shasum":"3360dbb0dfffd23a6ad0300135efacb50f50eb73","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.3.tgz","fileCount":5,"unpackedSize":5453,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmZM/CRA9TVsSAnZWagAAtnYQAIcGEoNmDTkeHC10MGTj\nX/71yuCaQZhaZKSD3sbATqNdTG7gV6HA8GP9Gs2zXmC+DfyDYIdJO4Eafclo\nEtulNcfZDmjMQeqBvyXw/jmCNUejxM2BD6gFZNOdb753ndEv/Qg2DB1B9Wlu\ne7+cLBrb6y/GPmBPoQknORjggOR4RTg3OU22dte5r+rrbkLDLxb8f+ranGnF\nbwrozis+zfH1mH9KQAwYMxm9Fm+5M4TDRPeYZfAH57+6yM+VwKxcJQJSKmJa\njzYWdbfJefMwtT/80NzhILkQyRtbhX5yrfNkluLvqca8YWQ37WoEgnD7se9+\nv1YBoWM3jyS+icBYDXU6r+nhCC2sA4ZZsz3/o5SfIQ+JkyG9+eHG7AK4GLQx\nmty2ZqRGL+LNwXj8tNI4mFIsMEZWpk75XxJnnqcHQlYvKSkecCJkegRUncQT\nmVUJxOYAUQ1lyXmpFioZqIEL7nW5X33b0bHj6g8WmgIv6NXGK/eo0spYVM0m\nsI9A4oPgrTHowhhkvj4huNV6Tkgm1M6V7i8QhJVpsgxnvqb6UZC57nxxxNyV\nsrp3l4fMRqCIDEmU/8Cfd8XYZcOiFJruPKWUb3KHE14uCmbJhlZ56d6HQ7Fr\np2xPc4stPpbXlI2eyQpElg5qkflzEO3tcHNefB9DpTO4FPOc5o0rI6pFNbSA\noEBT\r\n=ltsJ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEj8q87wr+aoHUWSwPR77tgcGfC22k5yV/+09bto1IX6AiBOap0ffwBafM8a08S+xorRI+vmoT14FjuwVTN1IgiWMg=="}]},"_npmUser":{"name":"eventualbuddha","email":"brian@donovans.cc"},"directories":{},"maintainers":[{"name":"eventualbuddha","email":"brian@donovans.cc"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/lines-and-columns_1.2.3_1637454655610_0.309924235629945"},"_hasShrinkwrap":false},"1.1.10":{"name":"lines-and-columns","version":"1.1.10","description":"Maps lines and columns to character offsets and back.","keywords":["lines","columns","parser"],"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"license":"MIT","author":{"name":"Brian Donovan","email":"brian@donovans.cc"},"main":"./build/index.js","types":"./build/index.d.ts","scripts":{"build:watch":"tsc --build tsconfig.build.json --watch","lint":"eslint .","lint:fix":"eslint . --fix","test":"is-ci test:coverage test:watch","test:coverage":"jest --coverage","test:watch":"jest --watch"},"devDependencies":{"@types/jest":"^27.0.3","@types/node":"^16.11.9","@typescript-eslint/eslint-plugin":"^5.4.0","@typescript-eslint/parser":"^5.4.0","esbuild":"^0.13.15","esbuild-runner":"^2.2.1","eslint":"^8.2.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","is-ci-cli":"^2.2.0","jest":"^27.3.1","prettier":"^2.4.1","semantic-release":"^18.0.0","typescript":"^4.5.2"},"engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"readme":"# lines-and-columns\n\nMaps lines and columns to character offsets and back. This is useful for parsers\nand other text processors that deal in character ranges but process text with\nmeaningful lines and columns.\n\n## Install\n\n```\n$ npm install [--save] lines-and-columns\n```\n\n## Usage\n\n```js\nimport { LinesAndColumns } from 'lines-and-columns'\n\nconst lines = new LinesAndColumns(\n `table {\n border: 0\n}`\n)\n\nlines.locationForIndex(9)\n// { line: 1, column: 1 }\n\nlines.indexForLocation({ line: 1, column: 2 })\n// 10\n```\n\n## License\n\nMIT\n","readmeFilename":"README.md","gitHead":"4a49b9d06430260762411f08143c5c83f99f4f7d","_id":"lines-and-columns@1.1.10","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-aDLy3yn9C/nOFPoH6DolAGBlJ5fjLPjPtNMA5rtUvmTQfg67sDcPURcCUbwuIdcewMQ3Kv90s/2W1Hkd6PRSNw==","shasum":"72d31c564ea5f3f6f12cfc43e157471f522e232f","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.10.tgz","fileCount":5,"unpackedSize":5454,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmZOuCRA9TVsSAnZWagAANGcP/iyyWtDX56WeQA0zPjQW\nVsn1mjGm0sE0nm6uVwaYs10mZen/HuDRKKw4iyvbbpm1QVw4jp1GfqZPSdpb\nO44sg8IWY2onNKg4P3xtkvMR3q31AwThSwaFCB+3trr5Sdq5lGYacIOc9/+T\n5vxekfbltRGVcnllqjSpXnBFx6hD139/CCrEcuJQiqPF1VzyfRsw0Hb8x93t\nUuiJT5slvEfwyfLBvy5negsLpShVlJXzu6JQ0hHUdLJe8opYPz9xgNHkEBFg\n/ye8cCA7pz2exr8jmj3vVFzVzRlZT0xSbwmWLYYCl2fIjinaQgYUthMw25Ey\n3wWC6kmZNSXzLq13hcALNyQVR/4tJOoFFqqNkn4f3iPkNFZ6MEFrMaU329lS\nochScTxXT2Ecu2d4umEaPclga7cQVxlR3Oa4Y68d9GPmucNyYtl330IuTWm4\nYdtVEN4W4WocS/sPtI02zWtUjrt4QdZhLr6Sw1jX8XSiAEOk/IhEuDndMw5k\n8Uy9qmKNBSAwa4X4FhVq55MYnWhEJF6JCJOqGSGhW135RoPjIiOUqDu5ifHX\nWchCNZCQWnGiiR3nfkptXEk4v7dwAgW8Hy6aSOM0uMxa4Kv2f6c31ufNAF7U\nrXYLzuxNAd7B+UW4KhHdlymXjHBgJ48acbGhQ7ayTaeZ/EOVmSIe9eA3MeF9\ndVsz\r\n=HNMk\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF4tmoniMdunowUHvTIQoT3SMzw8IevO98hId5gYDOIeAiAWTxyxw9ezME+z5bxM56orq6nKxGq6VskHnmsSgEPkNw=="}]},"_npmUser":{"name":"eventualbuddha","email":"brian@donovans.cc"},"directories":{},"maintainers":[{"name":"eventualbuddha","email":"brian@donovans.cc"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/lines-and-columns_1.1.10_1637454766267_0.9413256950847306"},"_hasShrinkwrap":false},"1.1.11":{"name":"lines-and-columns","version":"1.1.11","description":"Maps lines and columns to character offsets and back.","keywords":["lines","columns","parser"],"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"license":"MIT","author":{"name":"Brian Donovan","email":"brian@donovans.cc"},"main":"./build/index.js","types":"./build/index.d.ts","scripts":{"build:watch":"tsc --build tsconfig.build.json --watch","lint":"eslint .","lint:fix":"eslint . --fix","test":"is-ci test:coverage test:watch","test:coverage":"jest --coverage","test:watch":"jest --watch"},"devDependencies":{"@types/jest":"^27.0.3","@types/node":"^16.11.9","@typescript-eslint/eslint-plugin":"^5.4.0","@typescript-eslint/parser":"^5.4.0","esbuild":"^0.13.15","esbuild-runner":"^2.2.1","eslint":"^8.2.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","is-ci-cli":"^2.2.0","jest":"^27.3.1","prettier":"^2.4.1","semantic-release":"^18.0.0","typescript":"^4.5.2"},"readme":"# lines-and-columns\n\nMaps lines and columns to character offsets and back. This is useful for parsers\nand other text processors that deal in character ranges but process text with\nmeaningful lines and columns.\n\n## Install\n\n```\n$ npm install [--save] lines-and-columns\n```\n\n## Usage\n\n```js\nimport { LinesAndColumns } from 'lines-and-columns'\n\nconst lines = new LinesAndColumns(\n `table {\n border: 0\n}`\n)\n\nlines.locationForIndex(9)\n// { line: 1, column: 1 }\n\nlines.indexForLocation({ line: 1, column: 2 })\n// 10\n```\n\n## License\n\nMIT\n","readmeFilename":"README.md","gitHead":"2add0e01a821878b3f9184c321d82d62cb9e397f","_id":"lines-and-columns@1.1.11","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-UewVW4JbFN3c0XERx53POdcTx1/bnXGaAtR7gFLQxORgkpZP0VDg6Y5GddrOVx2abR1aG4cWf3x4DfA1WspMKA==","shasum":"ca5695c70af5b6c3194fd87fa6e584dc2ddcf053","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.11.tgz","fileCount":5,"unpackedSize":5387,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmb1cCRA9TVsSAnZWagAAyZYQAIy8ZVU8LPQRHsnn0PQb\nGxr0Yg3Eb38pzIpvvNPmhxDQ2fc/TNvQDYYqVVSsjdtzK94usptCjg2ChnjL\n5Zsse0K7i53bmKiUxEmGR7PmBxRAHeWKfZmjUGAf3WpUa40f83Hi2KQwjVY6\nhbxpYSMb4V5Tda1/ilKzs8mWFcvAKl1PyHFOMnIoMs8WHFlCgPjK0sEh3n1W\nhm5ZOy/NxYp0iO/pvDaf7BPZu9X/ysP0asi0oBJ+fMtyQ5G3eYBcIIPO9oMC\ngkFQ4eTQUFOeCmR7+n+vmiN8ZjKiA2flhqhomfP95/zr6WcBcvCfmxwfPW8r\nTfJd+in+ZEPS56o1mdbn9GBh2zWIltJzyAU5wwfDAv0+LNlFrc/qVFjnBF89\nCrwyABy0QUxq9eFRIan+YY0GSAmx3lbOqMkdUppgPq21EOndG+/j/jtFM33a\n8g7nP7rIjMrOLFsP3/g6LFS++7xrbXdliV+7bfQpSGDW4ZZkdRhTaL+qQ0Lh\nD6N6vXBWCfShuPUsLr/6l1x/lTywFqIboy2fCMqAC8N0Z8BYGKRnf7bGoMEy\nHVZtbX09mk1rn2e0nwzkW1unlMHU926Jjyw0zrClbh3UJwIUKxrmuUjE187w\nur5+tCeCx8YPEDZPhEGAfHofQDR0Qmet+fwj2a29KGGExPu3mOQE71gT0sDv\nYLYB\r\n=t1G8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDGIQzc/1R2Oxur6XFLJh9SH/GR0r1Jy05QL1UMkVTn8QIhAKNBoAv1GGSDNyw6ujkNJQWp2OcBwz9dCLNZzlUjgIT8"}]},"_npmUser":{"name":"eventualbuddha","email":"brian@donovans.cc"},"directories":{},"maintainers":[{"name":"eventualbuddha","email":"brian@donovans.cc"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/lines-and-columns_1.1.11_1637465435935_0.013558742045275629"},"_hasShrinkwrap":false},"1.2.4":{"name":"lines-and-columns","version":"1.2.4","description":"Maps lines and columns to character offsets and back.","keywords":["lines","columns","parser"],"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"license":"MIT","author":{"name":"Brian Donovan","email":"brian@donovans.cc"},"main":"./build/index.js","types":"./build/index.d.ts","scripts":{"build:watch":"tsc --build tsconfig.build.json --watch","lint":"eslint .","lint:fix":"eslint . --fix","test":"is-ci test:coverage test:watch","test:coverage":"jest --coverage","test:watch":"jest --watch"},"devDependencies":{"@types/jest":"^27.0.3","@types/node":"^16.11.9","@typescript-eslint/eslint-plugin":"^5.4.0","@typescript-eslint/parser":"^5.4.0","esbuild":"^0.13.15","esbuild-runner":"^2.2.1","eslint":"^8.2.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","is-ci-cli":"^2.2.0","jest":"^27.3.1","prettier":"^2.4.1","semantic-release":"^18.0.0","typescript":"^4.5.2"},"readme":"# lines-and-columns\n\nMaps lines and columns to character offsets and back. This is useful for parsers\nand other text processors that deal in character ranges but process text with\nmeaningful lines and columns.\n\n## Install\n\n```\n$ npm install [--save] lines-and-columns\n```\n\n## Usage\n\n```js\nimport { LinesAndColumns } from 'lines-and-columns'\n\nconst lines = new LinesAndColumns(\n `table {\n border: 0\n}`\n)\n\nlines.locationForIndex(9)\n// { line: 1, column: 1 }\n\nlines.indexForLocation({ line: 1, column: 2 })\n// 10\n```\n\n## License\n\nMIT\n","readmeFilename":"README.md","gitHead":"3389156275890966091dec7611105fa5d47eb964","_id":"lines-and-columns@1.2.4","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==","shasum":"eca284f75d2965079309dc0ad9255abb2ebc1632","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz","fileCount":5,"unpackedSize":5386,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmb17CRA9TVsSAnZWagAAguoQAIJBXpCvs7iskM9Oc5ch\nz0+lWCHNwncm+VIXaRJYZoLir4XVONiF+feLSEmZx87uR8QY41EP2eTHjZ+b\n0BnlUWNQFbuQmDb9QUBxgvOXM4tgedxNFWTeyG+cNaykKUJW6LqrQ6AxmLKE\n7UsSn7MYy8CxDTDSHZ9cdvS/C7ClPgFxp2mrD4o99jk70dS/rgLMsUwwwHPT\nn7TP7jDAEACOp2wiE+h7EBhO5D6bZE0pSf46Ov8nILJFJmJdZuMb6ZJSvljA\n4iualY5RlIMwM6E2Kt7HyDwk1EcKn5yK2zWehebS9hnh2jRIZ5eXWDpEE+n4\nQ3KI4au1NHmdwHvlfQiq2V3JslCgcJkHP4hn8ygM4TuqE7ZSMmXvcuS18crd\nxiRcmx6Eyhk6nCGobvoNf1mt1NfTQqwH/1TiQ/GD+/Ixxknx3paJ8fbd5ehy\nZ5KOfzN8eFjIhM+BBIhc22NgdbpEhWCrwc6ltSGw995J/lA2RzNXsifk5Cfd\n1my1QtO49qU50LcEl+c1Fx/FadMWTFiqknsoETljiTU/kqhFpjveX1rNZ2h0\nQSOCXhjIKMPnREvAGSaysBvMtdrnQQFHmUi9lXZaabuKTC/+xcmmwVzdlMN+\nREmd5gNIurK+syIquhrML7APVFDJSoGbW96FRrvZv3irKPg0yllhireo68mA\n9OQh\r\n=D3U5\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDDozT4lVm3UQbTEUHPrOZswpxaIfRxc0JXzz5K2t5UBAiA4xixyywcCsxdpVcdXg2mYmvqlM8YSUGjaQV+tVLbhaA=="}]},"_npmUser":{"name":"eventualbuddha","email":"brian@donovans.cc"},"directories":{},"maintainers":[{"name":"eventualbuddha","email":"brian@donovans.cc"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/lines-and-columns_1.2.4_1637465467723_0.5441094030662781"},"_hasShrinkwrap":false},"2.0.3":{"name":"lines-and-columns","version":"2.0.3","description":"Maps lines and columns to character offsets and back.","keywords":["lines","columns","parser"],"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"license":"MIT","author":{"name":"Brian Donovan","email":"brian@donovans.cc"},"type":"module","main":"./build/index.cjs","exports":{"import":"./build/index.mjs","require":"./build/index.cjs"},"types":"./build/index.d.ts","scripts":{"prebuild":"rm -rf build","build":"tsc --project tsconfig.build.json && mv build/index.js build/index.mjs && tsc --project tsconfig.build.json --module commonjs && mv build/index.js build/index.cjs","build:watch":"tsc --project tsconfig.build.json --watch","lint":"eslint .","lint:fix":"eslint . --fix","prepublishOnly":"npm run lint && npm run build","test":"is-ci test:coverage test:watch","test:coverage":"jest --coverage","test:watch":"jest --watch"},"devDependencies":{"@types/jest":"^27.0.3","@types/node":"^16.11.9","@typescript-eslint/eslint-plugin":"^5.4.0","@typescript-eslint/parser":"^5.4.0","esbuild":"^0.13.15","esbuild-runner":"^2.2.1","eslint":"^8.2.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","is-ci-cli":"^2.2.0","jest":"^27.3.1","prettier":"^2.4.1","semantic-release":"^18.0.0","typescript":"^4.5.2"},"engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"gitHead":"5febeb9674ded91908d3893581224f64111d95c3","_id":"lines-and-columns@2.0.3","_nodeVersion":"14.18.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==","shasum":"b2f0badedb556b747020ab8ea7f0373e22efac1b","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz","fileCount":6,"unpackedSize":7657,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhnFzFCRA9TVsSAnZWagAA+C4P/3KQhvKs5A1BkFWOP4tL\nZiccD2HrBpIny7DOL5rEPdtyeHe9aJIBwNwNAT9k9ISJexZYr95aatmL7KfJ\nh+E2niEz/uB58SBWg7GKeQGJVOPo025eVgbR/V39qVn9bGUBemlSkjIC5fhO\nNVK7xZ4OMmV8ShDNDheJ4fwO7Cy2Yu5lqFvRMMkfKDqhUtv4zWf0Dymc1TgI\nw2fqnraReaxZF6aA40ewTHLkLheSKSzdw58d/mdOdHGreCuKyyB4mPMCyQlo\nN3n3yzYLsqIssPG9xWPa5pzA0qZJMIkz8uWM83KpE0BUrr64z3RC2C/kSK7O\nY95si/A0EKOuGU3J4hcAf9SVAYyP4ZLeQBRx0eid7df7k0Sc5/A4/OnA1BNR\ndFRX4NVewwaVuUXbuSByzji3GuSCvsiHgq2E2O9qfH+RGIKFJA9jafNbckmP\nXEr8LHFiNa5WBiQ7fhxUqwLoFLwZX3PCzBAFPLg5Yb4O0LU1f14BbO/6e8Uj\n40s09GTWxM3QWSj1G9nazK4sF3CaIcVnD5O6F74pGikd3EDTizOrS5Ejyg6C\nEkLQWNHSH5Sz1MQWEcM2Z9LGF1JZBitNBMZM/fGeqpFkd8Wh732vVsL6hMz8\ncYjZWxQccitIUbe8CCdVh0UwlEUJsLxDkZGaTWo7YG3u8fKw5JLX6Dh2To64\ndYU1\r\n=EVIP\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDRUQbmPoUvotF/PZFSjF5VNRhRGdmi4AYD2ZFc0TRaCAiABQcFOwUdZidPJGnTUWpiZvNyBhhy7vWh9AuK0Mu3jAg=="}]},"_npmUser":{"name":"eventualbuddha","email":"brian@donovans.cc"},"directories":{},"maintainers":[{"name":"eventualbuddha","email":"brian@donovans.cc"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/lines-and-columns_2.0.3_1637637316867_0.07975102360943587"},"_hasShrinkwrap":false},"2.0.4":{"name":"lines-and-columns","version":"2.0.4","description":"Maps lines and columns to character offsets and back.","keywords":["lines","columns","parser"],"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"license":"MIT","author":{"name":"Brian Donovan","email":"brian@donovans.cc"},"type":"module","main":"./build/index.cjs","exports":{"import":"./build/index.mjs","require":"./build/index.cjs","types":"./build/index.d.ts"},"types":"./build/index.d.ts","scripts":{"prebuild":"rm -rf build","build":"tsc --project tsconfig.build.json && mv build/index.js build/index.mjs && tsc --project tsconfig.build.json --module commonjs && mv build/index.js build/index.cjs","build:watch":"tsc --project tsconfig.build.json --watch","lint":"eslint .","lint:fix":"eslint . --fix","prepublishOnly":"npm run lint && npm run build","test":"is-ci test:coverage test:watch","test:coverage":"jest --coverage","test:watch":"jest --watch"},"devDependencies":{"@types/jest":"^27.0.3","@types/node":"^16.11.9","@typescript-eslint/eslint-plugin":"^5.4.0","@typescript-eslint/parser":"^5.4.0","esbuild":"^0.13.15","esbuild-runner":"^2.2.1","eslint":"^8.2.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","is-ci-cli":"^2.2.0","jest":"^27.3.1","prettier":"^2.4.1","semantic-release":"^18.0.0","typescript":"^4.5.2"},"engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"gitHead":"eea2581b131685f2c21de777fd037c8ddd343354","_id":"lines-and-columns@2.0.4","_nodeVersion":"14.21.3","_npmVersion":"6.14.18","dist":{"integrity":"sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==","shasum":"d00318855905d2660d8c0822e3f5a4715855fc42","tarball":"https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.4.tgz","fileCount":6,"unpackedSize":7692,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDmt14XwDhVzhJ3E+zDPnDZl8Fza3nZVHKqdIqYJ56ygQIhAKJh/bqACgNw339ZduolqOvlwdilzKk69fYG8wyBHtuZ"}]},"_npmUser":{"name":"eventualbuddha","email":"brian@donovans.cc"},"directories":{},"maintainers":[{"name":"eventualbuddha","email":"brian@donovans.cc"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/lines-and-columns_2.0.4_1699321313143_0.3882401338787851"},"_hasShrinkwrap":false}},"readme":"# lines-and-columns\n\nMaps lines and columns to character offsets and back. This is useful for parsers\nand other text processors that deal in character ranges but process text with\nmeaningful lines and columns.\n\n## Install\n\n```\n$ npm install [--save] lines-and-columns\n```\n\n## Usage\n\n```js\nimport { LinesAndColumns } from 'lines-and-columns'\n\nconst lines = new LinesAndColumns(\n `table {\n border: 0\n}`\n)\n\nlines.locationForIndex(9)\n// { line: 1, column: 1 }\n\nlines.indexForLocation({ line: 1, column: 2 })\n// 10\n```\n\n## License\n\nMIT\n","maintainers":[{"name":"eventualbuddha","email":"brian@donovans.cc"}],"time":{"modified":"2023-11-07T01:41:53.488Z","created":"2015-12-02T19:57:59.708Z","1.0.0":"2015-12-02T19:57:59.708Z","1.0.1":"2015-12-02T20:00:17.654Z","1.0.2":"2015-12-05T19:32:05.157Z","1.1.0":"2016-03-09T01:49:47.038Z","1.1.1":"2016-03-09T01:56:07.519Z","1.1.2":"2016-06-24T03:36:31.344Z","1.1.3":"2016-06-24T03:52:38.515Z","1.1.4":"2016-06-26T16:57:46.382Z","1.1.5":"2016-06-26T21:54:01.493Z","1.1.6":"2016-12-20T17:32:14.921Z","1.1.7":"2021-11-20T22:15:14.474Z","1.2.0":"2021-11-20T22:23:35.670Z","2.0.0":"2021-11-20T22:27:07.947Z","2.0.1":"2021-11-20T22:42:19.703Z","1.1.8":"2021-11-20T23:09:10.780Z","1.1.9":"2021-11-20T23:15:03.350Z","1.2.1":"2021-11-20T23:17:19.625Z","2.0.2":"2021-11-20T23:28:46.961Z","1.2.2":"2021-11-21T00:28:55.542Z","1.2.3":"2021-11-21T00:30:55.831Z","1.1.10":"2021-11-21T00:32:46.542Z","1.1.11":"2021-11-21T03:30:36.129Z","1.2.4":"2021-11-21T03:31:07.871Z","2.0.3":"2021-11-23T03:15:17.010Z","2.0.4":"2023-11-07T01:41:53.302Z"},"homepage":"https://github.com/eventualbuddha/lines-and-columns#readme","keywords":["lines","columns","parser"],"repository":{"type":"git","url":"git+https://github.com/eventualbuddha/lines-and-columns.git"},"author":{"name":"Brian Donovan","email":"brian@donovans.cc"},"bugs":{"url":"https://github.com/eventualbuddha/lines-and-columns/issues"},"license":"MIT","readmeFilename":"README.md"}
\ No newline at end of file
diff --git a/.npm-cache/_cacache/content-v2/sha512/34/e2/a6f31864cc08f3171f01dafe4e0074febb9a5141cd9409ad95abd8d82ffdf5a36c22f66c4103b2c816cdec5795520b8f73ea91217db3142ef4a12a3dba58 b/.npm-cache/_cacache/content-v2/sha512/34/e2/a6f31864cc08f3171f01dafe4e0074febb9a5141cd9409ad95abd8d82ffdf5a36c22f66c4103b2c816cdec5795520b8f73ea91217db3142ef4a12a3dba58
deleted file mode 100644
index d8ce56b..0000000
Binary files a/.npm-cache/_cacache/content-v2/sha512/34/e2/a6f31864cc08f3171f01dafe4e0074febb9a5141cd9409ad95abd8d82ffdf5a36c22f66c4103b2c816cdec5795520b8f73ea91217db3142ef4a12a3dba58 and /dev/null differ
diff --git a/.npm-cache/_cacache/content-v2/sha512/36/e6/8d49ae9f94a4f925a498433268934e09cd32f5080e9a1a1bf9adf2d6dcf82a03e3360a1a59427002f21f22e19164052f17e51aa40c11c0eebe217a3dcaf4 b/.npm-cache/_cacache/content-v2/sha512/36/e6/8d49ae9f94a4f925a498433268934e09cd32f5080e9a1a1bf9adf2d6dcf82a03e3360a1a59427002f21f22e19164052f17e51aa40c11c0eebe217a3dcaf4
deleted file mode 100644
index bcdd9db..0000000
Binary files a/.npm-cache/_cacache/content-v2/sha512/36/e6/8d49ae9f94a4f925a498433268934e09cd32f5080e9a1a1bf9adf2d6dcf82a03e3360a1a59427002f21f22e19164052f17e51aa40c11c0eebe217a3dcaf4 and /dev/null differ
diff --git a/.npm-cache/_cacache/content-v2/sha512/3b/07/6ffc5b7b2233a09bf8b4c6f3436752eb4403517dec386f6a6b1773963102f12dfbb76d2f055610acad208c2b8951e7a63dc9af804e1a13a43093c429a944 b/.npm-cache/_cacache/content-v2/sha512/3b/07/6ffc5b7b2233a09bf8b4c6f3436752eb4403517dec386f6a6b1773963102f12dfbb76d2f055610acad208c2b8951e7a63dc9af804e1a13a43093c429a944
deleted file mode 100644
index 45c31bf..0000000
Binary files a/.npm-cache/_cacache/content-v2/sha512/3b/07/6ffc5b7b2233a09bf8b4c6f3436752eb4403517dec386f6a6b1773963102f12dfbb76d2f055610acad208c2b8951e7a63dc9af804e1a13a43093c429a944 and /dev/null differ
diff --git a/.npm-cache/_cacache/content-v2/sha512/3d/14/6320f0c5ea0f031d364d0b20e6606e1f826adbe3b2c8b04364eb400318e3c1b357f81c135302227297238481ee6dfa8fef443dc6d6d95a719b8b8c4cc027 b/.npm-cache/_cacache/content-v2/sha512/3d/14/6320f0c5ea0f031d364d0b20e6606e1f826adbe3b2c8b04364eb400318e3c1b357f81c135302227297238481ee6dfa8fef443dc6d6d95a719b8b8c4cc027
deleted file mode 100644
index 3e51111..0000000
--- a/.npm-cache/_cacache/content-v2/sha512/3d/14/6320f0c5ea0f031d364d0b20e6606e1f826adbe3b2c8b04364eb400318e3c1b357f81c135302227297238481ee6dfa8fef443dc6d6d95a719b8b8c4cc027
+++ /dev/null
@@ -1 +0,0 @@
-{"_id":"picomatch","_rev":"37-ee5c59102db71aa6cde2de37d4a606c2","name":"picomatch","dist-tags":{"latest":"4.0.3"},"versions":{"1.0.0":{"name":"picomatch","version":"1.0.0","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@1.0.0","maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"homepage":"https://github.com/folder/picomatch","bugs":{"url":"https://github.com/folder/picomatch/issues"},"dist":{"shasum":"ad8e4b63ed9ec16ecce02e55b7cca6eb1933e0f8","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-1.0.0.tgz","fileCount":4,"integrity":"sha512-5RUhp8IAAODWzJMyt8caoCR0mzKjcIk8VHCmNzrId095B8KB7U+yxJ2oTbWnesWVk7BQXdRCm0JFFUCNDnokCA==","signatures":[{"sig":"MEUCIQDKOfPtRKjlrue7cN8QKI4CzK7alep7FFsl6RxH/tU9KgIgRj7UMzGr7YYfVE84/cEym0cGTDzQzsR5ogLjyF1LoSc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15616,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4DJtCRA9TVsSAnZWagAAFsEP/25zaI7WxDnR+yjBI+Xy\n7Ap79GoPUfjAFEHk2FDCwKrvg1Al84u/5jNg/372DWU8ZV3+ng89vzRImuRN\njGuBieApCBswcCl4ucI/SJCDNvhmlbSe7He0otLDiB+E5tK/mlIu4zUoiqpT\n+eZFOlXvNDZTc+NoX7HVV6nTfzT2tbWNwA5lXQZpv41C/F+xh/XieIdP+pdC\nLGcF20R4OTpwgh2QYjGtvQwaeEzR1WqYppr3yRZjF7PJ7pSOLuOVs+y61GDF\npHCmpaRCJV4irmGFc7wZ0sgvCSaaDnAtu7ICl8+kEyHGYUygQaiX8HrzVtc/\ns3QAO5fHhJVMc4Jf+QK2mtc40iiW6+GlRNco3neCLJnUbzZTHXny/ZBRjN2s\nwKb1DosiaRmARxjFcQiTe/Q/gIqeefF8x53q5n8dHfrNrK7abYiDyXbzds7A\nK9w9T5oKr/5hRqxakc3448CxP9z5ggKpjitF7K3Xqj4/AiprHm3tbEZG9NrQ\n4BK8z8eGO6jGojKfROrm9bIVY0AyznTGZFDC3Wpu09W5Zm7KV2GfK10cBWJn\nTny/H42L3Dn61J22Ua+fNUjZJ2lYsoXwrBTKvouUy42CU/3te2JjoNE5k0qX\npizVAmmFGpdRaMd9xSyxtnUf9Arbjyj0VagbAmFSE8QjUI9/FrrWwUlG9IT3\neezU\r\n=6krx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":false,"plugins":["gulp-format-md"],"related":{"list":[]},"reflinks":["bash","fill-range","micromatch","minimatch","braces","expand-brackets","extglob","nanomatch","picomatch"]},"engines":{"node":">=8"},"gitHead":"e31190a5be26c1d69651db566792878e18a6a1ed","scripts":{"test":"mocha","cover":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/folder/folder.git","type":"git"},"_npmVersion":"6.4.1","description":"Blazing fast and accurate glob matcher written JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"10.10.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.0.1","mocha":"^3.5.3","minimist":"^1.2.0","minimatch":"^3.0.4","bash-match":"file:../bash-match","fill-range":"^6.0.0","multimatch":"^2.1.0","ansi-colors":"^3.0.5","gulp-format-md":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_1.0.0_1541419628561_0.6850721941651912","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"picomatch","version":"1.0.1","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@1.0.1","maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"homepage":"https://github.com/folder/picomatch","bugs":{"url":"https://github.com/folder/picomatch/issues"},"dist":{"shasum":"299734ea87cc808a76fd173bee0ae32ea38e0a39","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-1.0.1.tgz","fileCount":4,"integrity":"sha512-LhU431VW6NbNnXz9K7MxRMLPov3MzO7sFw289mltXXdAQmkmi6TCZ+60t1V2qS7HF/bAPJ3WwOYtJDCJ0lp+QQ==","signatures":[{"sig":"MEUCIAJVP09oNaGP7whNjsGXoJr+dkxJzUl16KR485ESq5KYAiEAtl+ycqw11fCTg+pTi/4AKORU7ixU8ItehGkShGAtOTU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15645,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4DOQCRA9TVsSAnZWagAAmBAQAJJDQlWvO71Q8yM8cS7r\nxq+bsNgK+MFRlKp6FHcxo0AIXkojzr4OAyiBAXBP8r9e2/Hr1ekUoCEKw/ti\nyIOef7N2I9Iy1u2aZz7Ev5iy6cxYm9EyQnR7Gx8GxyM1NbmdJjdQQTgGK1/o\njB1zBVwYrAkKT9a1+kRG8ezi961m5KDwD1bg73ElqANVjL8VpfZp2VvqyD+W\nu8MwdQCHJjWzicFYVQCBc9HQWlu3u0w7yM9rvP70fq716aI9f1Dc7U41NKd8\nwcxZdTK844tsATVsNK0pq1T3UOhba0IWIeAP2DExIR3dg/ADDp80cJwpJK01\n8fJyguGc7hBtmGBNmYlSmnYbse++XYAZg0BWqBccNpZ+IboKs5BkquhwyH05\nbLc0cP2M614cjOZ8Utg6ZuFFKfmfJXi2QhwwKSRPx9J1q7oPGvJDKsIEu2nw\nuU8/JHt/UrFvemRzhg198hYWb8d6lApIcD4LFMYZpMYb7mZc66WQvMYnTx4e\n7hfy5d6tQ3fIfbbb8HR131QdO3GuNxQfdaI74dxw9ggqUaMTPBoeWzQAc5it\nlNFnHQUXKUUGqYX75q40jtR0u03V+bPStLtPwpy2Y5snhAzX2SUq9NmdhAlW\nk7DWrNZvfg1+Xj0173LOZTtrxnNXgzYX8O1NlnxhhU2MznEGoLSOGBrOr1wl\njBQx\r\n=tb/G\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":false,"plugins":["gulp-format-md"],"related":{"list":[]},"reflinks":["bash","fill-range","micromatch","minimatch","braces","expand-brackets","extglob","nanomatch","picomatch"]},"engines":{"node":">=8"},"gitHead":"087aa19296fb4b5bba0baf8e63535573b6f7e8f5","scripts":{"test":"mocha","cover":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/folder/folder.git","type":"git"},"_npmVersion":"6.4.1","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"10.10.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.0.1","mocha":"^3.5.3","minimist":"^1.2.0","minimatch":"^3.0.4","bash-match":"^1.0.2","fill-range":"^6.0.0","multimatch":"^2.1.0","ansi-colors":"^3.0.5","gulp-format-md":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_1.0.1_1541419920246_0.36685476241990167","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"picomatch","version":"1.0.2","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@1.0.2","maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"homepage":"https://github.com/folder/picomatch","bugs":{"url":"https://github.com/folder/picomatch/issues"},"dist":{"shasum":"47a605ba6b76f20305331302b5d4ed731c69bdc9","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-1.0.2.tgz","fileCount":7,"integrity":"sha512-tTQlevEXfC16KUht/5hM84OBmCVO4bc5MiJ8VSwbD13dfv8ICCjRaDo9Mi2ZgZYm5EaCojRIhk8xIl8Y3+JNXw==","signatures":[{"sig":"MEYCIQCegVJKjSdqqCyAQJnzL/FIMojUIye7t0wAmWsp3915JAIhANyOykH4P8DJfKAtD9hCzT+b2XB3ULZUaZrit4rV0r/N","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46965,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4El5CRA9TVsSAnZWagAA06AP/RHAvGr465et+Ck6lmft\nD2eJeZp1US9xm6jB3sJDLbDt1Ah6Z/Rp1++/6kio4KG9ZErcoHa79LQjXM4E\n9lcJtEg6Suuox62pZ0sZ1EIKd4gTrYA6lRsKlhk13VBEdMczysYJ96y8YrIE\nDsv+qzoUtaMuQYDixh1Ids8WbqsuoGPQ4+YeLYzIHSjvFLLtI1tt2ViLjP8v\nMa9Tm+HDm6VAwd8RnrlB8KliRLAvzDfi4cONdES0wMGelRUmNRCkueCEdBZX\ngEmiEzhqNFYEZYtuMca2zk32C/7Jt6XQwo59CAGodYLCPna8OGhV0kh++WJ2\nxGjNru4SzIzcHKMg2oho1OuAC6N1yDey0LdFdyTp1HyNE22DlmrOaTFVK5uA\ngXHYMkViDkqqPGR3gzzLDQtDVPzS3gczA2CJH6zOGVE8x0Vee4uVuFEJiGN8\n3hoAs5qi5gAop9yLNQJtW/OsuvrD4lD+Ge0TwKtHXvdvKPva75F2de7k76DV\nYAlvxnWVzmeCAIwsDtxULuk+OzKEmZ7eKtJjOW627wxzhFNbHa2Yv7lfgpmV\nQxkEJlHvVY7jkoak9isLe0mrzfvsFPJd7jfHXHGG8gp2WUJrRghshnaFZHoY\nw54AHZqGWNte63bNCrgMQxVk+RaMXC48Nhnde4Ty4DYgIIrzuolMe9E5hP/q\nn2ge\r\n=2z2C\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":false,"plugins":["gulp-format-md"],"related":{"list":[]},"reflinks":["bash","fill-range","micromatch","minimatch","braces","expand-brackets","extglob","nanomatch","picomatch"]},"engines":{"node":">=8"},"gitHead":"6e17e8982e83965f0d9f468a83e945ad7da92c1b","scripts":{"test":"mocha","cover":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/folder/folder.git","type":"git"},"_npmVersion":"6.4.1","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"10.10.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.0.1","mocha":"^3.5.3","minimist":"^1.2.0","minimatch":"^3.0.4","bash-match":"^1.0.2","fill-range":"^6.0.0","multimatch":"^2.1.0","ansi-colors":"^3.0.5","gulp-format-md":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_1.0.2_1541425529166_0.3812978102395246","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"picomatch","version":"1.1.0","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@1.1.0","maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"}],"homepage":"https://github.com/folder/picomatch","bugs":{"url":"https://github.com/folder/picomatch/issues"},"dist":{"shasum":"5e32a8576929be2cd3a0ce94b5b9e35efe2adb07","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-1.1.0.tgz","fileCount":9,"integrity":"sha512-ncNfzrfFY1cC3Vtdu8NPVdt5z4iNkjDT1e5fAQo0mmKXGD4nxJqSf07iR53bHJBumJJn3Ya9jgloj9mXZe0S1w==","signatures":[{"sig":"MEQCIAxbSOEfrfSLpgsqIT1rvIbnI0ubtaoVNLaAyXU8S6FNAiBso1ZxY/cmjoUl/KQEDFdqKTFZvCjAc0xFu84MWQkDnw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":73788,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcE+XhCRA9TVsSAnZWagAAipoP/iYfhLJOqJxDXtn5vg/m\n/8uyxtla25xbtG9mZFFJAF38Qr5el/KsolJWFmAiXYyzBrpWLSSoljnhSl/p\nuV+JE3HClmVRj0FWh+xHS1KJIExB/S/vD+rnsltNmWaDii6miYjQmv0EH3tD\nM609MgytAYS0UypO39TpUJ/hJJBAbWD3lP6aR4IFDQjjeLwqAkc5NU6P+kX1\nUhYqu4fGlTrgEcWD3hdnY/e44jADR9FD0hZgIY9QpFBfioBzz39aYaL2G9YH\nWRlDKQ4DnEI86vfWuI97/kIH6mZtcDaHjrVnyQ6tEOcjTH54K1HHrMjbAZIh\nRqHauJVUvjp8wjVamGnqytySce65bvfpngxZ2VYTbGv6mRCRSJYm1rnZ+q3E\nnxCWvPhn0mDwZjipwRQ2h9ntNx/D4yYw9k32wf0yMluUxRkfwJuA6jdmyRDc\nmJfgxOg+BvQ6EWytJVX3MAE1r83qSr4I1GtLrVuOMsuNl64gUw75bD5VRvBc\nph5mjjYQo0oRDZwKJMDQ6l3MT5bL8VjljxPuZ8vvO3OpqdKOI5gELFCD4dlQ\nfcdKqW65rKuKwuBK0fbWAV6jXPdLgMpt0lYPy7qNfl3LRiGUTE9hF1emxH4y\njS3Cs92eO4+/sV1RuvvnG/lRReIbutn8s00IOjW5g5BVsN6X0Dm6nhFpqmXK\nSsE5\r\n=27rJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":false,"plugins":["gulp-format-md"],"related":{"list":["micromatch","braces"]},"reflinks":["bash","fill-range","micromatch","minimatch","braces","expand-brackets","extglob","nanomatch","picomatch"]},"engines":{"node":">=8"},"gitHead":"77bd2d05830b10e8bac557beeb54d201fb007f2c","scripts":{"test":"mocha","cover":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/folder/folder.git","type":"git"},"_npmVersion":"6.4.1","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"11.4.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.0.1","mocha":"^3.5.3","minimist":"^1.2.0","minimatch":"^3.0.4","bash-match":"^1.0.2","fill-range":"^6.0.0","multimatch":"^2.1.0","ansi-colors":"^3.2.1","gulp-format-md":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_1.1.0_1544807904081_0.47910854865565145","host":"s3://npm-registry-packages"}},"1.1.1":{"name":"picomatch","version":"1.1.1","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@1.1.1","maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"}],"homepage":"https://github.com/folder/picomatch","bugs":{"url":"https://github.com/folder/picomatch/issues"},"dist":{"shasum":"ddd4fd27472e8d558bfb6a8f7ef36b1c1a338d8b","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-1.1.1.tgz","fileCount":8,"integrity":"sha512-VWDOC2iibCJClkU5A1t3tUEGi4Rs73W7gyxO2enf5SCvkQoz+Q9viQSRu300ZUSRXMip/Esnt00sOffpDUFkrw==","signatures":[{"sig":"MEQCICmSZuwQ0db82dp1XODl3/VbDrmqpt38BwwSt/FDrJ49AiAI7Sebt4KngKMm8bDqkD6eNDdaxswN/uCIn2D869l8Xw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53918,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcFHB9CRA9TVsSAnZWagAAdRUQAKJ0P6LVuK2ojqYZunZK\nB7b1knkL6UVVa1T5obM6TVk6+mITdITV8uUWl3nLnt0EUonzwaK610Jqlxw7\nWxQ45xRyXN7SxUXq4gUq3Yj971fpGWACnFEqhzeJ0K387/DP1niLoWJzY1WZ\nevKXq3NQOoQhmhC4x7zWRljP7l7EyRv9eDOVc+Mm9++4/2y8jTvy7v8VhWb8\nWIUc7AXj9SUl3l/JuL3WF0qGLz28L9Ull8p1kRLmP5CSFU+r3X4iYg8CvkxR\nKpN4TFoRgBD2LzLVfG0t31tZ2JszrNXVmoswt2IcovHIGVxTxycG6RZrpO2v\nJBbxnwQqLDxCKUejQf9bhH+gfECpqIMw/aPTT8leoe2shRAc5A+uxzzj2Ua0\neLqIVVtJQMTYlrE7TUeIPMOxesXcLE+w3nirk/VpWaZoccU/4SpWF96cg+Gr\n0cQAGXWJs5Z+Z8VB5/Ln0ISVQsluRcxKfJxxXGqHBZe9S4+YbvEW1gDoEKD3\nqWp7qdQ5RD812q0bZJ9fq7K62g9p2DImppKfnmR7xI/o0/We1WO8b0Roz2yQ\nqxsx3YqFEFOsn9ZK6C6A0t/cwxIA1Z/GQ/Z4oxNkahYX9UhrLDxIKHq0Rl6f\n0fBTV9i0mqon9J5ii9z0eb5C3UNzATsJwCx8BaQKaK35DcjWNsKo6WBzmQre\ncJCQ\r\n=NtYK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":false,"plugins":["gulp-format-md"],"related":{"list":["micromatch","braces"]},"reflinks":["bash","fill-range","micromatch","minimatch","braces","expand-brackets","extglob","nanomatch","picomatch"]},"engines":{"node":">=8"},"gitHead":"77bd2d05830b10e8bac557beeb54d201fb007f2c","scripts":{"test":"mocha","cover":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/folder/folder.git","type":"git"},"_npmVersion":"6.4.1","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"11.4.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.0.1","mocha":"^3.5.3","minimist":"^1.2.0","minimatch":"^3.0.4","bash-match":"^1.0.2","fill-range":"^6.0.0","multimatch":"^2.1.0","ansi-colors":"^3.2.1","gulp-format-md":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_1.1.1_1544843388115_0.8869841129031935","host":"s3://npm-registry-packages"}},"1.1.2":{"name":"picomatch","version":"1.1.2","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@1.1.2","maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"}],"homepage":"https://github.com/folder/picomatch","bugs":{"url":"https://github.com/folder/picomatch/issues"},"dist":{"shasum":"122f5efb555576410acc4bc328fb1a1eb69ae537","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-1.1.2.tgz","fileCount":8,"integrity":"sha512-FcXFq7ttIsWpwlMLaDvVskGLNSfKB0ibgEV4KpuJACD1S45dM4ViQuGrPMxNX3mXUtg3OZ3xC5Ny+lJS1PqIZg==","signatures":[{"sig":"MEUCIQCD1r4j3TrrYkMiGZeHpbJ4NiBZrd8e1OTjfJknFgHwXgIgPZlka5aRFaiRTTm2n97q9Xra57moB6fD2R1jMD++fcU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53858,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcFHE9CRA9TVsSAnZWagAARZAP/j3IJoY4yqZQ2Vqow/1M\njkdljHGbfJCuAr7TY8215MMW/8aS+ZechfxqONN8PQzGv025SyML9bODQ224\nQ04aVPgCLp6BfYt1nWv5bJ+RQ+cnwlJa7sdbvZCNJFlbI3t4A+9yFVL+aZBd\no9jXoNkdZG/fXsAj1zFMCZ/whzekIPhurOVsj7Fz97+4irwfTBwcECuPUcXt\nUCIFCK7ZFl4IZEQU+4DK41U40jGFRqpq+b7LUd3t+NwK4BfQtYFPMYK/G3Do\nmNjgyQCP7xvjQ8XY47H9H0rLxmrH2WZ8/xTPlEz67BFlM1MROgWbnH7RYJvV\nFcUOM9UktQDXpRw+A2XFDPFZ+MvJHTCExtB+l3WnGFgQzk6HhnQSrK7GVPz/\nCYcVIV+EpRBJN355UGGbs+5ymjGGtun7/lXbWbtXDADmSfK5iWEXL74N4PY7\n+yb4m31Lf8UbkWyZAFVcHvoQiV6AJatQEIYhRSxgzDAi6FcLwt1ug5F/C4z4\n1GuxnJie2k1IsnF2WympWoNYP9rsDGCH6e6mXi56nwBUyOC7HSzI6lnzXFz/\npL778o3iaLsFQgo+szoxSEgDOwq+KWCJamFTwTUaX29VdDWElbF5aj207zl8\n7IrFh0vM0d890SKVz5Z3klJlEYaaQbCq1FzQXpfKKjZcrMy+qfl8Zsxgztkg\nCivN\r\n=Ug6y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":false,"plugins":["gulp-format-md"],"related":{"list":["micromatch","braces"]},"reflinks":["bash","fill-range","micromatch","minimatch","braces","expand-brackets","extglob","nanomatch","picomatch"]},"engines":{"node":">=8"},"gitHead":"c50cb8b2d61976e8ae4244c6aedeef63c0fc474c","scripts":{"test":"mocha","cover":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/folder/folder.git","type":"git"},"_npmVersion":"6.4.1","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"11.4.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.0.1","mocha":"^3.5.3","minimist":"^1.2.0","minimatch":"^3.0.4","bash-match":"^1.0.2","fill-range":"^6.0.0","multimatch":"^2.1.0","ansi-colors":"^3.2.1","gulp-format-md":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_1.1.2_1544843580410_0.9152113891811657","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"picomatch","version":"1.2.0","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@1.2.0","maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"}],"homepage":"https://github.com/folder/picomatch","bugs":{"url":"https://github.com/folder/picomatch/issues"},"dist":{"shasum":"ac60ec8b6ff5953a505de2fd5b2b0a1e1d7287e0","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-1.2.0.tgz","fileCount":10,"integrity":"sha512-cMSUWLsIT8VCmIPlM87m5OASGmDnYJR2fEUIpOnuArPQY5p7kWfJ47wZtIOYHT8GJHo9B/QRr4m5mbsIXxZkMg==","signatures":[{"sig":"MEYCIQDfvhuFMJGyAvn0jq+zh4Fa8fpvZi5T2ppfwiSKxY3r6wIhAMMjaxVlqmDoIy3lALGgakFq05avFot9IXfEwAFh+XKd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":70185,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcntJnCRA9TVsSAnZWagAAAEoQAJnOUaVLtYsbpgX1U97F\nqoK9DgANIdBjwoAcLJa1ctAsP1Fnu0mEtsk18G9RP+tdHrUsWRLNy0ktKhP/\nKrudvB8Y0WWAGaqSdGGcJ8h2zK3PpWm+ivFpLWXErCqRBiKiDLua+L27Tgsl\nDjtHcdY7ClNI6ug8JYwlKc2tNNmVCAOZeAHPy1x4cu8DSUtKrCRe8GOg6d/u\nscJ+1kXPM2QT840KSDvDe081UFZCpFxvijiQNwn40PwQpGiVc26mcUPXXdMg\nVYLF6Q8R0ja4b/syYunwsNsGTQ+sXLxmz6EOWYVvrsKhgrQzy3g4xyN+DLnx\nXkOCkWMjBMb1rNMH/GWi7FZeFmtKbmZMPEHayRyxW2DrDfBZLA0W7SHRxYn4\nD3Bz8Rl6OdISXFa61+WUfh3eBt14WuiuEEXMG3hIE1lGG79kzSHll+p+IdIG\njR2ZZexQa8SrLJ/KV42HoADE9TWa/FsUB8PeHCcD2Vf/lDUaxAzQXgk3U4qr\nZN1PZpPYr38dPVFGxwAjJKnyWWJMefpfpF0taIaRbAsN7jEq72CJv7TiXFhe\nvSK71NNHjwSUZW6n2mR17RdmQTOD1ZKJKY1rHI3A8KT7HCQhPm9I3TYrEZeI\nYAYlj/TN/UOTG4hxclvLh4uU557ROUX7JvVCG9SQUWdP+HH9GO45cMdBfQ1b\navEI\r\n=SHbE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":false,"plugins":["gulp-format-md"],"related":{"list":["micromatch","braces"]},"reflinks":["braces","expand-brackets","extglob","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8"},"gitHead":"15a5d0e85cf411d1331078e896e764fc102533d2","scripts":{"test":"mocha","cover":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/folder/folder.git","type":"git"},"_npmVersion":"6.5.0","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"11.9.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.3.0","mocha":"^6.0.2","fill-range":"^6.0.0","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_1.2.0_1553912422567_0.7493384972833748","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"picomatch","version":"2.0.0","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@2.0.0","maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"}],"homepage":"https://github.com/folder/picomatch","bugs":{"url":"https://github.com/folder/picomatch/issues"},"dist":{"shasum":"2500b6aa582f98f9f30c6d671bd48f288045f977","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-2.0.0.tgz","fileCount":10,"integrity":"sha512-LCp3QJ9q6YPH7u0dZTgOuxj4DW20Li5R1xQAnzsOs9R0OmadvgxiPsTB224Jh/5pnyYlb48n9nETuQCOqB37Jw==","signatures":[{"sig":"MEUCIHkutmbEcHe5RYUTOI8l21lIRT60Hiy0z5VrTEy0Qm0RAiEA3vpxHxJOk0HUJbybVH+8BAxQYyz+zzPFqBTp8N93gds=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67186,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrc2BCRA9TVsSAnZWagAAmg8P/Awi3xnQeIX66Trd4F0U\npNBHinKmzG878PvwhVuxEsJt3T+BULVHWUFoX91wddnnFM5uTti7M2dZKQTi\n7BPzClNztiyCQJTeer8gCuia03xTofjn8/qM64Hab2m0pvP36CdtG9TaqO2q\nfDxU3BvNSzS2rAtS4b32Iy1Jg2wLpxc/Fk/YUG6GOBH1AFvM2m1Yvet+3MLf\ntFkE1EZE4IfrK2zXuca9bQwpwCZMLikYCtfo22S8y8ibbdxv8nHegzxH+KCp\nK+lEDC4+L8MH1fH6gpiXSfUb+gr1dSyuCd981vgpc3/03E8O0rOmQyjArxbc\niygEFBd/l1AtE0E+niKKL7FC7mRggbMFmloKaP/5hVbFe5uHpnWFqwsRdPSQ\ntJ7Fu4U/tr310Dh9dh2/g71asaryMs3gFUeM4YsYPNRdASjDPl138jBsue20\nQXrDdNy7pGONS2/gMUv/fcM6IgAqdveNaOEYUi5+40lA81HAbYxSnEZOMit6\n/iEXAv2JaDI3ssFW9/at0YBdkbP9/RDrvnrT+kFsbG2WNbMsSUxrS3ejNYe/\nYtkunV9nkSPY3qsvL/kTtf01abr28E7Fq+UiKzE9fk5kTZshl+1+amgmd+6H\nxVZqdSD1pJDyDZt6v9jD7l+bX/UafXAR9F/KvafwH35Wznn/7mKTFb1juVeb\nuDYT\r\n=W7d6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":false,"plugins":["gulp-format-md"],"related":{"list":["micromatch","braces"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8"},"gitHead":"8212a2e641ab1365cadeab2110334e268b2a4762","scripts":{"test":"mocha","cover":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/folder/folder.git","type":"git"},"_npmVersion":"6.5.0","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"11.9.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.3.0","mocha":"^6.0.2","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_2.0.0_1554894208830_0.7281662890740057","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"picomatch","version":"2.0.1","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@2.0.1","maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"}],"homepage":"https://github.com/folder/picomatch","bugs":{"url":"https://github.com/folder/picomatch/issues"},"dist":{"shasum":"5eb60e9bc20eba769e6bce404d0d4f7c5f5d099a","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-2.0.1.tgz","fileCount":10,"integrity":"sha512-zruX90vxmnhSGd3mzHzNL+cbnZ/CTLGGI3MrCrcoP6mSHLxZP8n7Obg7MF3ZrN9Pb1u0I+fEOiw3CDp87D8Fzg==","signatures":[{"sig":"MEYCIQCaNNHqMjr1S9gv9HlALVTtecvEaVhDtbLMYJaiXsMNHQIhAPln7eRFcAaSVyTb2HzsrejeuX5w74sS+FQb5ZBiRmjq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67186,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrdhvCRA9TVsSAnZWagAAhN0P/2UP3PoS2bvtoaGzQRm/\nb9bm3Z+x4THEOsgkCUvY3dFcLRVMKhrgQ59xfKp+1x8ijOR/+RdjJv0LnCeS\nBS4ojiF8oaQxBhn2Nj4scZD7yySlscRGoF85YnWGaYetT1IkoSvwu4PUB1ir\nHOrGJiADPfZaZ28kdMa6Gk+STBQbxTZpLxrde8XDaCnwoewl/nyHhyLMnkNL\nz+8+XVGbPqWDf7DRrd/rZhN9OiMsd+w2o16PpA1VO2VV5bSBJvVqfElaEj4E\nvhUJ7US1mpb6QcD4V8BFb3GlJlRE5xTsaBBN4Q0puZnNEy9Sax2DftcBATtn\nQRiRz0AOFBCl5Fy7HeaJzpivOcV4CvheuzHyG72B2iDapuoNlAA1JskhjDV7\nEDllGH2TRrxDfnhMoCM2bGCLccT6UZZrO5STxy9f6nNsZa7Xib+fDCE0Kh4E\n1zBkPUCBDFO7U7BisIRpma0org04950WX0+w2MjJTdpzk3H0x8+UPr71+/JY\nQ4p51AYVqhrxQTokGioHFVvUQ0/98N/5T5t/ZnjKlAUvh24ae/fcpO7nIIVD\n9HMm8nAdxE0iD/ht/LX2VHo7SwWZlgUB0gpHpzNKn/SaO074hlkAS0pV9c7m\ny1KLTUtzEs5zfTsNEY58bsuc0YwUASPNVz5J+Gf9Cig98T5moSx90tmuWWFD\nkJnf\r\n=FWow\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":false,"plugins":["gulp-format-md"],"related":{"list":["micromatch","braces"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8"},"gitHead":"fbdeb893beb223fdc4084797c33ff88049321543","scripts":{"test":"mocha","cover":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/folder/folder.git","type":"git"},"_npmVersion":"6.5.0","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"11.9.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.3.0","mocha":"^6.0.2","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_2.0.1_1554897006577_0.6770058205351768","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"picomatch","version":"2.0.2","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@2.0.2","maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"}],"homepage":"https://github.com/folder/picomatch","bugs":{"url":"https://github.com/folder/picomatch/issues"},"dist":{"shasum":"7369a814568197e8bfaab6a53d6a2f989cb09e3f","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-2.0.2.tgz","fileCount":10,"integrity":"sha512-PsJljvIvCvQjzgw2ejIP/t1z9obDXzXxcDLc4IwzKS99UzVEzRqXJS3NEK9V8cuFk4d7DzYb6N8AVKBmq+j9fQ==","signatures":[{"sig":"MEUCIQDFvsAIS+E2fXyRw/RnqOz2hoNDXzlML+6vLG13YO5UxgIgWtASon+RQEGoO3eFTH2LFNfGn5OjnAhxc+u7hvN+eKE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67373,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrd6lCRA9TVsSAnZWagAAWFkP/0WbffqeG6ciBS4Bc3VP\nvONcRjdWcnV8YTM3Z9xwBmRHmz7qSaomrgRB8arpEgDi/VqqHegiyyZ2Cxww\nPE+NLx2GeIdBSspa0bHfKfLGuckIf2ql+YaP7CdUIYC3d+R+CyKRy9pd3arO\nnmnwF4xAlafaDzqDHnkxRnesaj+7h+Apw8U4Dve+YywoyOL65aLGcEXnP5WU\nmvliVz5BUGFsu1cnwgB8E06dtPSdjm3xF9T5n4stm8D/GRGEMQoJT/sFSype\ntA0lgocHZYtPysrA5DLRNpuFLzbrrl/6p/aCiUEIQuAQks69dwfH+B1gAzqh\nXO1SvyyFWMveZGYILpr32RJeOq0qdOzo8AG0nzb0UDJsx0WfmN5e9y73eLqT\nT8BHiWSSf8H2XMpeUl39XCYpGwmi+CJpnwX1n7gXVC4tddri3320PDDn9l07\ntpk8GUiFa60lXWLbkHN8WacWGR98uuYQkMdE5Nqt7LtBjDF4lLCdRDTY4P6Q\nBiRp9FYAK4yT5XsmQjXtmJiXhuz2VCpAIRRZ13t7TTWaC41INnjlVgGcJVu4\nGXKC/YuFZftBxQPfZ7QEkhmXvF+PuWJc5uQyaFvMeaiLfmdcV2FxPFXR3Jpm\n2sOF4Dp6hCUR63AT9ITGo4TgDXzzHt+oozhUxzHFxqd+/J7hB4Y7DR7Bg1Qb\n2vAr\r\n=c5L6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":false,"plugins":["gulp-format-md"],"related":{"list":["micromatch","braces"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8"},"gitHead":"64a4660ca62b5718dd4b440242cf914fbac000e4","scripts":{"test":"mocha","cover":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/folder/folder.git","type":"git"},"_npmVersion":"6.5.0","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"11.9.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.3.0","mocha":"^6.0.2","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_2.0.2_1554898596496_0.06921179849650527","host":"s3://npm-registry-packages"}},"2.0.3":{"name":"picomatch","version":"2.0.3","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@2.0.3","maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"}],"homepage":"https://github.com/folder/picomatch","bugs":{"url":"https://github.com/folder/picomatch/issues"},"dist":{"shasum":"8523b368260e5f6fb5da5e45fc7a582f9a0a15e2","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-2.0.3.tgz","fileCount":10,"integrity":"sha512-NSJqCeCfH7loxpU6i04aBiJZv4oZFlLKTLTyoWCpJnC28Qm0T1XUfNfzwLi+vtFNGIjc9pyvx/NJUJhFQ3Ptdg==","signatures":[{"sig":"MEUCIQCADwfyqie7vUBqqyrw7Hpp86/VFgBK0vKLurteJzJH3gIgEEGs1vjfjV/6oqjhjuSfjDbwNMNCcWaHJ0JFAWs3/SE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67373,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcreT8CRA9TVsSAnZWagAAMHMQAJ5BPcB/8/zrQ3oa763d\nsZiaWwWeep2kOCo9fFOBbSlo5EDgoTFpa9lw6QZNWnvcRebwSGepH2XBdUjI\nsWM/8s3HDUUce8HMgMGbLRd5LFTmXLqytVSUih/C+I/rifjY9mP9RVqkMFTm\nr7V4xaPUg3LXQ+hA5vpqdBHOGe10lZnwLG8U/sfu5gNo/eJlg7Pdtl6YMvFb\nHN5rqpqXKExlXnSg15yjJQL7XzycrWQtF3i05eS21YdzgJNe4Tnwj5eeg2tt\nRhezzvppeCgLvgIF7rMuXgqUoFnwfLG8vL9anwkxaPN5yqiYbbRbzfX70APX\nXIbeQ2HKUM6c1yfIT+NmPw95JM5b8Arv1GnGaCXMfWHdkohmmxo8N5SDcrdQ\nXnLFEaCfUEjgNP4QIxiVhYEmAHKRhDEnF5eHnZUbFqfRBd6WaWntm9mtdJra\nodFU/4qDSumXGq1tgUM+sM7dwNJQNpLPAZYxZGprqg6LPTriHegJ5Emymefq\nckvrgY6Jbd+6kzrCb6UxP7VFhwX3H4RY5fevDpsKyQJWoLsnGg2cv+RTPbN4\n8BYWddcv2IrXwP93PJmRT5MH3VyzS3g/wc1j/Z/wrNg+9q0ZyX2PTkEUs8Qa\nml5OYs3uxxnAHJcMTCG1p/xpwtK/65HABv2LHADzBnd1HgIcuRbSSfH6riFx\nr2UF\r\n=a9BB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":false,"plugins":["gulp-format-md"],"related":{"list":["micromatch","braces"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8"},"gitHead":"818cd93b8172663acd19d17c18b5059d5130a031","scripts":{"test":"mocha","cover":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/folder/folder.git","type":"git"},"_npmVersion":"6.5.0","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"11.9.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.3.0","mocha":"^6.0.2","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_2.0.3_1554900219249_0.170282712670206","host":"s3://npm-registry-packages"}},"2.0.4":{"name":"picomatch","version":"2.0.4","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@2.0.4","maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"}],"homepage":"https://github.com/micromatch/picomatch","bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"dist":{"shasum":"b972630d6ba532d905a4d6524c095d0d2140b4ed","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-2.0.4.tgz","fileCount":10,"integrity":"sha512-lN1llt2d+xBz96Vp+yj0qMUVMyDsqvNSecdRDIEuh72kQi1N6ttkxPJ7zDVwKR4ehD2R3WhMKqdp/5LeRfc+PA==","signatures":[{"sig":"MEUCIQCpCaqOxiIYC78JMhyIg5ShRL4fcrgq1xddgjP4H324ZgIgO9s1Aj7KRg7NqsKvPmnjqb52lsJdao951h3k6XIC4QE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":73134,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcstSMCRA9TVsSAnZWagAASZwP/2PvlgpwLbE9Ppn1I5e1\njgUnfx00NrPlVbr2v4agPraeCXZ47/jLdgDI6v+OG94cpFlIHFUCZmykk0WS\nYpFuGOU/wcGSTSYSiwA+nDKlL6uu+7TsZOg4w1u3ZV/VP1vrvQKBfsw/Me3p\n/SmgAS5HUlquSRBq/nyYk8JL7wUkydHkVImj+0j150Q09npXihPmnWYLtb41\n0RDtx+rax60zqYv1Ie0zkNlAHtLShODBApbVlQdQe0XmQ3TGeP76EZJzN1N3\n1uJhuKCM7p2s0f2g/OfjALv4tJduD9uQ+TCD+AScOU5b6ngzb2UbKNQk+231\n+dyqNYMwX1PhxZkAOWaRF2KwDX+vy09AMGiZ8Bz/ZsHuaqXxGxIIRyzwIbEx\nPkJu3VwGircr2WqMsucbOoADD7zsN3HteB1PsGf54C5EM+ikf2uQ7KrAmC60\nWzVBbeREn3WGfm2QbwLTO4yxVKx54Sx3jJ6YHJJH+YodrTcd21Sc3RBy8P7W\n3aK/QfMiyQejQCeMjZtWzCkzlpIrJfXv67N1fAkOIeo/pxtxa5zD23G+14T5\nsxXR/2Harxxtf/Iw2GJZiweCnHUGmJoJrRRK0oxZZpBHUZNoFbq4xfyTTGrG\nv25A/lwMqghqlBtd6o8LMQ082y2bSkngqCG5SB0eGseS2RdPVplIZtBxYpm/\n1D8v\r\n=v1mS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":false,"plugins":["gulp-format-md"],"related":{"list":["micromatch","braces"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8"},"gitHead":"c7020d80433bd3a87195cff9c5fe4f261cea0f9f","scripts":{"test":"mocha","cover":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/micromatch/picomatch.git","type":"git"},"_npmVersion":"6.5.0","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"11.9.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.3.0","mocha":"^6.0.2","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_2.0.4_1555223690896_0.8356264220137732","host":"s3://npm-registry-packages"}},"2.0.5":{"name":"picomatch","version":"2.0.5","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@2.0.5","maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"}],"homepage":"https://github.com/micromatch/picomatch","bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"dist":{"shasum":"067456ff321d6447ca3dc32273d7bbf19ab2face","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-2.0.5.tgz","fileCount":10,"integrity":"sha512-Zisqgaq/4P05ZclrU/g5XrzFqVo7YiJx+EP4haeVI9S7kvtZmZgmQMZfcvjEus9JcMhqZfQZObimT5ZydvKJGA==","signatures":[{"sig":"MEUCIQDnMsdKiEy1mFZtLWNIx0uhKDVJAz5lszKSjNylRsv62wIgLjASV8TSVC8dzDg3Au1jbotubpklxhtqf50x3z1FZI0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":73171,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcuz38CRA9TVsSAnZWagAAzsEP/RUMj0tauYG4PPKXE5eL\nppq6s7p5XNzBiKt8PrXRN6gnON+nqcASN3QxFu6qpivwXHQcKcnU09dnUN5s\niiArCL+J8QlsfUg3roJ8TWNPCfYm0bENBWLudtqkQV+QSXVk/C7dcPsEYjJ2\nnLzN/Q4sBSmvClohuHuBj80C6vsJNy5Qvicot02GLSOA4i/h4pG5jZ/E4BPl\n8tH39ZpbBKBLyXuIOGu4xBteq2KGNe11EPHnx2q4nehKwg8pMtPeh+TUtAF5\nhwPv3oC0iiVB4xf+JL/4R54+zzSXLdI5Mucihd+3PIid+30hV4dzsezeKux1\nwsLZQKBXr0k0vahO9sJRuuVPzqnNmFWDViaCJChrQvvnn7/oM9KGAQH6kGCH\nIpbGtOIYtW7+TIBGKBWw/Hi0sTeLk26qbegeQKXggBkG5M0GJ1UOAlN+rLQk\nH5aPO7Uh3rZGza1iatdIjERGUFQDjv1YtmZIrvy44pzAR7ezEIBypzgQBUYJ\nQ0m0NL1lmVc0MDRLmXl2YaZa3gXPVXIzd6b8CLeEyUfIb/reEvcYj7XMIbsK\nVng5mgG9w22iqzrcqLcgp+dxG5rKXzJu9kNtttaQRTCWeHjPG6POfNpFMdo8\n5hRAr075pv+AZJMoagTBxJGUCCHufdwAWMud0FVlu1MV3qwIVEPB8PISl8Gf\neE3O\r\n=xEOA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":false,"plugins":["gulp-format-md"],"related":{"list":["micromatch","braces"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8"},"gitHead":"f364c5bc3412bf029a60540cfdd5c85dcbd6a2a9","scripts":{"test":"mocha","cover":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/micromatch/picomatch.git","type":"git"},"_npmVersion":"6.7.0","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"11.14.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.3.0","mocha":"^6.0.2","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_2.0.5_1555774971490_0.37326703747523826","host":"s3://npm-registry-packages"}},"2.0.6":{"name":"picomatch","version":"2.0.6","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@2.0.6","maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"}],"homepage":"https://github.com/micromatch/picomatch","bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"dist":{"shasum":"f39cfedd26213982733ae6b819d3da0e736598d5","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-2.0.6.tgz","fileCount":10,"integrity":"sha512-Btng9qVvFsW6FkXYQQK5nEI5i8xdXFDmlKxC7Q8S2Bu5HGWnbQf7ts2kOoxJIrZn5hmw61RZIayAg2zBuJDtyQ==","signatures":[{"sig":"MEYCIQDzNIpKnfJ0GJyLZNMfaAGhZSoKgIyDShIkV+roUN/uRAIhAKoRi7Us49bqKLTXIufxWWX+2IUbFXn5UxCzVjDOeZf0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":73472,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJczUqYCRA9TVsSAnZWagAAktQP/RrqjicQL2Ana/FSPtm9\nBqEu3CafZOXD1G7QmzHYZ6DtTX3vzVm5Q7fSi4h7Yfuqhnf3TMNnoOGBqZaQ\niyViRNTdJZk1K073Sfd1HvnED3xvuBzm1PtBpUN+xeBzwcaxy+C2ThUeYI/Y\nRvOxgV1Vte/+wRjTQwml32BiVX3gWbstxZMh75jpYnzQxZcqMpgyG4iwSzxN\ncTrygRaaibF86GjQ7FPdYMeHTcfo0WmGp7bfg59JJh5/glhrLEYL3c7fSYUd\nY5MOrg7aSsJ0SeBvYDzWr6AIdcbbFaFGZd3gVMYuMT2gDxa7T71TW+Mw7E+Z\nqnP8HLPO0nVS6mDJMady76qw/qUBXQ4MqNjLb1R47UcYvIub49C7NtLygbCU\na/Tzf6fV3xn+dXPw8fSxN/0tP2OSzzZiSKy1/hINCT9uCYeZjNtaScnAM4Tw\nIb8d/7yTmViiZYtwWYWUc9S4HhVgfQkqoGdu93dZoUz81LIpV5rwaD45kkTi\nXpyrR6F2U1An89oy93ABUj0lynQnRVEhs3HwSEjq+uh+IoxZPKLsE4WkEs/0\n4cpVIDSU6ohzzIt4s+4SXlHOLwLGHmyWVjT6DkISQ0PXJ5R+Gks5g2+Qz3vD\nY2vI4Yq+OTVVvb5+igNuaz2VuWiv7xzGTFWQ7d9nZHmIjWhj2g0khNeeDfAh\nA3mZ\r\n=mpAB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":false,"plugins":["gulp-format-md"],"related":{"list":["micromatch","braces"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8"},"gitHead":"49148dc56587afd78ae3467af859e1f8ac49160c","scripts":{"test":"mocha","cover":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/micromatch/picomatch.git","type":"git"},"_npmVersion":"6.9.0","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"12.0.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.3.0","mocha":"^6.0.2","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_2.0.6_1556957847393_0.5211348957818349","host":"s3://npm-registry-packages"}},"2.0.7":{"name":"picomatch","version":"2.0.7","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@2.0.7","maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"}],"homepage":"https://github.com/micromatch/picomatch","bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"dist":{"shasum":"514169d8c7cd0bdbeecc8a2609e34a7163de69f6","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-2.0.7.tgz","fileCount":10,"integrity":"sha512-oLHIdio3tZ0qH76NybpeneBhYVj0QFTfXEFTc/B3zKQspYfYYkWYgFsmzo+4kvId/bQRcNkVeguI3y+CD22BtA==","signatures":[{"sig":"MEYCIQC5GBi6akAEL5DjZV9cFa5yBat6CWetqR/KzOVscOmoLQIhAL6Xmb8xwdRONYGI6vLqFzMj8enCzMrd3iDZZeGwBX1R","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":73492,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc2v3DCRA9TVsSAnZWagAArBEP/08ZY+N0XGMP6tySuJRm\n6fmAEC+W5Zugeb/z9/poRHFL2PkUj3k8QxXpanoCcySDCMn8exAWdRiiw7a4\n1cwdBS7SGowauCJRoFL9AcmRZv6e0+a+7lStHRd6kjTec5ZHN9LAVNXwhUST\n6Ch2c37HkbNcuEaO3y7a4WpLoWZkXeXiAMX0m3kCwiywUskfAnFQiEwbeGAG\nPCUAiEYrh1/MRUZ8xv4+AZJ6/OlBmeQYSgBPelyONk9NGVsVQ5I2pjGnaQsG\n1UtGhofoT/3zIfIb2sb1bU3fZbMxwEbQ6KG+Rg4lejFi2+Zq6MZdiYPlNCrq\nEcWqPWmtutGFM0ipsyswkwvUZRh+1C8hq8IUFP+n3BebsFLUjIygnXLCSFWW\ny3WfsHgnxoKgJqezB18M07yd7C1me8uo4PHMRXtVcj2Za3q+4uvb1QFYuJAr\nN/3Sfmc9JF53ToRa7/kdn96ONgrtdyDBG7e5begUYZ0DOgXIRJV+CRJhW0oG\njEPzRgUjxZqiuBSvfNdYlj8w1rVHbwrILAtol7M4I3c995Dvcpf7La3Vmsd2\nxGfaTR8VVKsqr3nQ2FXhOBWmNSCvl+gqbxesy9yQ3oU+xgZuZuGnj+RR1R66\nxafxp0UXKd5/G24UEmgkYZCznjFmY9IqiGHPyg/RsGmOvZr7m+k5TYoqjO9e\nLoz5\r\n=SN3+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":false,"plugins":["gulp-format-md"],"related":{"list":["micromatch","braces"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8"},"gitHead":"9eb9a71780035c5c3e2c1e67eafa3d967f2289b2","scripts":{"test":"mocha","cover":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"repository":{"url":"git+https://github.com/micromatch/picomatch.git","type":"git"},"_npmVersion":"6.9.0","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"10.15.2","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.3.0","mocha":"^6.0.2","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_2.0.7_1557855682387_0.9874545198503017","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"picomatch","version":"2.1.0","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@2.1.0","maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"}],"homepage":"https://github.com/micromatch/picomatch","bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"dist":{"shasum":"0fd042f568d08b1ad9ff2d3ec0f0bfb3cb80e177","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-2.1.0.tgz","fileCount":10,"integrity":"sha512-uhnEDzAbrcJ8R3g2fANnSuXZMBtkpSjxTTgn2LeSiQlfmq72enQJWdQllXW24MBLYnA1SBD2vfvx2o0Zw3Ielw==","signatures":[{"sig":"MEQCIHEZEoYEq3MwRKgJUqldByhZyf+yJmrgrNEM7WhNGuBDAiBmHdnDQlXgW5Zb0qg0Q9UvTBwIA/eVYux3UFI7lkC2nw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77098,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdupVRCRA9TVsSAnZWagAAMmoP/j9JIN9tVkRQlu4MnfgL\nBya7r0wnydqGmIB4oj4iDihN4P+TLDTkjp7rbY1oXhfcDLcCoN/AAC4asIC7\nbp0Q6rl/o45Ys9bol4mFee4gqPcp9TTM7/jz7XUN7GcxE1rryIJz9b5cEwmM\nqVT0oVOreuAqpBYDKMC/3nDGnwmwnk5bAhGMB0aC/+kKIlN/MRQuUZhUbd21\ngwDFQEB0kaNlVK9WXAXNEke/iN22MMs2pQKxInkNFNrC/wHNaPAx8zuGernv\nUhdUTBQxTMJiZBCW9lTHMOJeoPM+e/WgingVFXY8KWNja9IehPol3Tgq9tbf\nG2Mk8joOqdUQMZuu56DD6VltLPKF8bqAp/tSmYEiDd4/O2mOKZBKKwxlBbxi\nBp2Av88YjDoCLk5pCs6H2vV47EG+gItLxP5H01xmbNrSLkG2ZamETW1uq6M3\nxaz0lC8TcwJwnUO5TdL0HT3QjYKy1UPkNyBG5GnGulRP6gNSo7l4WqcDa2Ht\nyLNMAkqO972xZESRdjDfpLtcJV1/3FF1dZVZhq6BKbftYeIo2f5dBwy4VmPM\nMHF5pm00vvzWAtc0wyXlQxLnb1+RszLZGlh8ZzA+RIgqYxzy54mwA8GoHXgQ\nMg3bArogYLkkXlWWODkJTalVdCz6pFyqQW8dcbN2Ju1ZBUAEYwI42daNqgFc\nRhn1\r\n=AJTg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":false,"plugins":["gulp-format-md"],"related":{"list":["micromatch","braces"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8.6"},"gitHead":"8ba5215c7e4a69bc3ce371bdb559d21553f3518f","scripts":{"test":"mocha","cover":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/micromatch/picomatch.git","type":"git"},"_npmVersion":"6.12.0","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"13.0.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.3.0","mocha":"^6.0.2","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_2.1.0_1572509008306_0.7569108006631269","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"picomatch","version":"2.1.1","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@2.1.1","maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"}],"homepage":"https://github.com/micromatch/picomatch","bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"dist":{"shasum":"ecdfbea7704adb5fe6fb47f9866c4c0e15e905c5","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-2.1.1.tgz","fileCount":10,"integrity":"sha512-OYMyqkKzK7blWO/+XZYP6w8hH0LDvkBvdvKukti+7kqYFCiEAk+gI3DWnryapc0Dau05ugGTy0foQ6mqn4AHYA==","signatures":[{"sig":"MEQCIEKgNYkXLfIOw+9cOY6xsfPAnj3qE6dSHExnb8GTAXrzAiBAcA8AkuRqOSCFa1BMJZA7ASBA9PYucff0jOuDLkoHtA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77265,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdw0feCRA9TVsSAnZWagAAsPIP/0D2fvmFV4rS447u+HNt\nyrsrQrD2tI34JeY5tzo1Rs3iChtQLmER1e3X0plfkBT7IOeohoYg9SHtxqlX\nl6FrDadfhSrcUKL/geRh5QLiDX1mfGo0LKeG8hb0jjTxFuCLSLA4yGWGGMJZ\nAfJwulDk4xzDX+j1RxE8REtTISa/Np/VDYW0pClj8JhFemI/D0cB5GlAUU73\nki5hAlXoCC7V/aDHEOKQiHdfoH05C0uDg5D8RSJTHsnR4JkOS+Rui9IaHa0w\nQTgdOdTst76iDIA851S/VZKf9Gg6jZ5v8VheZpsP7ePrgIy4w79wgHrgtgoI\nK1nppY7kF892c3v1QRkEKyU+mPqtPORWUip8C4R1guwgdoXVlBVQ7sABzwlY\ncsIgvT1y8z5UusxUvzO790yZ/BlLwbft2pBNi3dTaMruTD0ztTXtKvwkXiC3\nqCC8JRaUT0dl1dsB3rrpFV+P/Eff6V9Jp+P8gxSTH0F18Zw6ZLUz1YsdjZKn\n9Ikmb8Y97CFAtTwy7W9Rsx0ULCeIssdInVXlACyA0FDTa6v5EgJi+AiA3g4s\nlrPC/zb1iUfB0Ui4hchrQHCxpQKSzjAkCfjoXIxuETZ2xwBNZv0fYuDc5jQ5\nD3uPjWnEKPscDnhBIC3PD6f/DbcZQPsmQ59kFl1i7VXxcHw6gy33mP3eDEUV\nNVOl\r\n=cnOX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":false,"plugins":["gulp-format-md"],"related":{"list":["micromatch","braces"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8.6"},"gitHead":"7944dd0f7d174b067c6f3fddbaefb0a8ae9900c9","scripts":{"test":"mocha","cover":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"doowb","email":"brian.woodward@gmail.com"},"repository":{"url":"git+https://github.com/micromatch/picomatch.git","type":"git"},"_npmVersion":"6.9.0","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"10.16.3","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.3.0","mocha":"^6.0.2","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_2.1.1_1573079005960_0.8760210690317336","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"picomatch","version":"2.2.0","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@2.2.0","maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"}],"homepage":"https://github.com/micromatch/picomatch","bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"nyc":{"reporter":["html","lcov","text-summary"]},"dist":{"shasum":"e16e8587cb70cb515a698ee4a0f2df1edb0c9aa3","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-2.2.0.tgz","fileCount":11,"integrity":"sha512-Gskshv+376q+hmJbbOiMK+Jtv3bNkwnoOtVSPkcSrvsu9WuKJvBXOcSlBkWgWE0+A011wfafeWpiDrdbowddfg==","signatures":[{"sig":"MEUCICaSLLdw9rvKW4hTfSh4aV3g46/8+8ZlfK2x488iDCP0AiEAycW+UwmBJYLgkAXSriycKUDPuHeWe48EBslsvy0nn6M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":91626,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeEPYtCRA9TVsSAnZWagAA5I8P/36DVnHPX3v7sQtvPwrX\nXjdHfPRstr4F51OZ27dIcoLN21CV5qRmI8EhsSLl3sTv9AOhx6wm9f2cChWF\nNZF8/fQXa4C/ZtckhJWIL3GgyfXZbDIJBHImq9EeenGzCLk93FopZZPpa+z1\nt0fBON+Jr+J7/y5paTSPNVKGdfvdDfGPgSO0j0KYPYhQn1IMnBkuzMt2li5B\nQ9T7BfUJ8CL6fu/37PWQ/RnJeOFWW/cHk8NWe9/bowk0Xq6x1Jsf6MQeM55d\nEvBmTHSc1gra+4dWzjdfG+x4X7lJ5xnJiUtXO5Eld0i5qGknjQKvUAKHCyaF\n9moYR1aCXe3Yetx7TfNPQE1574lalljQL4T5rgximAJOxA8UjlE7xBmU3d6m\nBo2mjjYeJb2Y8VRf3LxweD2RMWlzxsiEssyF1+dydQY3R1pKH5QQYcugbwM6\n2ci3ISisTYqJNMEgxc0d7pWgM8XCjI1vx2uUZhkZghgHuXPz+X6V06aNdSl3\n5tNfX9+M3EVFkakjFgXzjAcGcF2/IteAgrl8miLdbPyq7iaAmpRRQRunkbva\nFbPxNyC0BPp0p3vMRTykmJfkfXZCaFrnN1B5G/BZAi3Tt43rTUtjDEN9dCzi\njTlYI8nqsiX+WHbe9APKIgmB8EZ1xYbfXIDaeHBvgnREPtDf6qCpzc+eRq6/\n64PB\r\n=O5nY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":{"method":"preWrite","render":true,"maxdepth":3},"lint":{"reflinks":true},"tasks":["readme"],"layout":"empty","plugins":["gulp-format-md"],"related":{"list":["braces","micromatch"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8.6"},"funding":"https://github.com/sponsors/jonschlinkert","gitHead":"002e806951ddadc7b27c9d8e8f92d6709d34d1d7","scripts":{"lint":"eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .","test":"npm run lint && npm run mocha","mocha":"mocha --reporter dot","test:ci":"npm run lint && npm run test:cover","test:cover":"nyc npm run mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/micromatch/picomatch.git","type":"git"},"_npmVersion":"6.13.4","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"13.5.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","mocha":"^6.2.2","eslint":"^6.8.0","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_2.2.0_1578169900719_0.35959725130594666","host":"s3://npm-registry-packages"}},"2.2.1":{"name":"picomatch","version":"2.2.1","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@2.2.1","maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"}],"homepage":"https://github.com/micromatch/picomatch","bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"nyc":{"reporter":["html","lcov","text-summary"]},"dist":{"shasum":"21bac888b6ed8601f831ce7816e335bc779f0a4a","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-2.2.1.tgz","fileCount":11,"integrity":"sha512-ISBaA8xQNmwELC7eOjqFKMESB2VIqt4PPDD0nsS95b/9dZXvVKOlz9keMSnoGGKcOHXfTvDD6WMaRoSc9UuhRA==","signatures":[{"sig":"MEUCIQC61vmK607y9vC9hnsLOr+fZrphwKvgmY9ADfheVND9LgIgP0GWdvPb/ToFC9/xPKIzFjUz1ZFmn+G8zA25SHjQohc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":92535,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeEQF1CRA9TVsSAnZWagAAFPUP/iMuLEJZn5i/5ZikfVC7\nKuODpS6DPrtfaWEc+j6WjLGhLyjt4XDvSGO/5CD1T1+lTM/Ch2XsnUji7MPq\nKcQecli695M0daO8LI9NbnN3omHsoWVOKGWqEAzML+rcvvfFCb0coCaMyoyN\n6E3Y0oxIRt4Wwzbo6VMq2NBy49K+f5hJidxpDENe+P9Vcu587tyG/21MPTcE\npLOiNCkGY7p+1TN7NxzhmDJZ5u8L21U2v11MnOzLp+umOfo1x0kEbar8r5vB\nb7Ux3G4tMyCHo15ts6XnsgzZcQaznjeClOX6Swv2jPW8nrcTN27/v+LeIVL2\ngW3pTqTadCd6xkorMfOYMI3fjrVtMERI+xkWFtqD7yOTyJ4jr1ofSSssvXBv\ncMTI2sq8008pbSCrM4jPqH/9zV4Vs3B9PWL+2NckiHxLD86z5zGt7GcWmF/Y\nBkXz647xqu/dEkrM+eLnPxqwq+vxJyEYcClbXJlU3KsJYa5DtXucqtMQyR0W\nD7f4QMiBPc/DHxiXcQn26zFushCNV6wRGNzHlUl2TzZqt71jaJ+ywvGOTEcm\nZTFbGPoB3lhsjBQItFyl6vbx9n0JhSOb6nD5nCjSLHCMFerWfdFMJwNlnClW\nPI1iOe9gRzLQdHdaMCIYS5/KpsttPTN7VgGmcSRwOQoLkihXTj4PMITRjwbG\nETnD\r\n=EKo9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":{"method":"preWrite","render":true,"maxdepth":3},"lint":{"reflinks":true},"tasks":["readme"],"layout":"empty","plugins":["gulp-format-md"],"related":{"list":["braces","micromatch"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8.6"},"funding":"https://github.com/sponsors/jonschlinkert","gitHead":"1d546ea22efa8ff3ca15b4848a2dffdb53aaef9a","scripts":{"lint":"eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .","test":"npm run lint && npm run mocha","mocha":"mocha --reporter dot","test:ci":"npm run lint && npm run test:cover","test:cover":"nyc npm run mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/micromatch/picomatch.git","type":"git"},"_npmVersion":"6.13.4","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"13.5.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","mocha":"^6.2.2","eslint":"^6.8.0","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_2.2.1_1578172787892_0.37797747768464274","host":"s3://npm-registry-packages"}},"2.2.2":{"name":"picomatch","version":"2.2.2","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@2.2.2","maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"}],"homepage":"https://github.com/micromatch/picomatch","bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"nyc":{"reporter":["html","lcov","text-summary"]},"dist":{"shasum":"21f333e9b6b8eaff02468f5146ea406d345f4dad","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz","fileCount":10,"integrity":"sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==","signatures":[{"sig":"MEUCIDiJC682+y1pZWPf4DlGsEy5GzqCqje0s42ZURNlyB+yAiEAzZ0+9MVyRyI4d0b9VvMbryH/CipJDgH3X+kub3ZVfZY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":86698,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJedfs/CRA9TVsSAnZWagAAFd8QAI0oUsjS5gRkdVpkhFu3\n6SzPIdB44O9vJVnG0cYu65jTNGvi5Pm2/TeBgHzZka873aJXCbWv05iLZrMq\nJ9uuLUJGxtTO5DIMAU6CKbX9LwH3kPv5XFYMREu1Kv64wq4azFj0THglySIN\n54nda1JWMy6DiP5ukuGbgOI29AOIkascwZPwtpj8uHDVJH6kB6mQH8NPMUAC\nl9w4l7+L+aOVd4epU55Gd8hp0mNrTkp0XmuWt43T8gvmPd1aW2wK7civq1gs\nYxZNqzi7sIooMlnn/AcqaHyvfh7b6kwPZG6w3qKTELlIfPFhzYDOaq9YCLIw\ne2DXO5O/1Xkf1wik9zkRFkbNPTRlG3mtqiJ77NIXr4jWBTeE/FBT0oBJxm0K\nGv7vc/h9SreU/4vNM3pZeX3S3tk2DaOym4wcjXbLiB7QlnVTahuBb5xUKEwS\nM49zBKXLGj6DyvgWnTs1yz37+yCynNAMBWDO4xcIFOvfWkqfd88+hi7Jd1rF\ntPeKxrXnFUUlayKKg13gHTVu3VCyHGTs58TDDDGhVZRZT62DTIrlkommLbF2\nKQr//pmeWX4osj1yrdkbSUbrUgIAfPgMXGOvo+a2bzxEjEJsCPswWgZ635AZ\noqUPsLsFqb4KU1VD4kP7c1WGAfywgYIhr/XNwFCURfKA891VT/68bfvB9f/y\n/f1C\r\n=CTbl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":{"method":"preWrite","render":true,"maxdepth":3},"lint":{"reflinks":true},"tasks":["readme"],"layout":"empty","plugins":["gulp-format-md"],"related":{"list":["braces","micromatch"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8.6"},"funding":"https://github.com/sponsors/jonschlinkert","gitHead":"aed790f037736f5c760f7b120935714d21503fe9","scripts":{"lint":"eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .","test":"npm run lint && npm run mocha","mocha":"mocha --reporter dot","test:ci":"npm run test:cover","test:cover":"nyc npm run mocha"},"_npmUser":{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"},"repository":{"url":"git+https://github.com/micromatch/picomatch.git","type":"git"},"_npmVersion":"6.9.0","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"12.4.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","mocha":"^6.2.2","eslint":"^6.8.0","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_2.2.2_1584790334576_0.87664955346259","host":"s3://npm-registry-packages"}},"2.2.3":{"name":"picomatch","version":"2.2.3","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@2.2.3","maintainers":[{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"},{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"danez","email":"npm@tschinder.de"}],"homepage":"https://github.com/micromatch/picomatch","bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"nyc":{"reporter":["html","lcov","text-summary"]},"dist":{"shasum":"465547f359ccc206d3c48e46a1bcb89bf7ee619d","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-2.2.3.tgz","fileCount":10,"integrity":"sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==","signatures":[{"sig":"MEUCIDFM5GRFAmJV+DTWV2D5okMbKVgjFoqgYCBUz8fNM4wmAiEAhMFPEl7Y1LyrMOrDqoJpydl/zRi565veb9fP+QKP944=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":86981,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgcXqRCRA9TVsSAnZWagAAeYsP+gLSq2vCdVqWAAxLLXnj\n2+QiIYmPc9tNKdV495T7Bn4YLvN69CePpbtCQOxRTD97YJ/SHYEYVoewMdOn\nCuR7wPiVKwpqQleSaDjZLpyRMHeZ0jFg49UyJqfgZMQo+MWyBKAma9c9tu3Z\nT5lH7WDSe04FKQpXx7prh+zG7qjB3DEZxmSIGerOF9W7q5r7ceQuEQ3MRGfq\nR6tYq+K4OxQmMeV92OPDVDY+hEsp08/Vcd5iGrwhzGffjixF+AbNcWd2adyU\nmsB9nbGdQgWuZbaiFfIL6pqwoYt9PW5PaptEfLIytQOlFnQY//gj9/fq+1Ph\nSXq+Ab/HjyLZjqTKrty02dWr35mh74BtGRcO3wpczeNmnXQqIqjrehaXsKJY\nE5oZdCH005zdYr0OkmKJwjsJQ56qxCPUqX7k27yBwpd6HlbVDX97JeeUGlqV\nIlkcchioYDLHCSwRbifcH1iMjCDy466n/hfKPlLS5xylI+IgqKSTftSfvd1h\naHauH1u7dPmD102Hr+xSG10gZJ1Jel+kX4+fPry+HyXKoucEHd+OcRKYsWNY\nIr44J0dPa5Da1J3pG9XMjeg7bSUyqHzGctHWOb0KXeYWLpAk4ewnEUgecEjA\nf5h9UdLWkyaWLtMI5SOczE0/DOuj8n1Drc/JOySnjT2xXXBHOCjUXAMRT2Qk\negjU\r\n=NTKo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":{"method":"preWrite","render":true,"maxdepth":3},"lint":{"reflinks":true},"tasks":["readme"],"layout":"empty","plugins":["gulp-format-md"],"related":{"list":["braces","micromatch"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8.6"},"funding":"https://github.com/sponsors/jonschlinkert","gitHead":"8839c01247bc39a5837428dbdf381fd47c564f1f","scripts":{"lint":"eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .","test":"npm run lint && npm run mocha","mocha":"mocha --reporter dot","test:ci":"npm run test:cover","test:cover":"nyc npm run mocha"},"_npmUser":{"name":"danez","email":"npm@tschinder.de"},"repository":{"url":"git+https://github.com/micromatch/picomatch.git","type":"git"},"_npmVersion":"6.13.4","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"12.15.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","mocha":"^6.2.2","eslint":"^6.8.0","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_2.2.3_1618049680785_0.34621149383553895","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"picomatch","version":"2.3.0","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@2.3.0","maintainers":[{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"},{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"danez","email":"npm@tschinder.de"}],"homepage":"https://github.com/micromatch/picomatch","bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"nyc":{"reporter":["html","lcov","text-summary"]},"dist":{"shasum":"f1f061de8f6a4bf022892e2d128234fb98302972","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz","fileCount":10,"integrity":"sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==","signatures":[{"sig":"MEUCIFZvPCnULbhmORLFGzgibXMC35hzLq/rOtEVKRnDtSMRAiEA9YmmWGkYA2rOKeFLdCE4qsB46A/OaxKgNpCnQlx0raU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":88974,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgqGMhCRA9TVsSAnZWagAAVJUP/RuLJ4J0SmAisEU1gx/h\nCeNw5wzjEgvmEdSc3Vxp00z6uFR0r4eln5HCcQ9q+sYPBeq5AOvWlk78bYvL\nEw5fcokkB+nDmeP9JcQxuzUBwvfzwVqbt2GgOKaZYHA+ueVzSacTaRXAR17m\nlLcOS/i7N53rTyJSJmEa0Lsz3jhZSJ3tDtBN45fiw1GL6SneRxifPxbrer4w\ns0pLQGyZc13dS6mJHsAyIRbo8OTFBIp12u1L3chtYaTkg2J+jU+4aVC3xk1u\nJO8SwKlmKSw1dZxK9PSbZp12jajNTxvoUHb+9uabeepuhYDfKlAQk5qcD2fh\nJ/JPhEqw32Vp5KUiECr6IkAZrw/eWNyoHMDY5Iq/2xSAYBoC5uKLw6U88BC1\nn8TvJMt9KcTeb9WlUrRWA1FVcgUqtjuuD7jGiBSBKiFcjerjpaR49R94ZmIj\n/lx7fIvWzMDA1XhtpWgyOjZdmQ8S6nq4WYx9K4NOiS/pK8ms/U1YGg4pfQQu\nI9ipv5+XyOINt4KQydN+eeYXjyp6XacRrg/fSyU+A5+0fIXXeQLne127Yfcm\no/wHH6o+MUSgFsnH8wK2gERgTkvvPHUmNSLKuzfJ4wYPsRtBuI7UIGtmajXk\nKZN4giW780aLozkZPLuefPGuQqN6C8BAvUOGji05MDlNjKslT+NHgSrQHrfO\niBq5\r\n=Coa4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":{"method":"preWrite","render":true,"maxdepth":3},"lint":{"reflinks":true},"tasks":["readme"],"layout":"empty","plugins":["gulp-format-md"],"related":{"list":["braces","micromatch"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8.6"},"funding":"https://github.com/sponsors/jonschlinkert","gitHead":"68797253c84ffaf3c5386cdeb5325920fd96726a","scripts":{"lint":"eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .","test":"npm run lint && npm run mocha","mocha":"mocha --reporter dot","test:ci":"npm run test:cover","test:cover":"nyc npm run mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/micromatch/picomatch.git","type":"git"},"_npmVersion":"7.10.0","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"16.0.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","mocha":"^6.2.2","eslint":"^6.8.0","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_2.3.0_1621648160214_0.689432455944144","host":"s3://npm-registry-packages"}},"2.3.1":{"name":"picomatch","version":"2.3.1","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@2.3.1","maintainers":[{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"},{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"danez","email":"npm@tschinder.de"}],"homepage":"https://github.com/micromatch/picomatch","bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"nyc":{"reporter":["html","lcov","text-summary"]},"dist":{"shasum":"3ba3833733646d9d3e4995946c1365a67fb07a42","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz","fileCount":10,"integrity":"sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==","signatures":[{"sig":"MEQCIHkNdBstV/YHtO1LuMPpQpESvlgEXck/xPmvVaWTlWyqAiAlQB/bZRsKFfDsuQB/hsPD7oVyVf544JyspNpfEGBbXg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":89952,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0d5gCRA9TVsSAnZWagAAhvsP/3X0Wzp61vQEMw/gnra7\nCpQhnAtHPgHqZkNz8zCtuudav0Hdp4qNVCQKPcNeFHjYdJFKbFf3C97nPvEr\nVxtxYEQDvk4pkmpLqtY34oFKlT7nlezLjOigwL9GxjBlTqy35mgIx4Hemf3R\nUuKHDfHvQQ+4hH66cDlZwv3rWEMVTrkqXQblQ4ZVnAQuvnhhM1ehIUuSpw2y\ncJ+7DMNW4sbEAMWTK28F/v1IBnlcN3ENY/387Z8nqedY1oJZpmgK1iVojHv6\n29dDa+la+GR5cBQGXBXj66t89kK/7p6BQMSYUJ+FcecHBPZ+rW5rAGXJlzx7\nqw3QdUZQ5TQzcRR/4MJ1ALKEM6Pk7COdO0+RJ+ST0Jitw3t+PZkXGgG3lIW/\ngOghIdK1jqP7Fy3y82ECOwst0akaqX2I1Oe3tktn8CMvlbwg6jaPp8l7jI7d\ncaWZx+peRszFxqY5GicA42xDs1UQ0YyWQeowkLUcFswF2YihfccEZ3JqfGZL\nKPNH1i55aZc4nRX5vajmq7lCSXgRYgGZ18s/UOQXWU/BHY1+GGF4zf4h0Spi\nEHCofcLg7umyRvfvj//Ig8qtUHNUxgs7ioN3tgXq63Gdu8KYN0hU5RwTxSDR\nzboyO+txrwwtntrbZMOIL667Ndfnj9FtMfLdEjBdZBXfddOXbCJPErG6ZoEW\ninis\r\n=D34Z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","verb":{"toc":{"method":"preWrite","render":true,"maxdepth":3},"lint":{"reflinks":true},"tasks":["readme"],"layout":"empty","plugins":["gulp-format-md"],"related":{"list":["braces","micromatch"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8.6"},"funding":"https://github.com/sponsors/jonschlinkert","gitHead":"5467a5a9638472610de4f30709991b9a56bb5613","scripts":{"lint":"eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .","test":"npm run lint && npm run mocha","mocha":"mocha --reporter dot","test:ci":"npm run test:cover","test:cover":"nyc npm run mocha"},"_npmUser":{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"},"repository":{"url":"git+https://github.com/micromatch/picomatch.git","type":"git"},"_npmVersion":"6.14.15","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","mocha":"^6.2.2","eslint":"^6.8.0","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_2.3.1_1641143904045_0.8104619493917313","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"picomatch","version":"3.0.0","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@3.0.0","maintainers":[{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"},{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"danez","email":"npm@tschinder.de"}],"homepage":"https://github.com/micromatch/picomatch","bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"nyc":{"reporter":["html","lcov","text-summary"]},"dist":{"shasum":"95ce1a281a24a340c3ddc981a63d89360c6dab9b","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-3.0.0.tgz","fileCount":10,"integrity":"sha512-G+bUnjy7wQOJBK3YS6hErp7nUOJ+SWI+JZeDEATcdAjnHZwjJ6TXm4TGOHgGScf5lCNGdT9rXdqIa0tJ3lYhnQ==","signatures":[{"sig":"MEUCIQDlgwNuwXNcGNrSM2miknioTM5TQ6E7+nkpnomdbvnl3wIgZgQM+olhYLgVx1q12907ucYPHoxVfvtPVgU9sT5c4jA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85254},"main":"index.js","verb":{"toc":{"method":"preWrite","render":true,"maxdepth":3},"lint":{"reflinks":true},"tasks":["readme"],"layout":"empty","plugins":["gulp-format-md"],"related":{"list":["braces","micromatch"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=8.6"},"funding":"https://github.com/sponsors/jonschlinkert","gitHead":"bc719c4c7ee0b1f7e1d1bdd27d60ae1779a43d89","scripts":{"lint":"eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .","test":"npm run lint && npm run mocha","mocha":"mocha --reporter dot","test:ci":"npm run test:cover","test:cover":"nyc npm run mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/micromatch/picomatch.git","type":"git"},"_npmVersion":"9.5.1","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","mocha":"^6.2.2","eslint":"^6.8.0","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_3.0.0_1698541101595_0.18540257320350095","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"picomatch","version":"3.0.1","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@3.0.1","maintainers":[{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"},{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"danez","email":"npm@tschinder.de"}],"homepage":"https://github.com/micromatch/picomatch","bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"nyc":{"reporter":["html","lcov","text-summary"]},"dist":{"shasum":"817033161def55ec9638567a2f3bbc876b3e7516","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-3.0.1.tgz","fileCount":10,"integrity":"sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==","signatures":[{"sig":"MEYCIQCBshR2DnpauYeCpPH2PdLEzVVn/6IVwxX5cKcyKw0IvAIhALWEelCNTAwW0WwNliGRF1uV888N3KKpr+pxbwcc/rXM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85253},"main":"index.js","verb":{"toc":{"method":"preWrite","render":true,"maxdepth":3},"lint":{"reflinks":true},"tasks":["readme"],"layout":"empty","plugins":["gulp-format-md"],"related":{"list":["braces","micromatch"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=10"},"funding":"https://github.com/sponsors/jonschlinkert","gitHead":"bc719c4c7ee0b1f7e1d1bdd27d60ae1779a43d89","scripts":{"lint":"eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .","test":"npm run lint && npm run mocha","mocha":"mocha --reporter dot","test:ci":"npm run test:cover","test:cover":"nyc npm run mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/micromatch/picomatch.git","type":"git"},"_npmVersion":"9.5.1","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","mocha":"^6.2.2","eslint":"^6.8.0","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_3.0.1_1698567169869_0.4683729438350761","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"picomatch","version":"4.0.0","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@4.0.0","maintainers":[{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"},{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"danez","email":"npm@tschinder.de"}],"homepage":"https://github.com/micromatch/picomatch","bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"nyc":{"reporter":["html","lcov","text-summary"]},"dist":{"shasum":"8410b450c046948141ca7bd8adfc8cf753a4652a","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-4.0.0.tgz","fileCount":10,"integrity":"sha512-luYHSuwP2yHKySJ5J1ujgN2gSGFP+Ua6F1dvOTusl392lTqouuf5KO3QFRbc8nBM1uWiDhltecTxnij9wIorAA==","signatures":[{"sig":"MEUCIQCJbuXzmUIOMdoVNnsqL81eIs7X7diCc/TkH+4oa4DfvAIgUu7HvSrrNRFmED1HZ3SncfvnwcVDurFd49+2W5RSg28=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85192},"main":"index.js","verb":{"toc":{"method":"preWrite","render":true,"maxdepth":3},"lint":{"reflinks":true},"tasks":["readme"],"layout":"empty","plugins":["gulp-format-md"],"related":{"list":["braces","micromatch"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=10"},"funding":"https://github.com/sponsors/jonschlinkert","gitHead":"9db2a4ad919d7dd0182513d7d211393a021bb91e","scripts":{"lint":"eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .","test":"npm run lint && npm run mocha","mocha":"mocha --reporter dot","test:ci":"npm run test:cover","test:cover":"nyc npm run mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/micromatch/picomatch.git","type":"git"},"_npmVersion":"9.5.1","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"sideEffects":false,"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^10.2.0","eslint":"^8.56.0","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_4.0.0_1707358931964_0.759314750403971","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"picomatch","version":"4.0.1","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@4.0.1","maintainers":[{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"},{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"danez","email":"npm@tschinder.de"}],"homepage":"https://github.com/micromatch/picomatch","bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"nyc":{"reporter":["html","lcov","text-summary"]},"dist":{"shasum":"68c26c8837399e5819edce48590412ea07f17a07","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-4.0.1.tgz","fileCount":10,"integrity":"sha512-xUXwsxNjwTQ8K3GnT4pCJm+xq3RUPQbmkYJTP5aFIfNIvbcc/4MUxgBaaRSZJ6yGJZiGSyYlM6MzwTsRk8SYCg==","signatures":[{"sig":"MEUCIHpZMEvmMlm+TOQuad1AEOJydXIMsmBfnlaYa9g7RLsAAiEAphtzMzPrvk5PaPdc3zMRFy0hXjMYtdu0DNxS5zQsZjs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85192},"main":"index.js","verb":{"toc":{"method":"preWrite","render":true,"maxdepth":3},"lint":{"reflinks":true},"tasks":["readme"],"layout":"empty","plugins":["gulp-format-md"],"related":{"list":["braces","micromatch"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=12"},"funding":"https://github.com/sponsors/jonschlinkert","gitHead":"6ce95f5e008590510adac57d1910e574aa65845f","scripts":{"lint":"eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .","test":"npm run lint && npm run mocha","mocha":"mocha --reporter dot","test:ci":"npm run test:cover","test:cover":"nyc npm run mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/micromatch/picomatch.git","type":"git"},"_npmVersion":"9.5.1","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"sideEffects":false,"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^10.2.0","eslint":"^8.56.0","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_4.0.1_1707359513149_0.6004248698501251","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"picomatch","version":"4.0.2","keywords":["glob","match","picomatch"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"picomatch@4.0.2","maintainers":[{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"},{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"danez","email":"npm@tschinder.de"}],"homepage":"https://github.com/micromatch/picomatch","bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"nyc":{"reporter":["html","lcov","text-summary"]},"dist":{"shasum":"77c742931e8f3b8820946c76cd0c1f13730d1dab","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz","fileCount":10,"integrity":"sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==","signatures":[{"sig":"MEUCIEtbvwmKkqlXNXSqLwMF1mRFHpVKpPVOPu7o3tmOeZbrAiEAuTHJPb1fKWoHwYrKEQpmPkOLBMChBX1HltMmP7P6PBI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85237},"main":"index.js","verb":{"toc":{"method":"preWrite","render":true,"maxdepth":3},"lint":{"reflinks":true},"tasks":["readme"],"layout":"empty","plugins":["gulp-format-md"],"related":{"list":["braces","micromatch"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"engines":{"node":">=12"},"funding":"https://github.com/sponsors/jonschlinkert","gitHead":"d958901678e12fb10c4e65dfe31e245931e719b3","scripts":{"lint":"eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .","test":"npm run lint && npm run mocha","mocha":"mocha --reporter dot","test:ci":"npm run test:cover","test:cover":"nyc npm run mocha"},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/micromatch/picomatch.git","type":"git"},"_npmVersion":"9.5.1","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","directories":{},"sideEffects":false,"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^10.4.0","eslint":"^8.57.0","fill-range":"^7.0.1","time-require":"github:jonschlinkert/time-require","gulp-format-md":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/picomatch_4.0.2_1711596191194_0.31621911647882506","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"picomatch","description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","version":"4.0.3","homepage":"https://github.com/micromatch/picomatch","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"funding":"https://github.com/sponsors/jonschlinkert","repository":{"type":"git","url":"git+https://github.com/micromatch/picomatch.git"},"bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"license":"MIT","sideEffects":false,"main":"index.js","engines":{"node":">=12"},"scripts":{"lint":"eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .","mocha":"mocha --reporter dot","test":"npm run lint && npm run mocha","test:ci":"npm run test:cover","test:cover":"nyc npm run mocha"},"devDependencies":{"eslint":"^8.57.0","fill-range":"^7.0.1","gulp-format-md":"^2.0.0","mocha":"^10.4.0","nyc":"^15.1.0","time-require":"github:jonschlinkert/time-require"},"keywords":["glob","match","picomatch"],"nyc":{"reporter":["html","lcov","text-summary"]},"verb":{"toc":{"render":true,"method":"preWrite","maxdepth":3},"layout":"empty","tasks":["readme"],"plugins":["gulp-format-md"],"lint":{"reflinks":true},"related":{"list":["braces","micromatch"]},"reflinks":["braces","expand-brackets","extglob","fill-range","micromatch","minimatch","nanomatch","picomatch"]},"_id":"picomatch@4.0.3","gitHead":"eec6f0bab6a05de4ffb6cf65357f4b5226a58dd9","_nodeVersion":"22.13.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==","shasum":"796c76136d1eead715db1e7bad785dedd695a042","tarball":"https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz","fileCount":10,"unpackedSize":85257,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIB/2maEUvsFTJK+OastccB51P74KS7VpaQhMKTG4ABUAAiEA8scjKKyXWuyachLBB9Xz9tlviJE1Vf7I05MA8clemQE="}]},"_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"directories":{},"maintainers":[{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"},{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"danez","email":"npm@tschinder.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/picomatch_4.0.3_1752608366305_0.6848992028639387"},"_hasShrinkwrap":false}},"time":{"created":"2018-11-05T12:07:08.561Z","modified":"2025-07-15T19:39:26.657Z","1.0.0":"2018-11-05T12:07:08.695Z","1.0.1":"2018-11-05T12:12:00.358Z","1.0.2":"2018-11-05T13:45:29.274Z","1.1.0":"2018-12-14T17:18:24.238Z","1.1.1":"2018-12-15T03:09:48.333Z","1.1.2":"2018-12-15T03:13:01.124Z","1.2.0":"2019-03-30T02:20:22.763Z","2.0.0":"2019-04-10T11:03:29.057Z","2.0.1":"2019-04-10T11:50:06.709Z","2.0.2":"2019-04-10T12:16:36.700Z","2.0.3":"2019-04-10T12:43:39.432Z","2.0.4":"2019-04-14T06:34:51.007Z","2.0.5":"2019-04-20T15:42:51.621Z","2.0.6":"2019-05-04T08:17:27.543Z","2.0.7":"2019-05-14T17:41:22.540Z","2.1.0":"2019-10-31T08:03:28.846Z","2.1.1":"2019-11-06T22:23:26.115Z","2.2.0":"2020-01-04T20:31:40.843Z","2.2.1":"2020-01-04T21:19:48.019Z","2.2.2":"2020-03-21T11:32:14.696Z","2.2.3":"2021-04-10T10:14:40.929Z","2.3.0":"2021-05-22T01:49:20.438Z","2.3.1":"2022-01-02T17:18:24.430Z","3.0.0":"2023-10-29T00:58:21.803Z","3.0.1":"2023-10-29T08:12:50.118Z","4.0.0":"2024-02-08T02:22:12.147Z","4.0.1":"2024-02-08T02:31:53.301Z","4.0.2":"2024-03-28T03:23:11.348Z","4.0.3":"2025-07-15T19:39:26.492Z"},"bugs":{"url":"https://github.com/micromatch/picomatch/issues"},"author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"license":"MIT","homepage":"https://github.com/micromatch/picomatch","keywords":["glob","match","picomatch"],"repository":{"type":"git","url":"git+https://github.com/micromatch/picomatch.git"},"description":"Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.","maintainers":[{"name":"mrmlnc","email":"dmalinochkin@rambler.ru"},{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"danez","email":"npm@tschinder.de"}],"readme":"
\nBlazing fast and accurate glob matcher written in JavaScript.\nNo dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.\n
\n\t\n\t\tGet professional support for 'pify' with a Tidelift subscription\n\t\n\t \n\t\n\t\tTidelift helps make open source sustainable for maintainers while giving companies assurances about security, maintenance, and licensing for their dependencies.\n\t\n
\n","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"time":{"modified":"2023-06-17T00:08:09.166Z","created":"2015-08-29T08:15:22.672Z","1.0.0":"2015-08-29T08:15:22.672Z","1.1.0":"2015-08-30T04:05:41.513Z","1.1.1":"2015-09-01T16:53:09.168Z","2.0.0":"2015-09-04T07:45:20.325Z","2.1.0":"2015-09-08T19:54:14.378Z","2.2.0":"2015-09-11T07:09:26.197Z","2.3.0":"2015-10-26T13:16:18.238Z","3.0.0":"2017-05-28T06:25:28.083Z","4.0.0":"2018-08-09T13:49:37.494Z","4.0.1":"2018-10-22T12:58:59.524Z","5.0.0":"2020-02-14T16:26:35.672Z","6.0.0":"2022-06-06T12:35:25.821Z","6.1.0":"2022-09-02T12:55:21.948Z"},"homepage":"https://github.com/sindresorhus/pify#readme","keywords":["promisify","callback","promise","promises","denodify","denodeify","node","then","thenify","convert","transform","wrap","wrapper","bind","async","await","es2015","bluebird"],"repository":{"type":"git","url":"git+https://github.com/sindresorhus/pify.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"bugs":{"url":"https://github.com/sindresorhus/pify/issues"},"license":"MIT","readmeFilename":"readme.md","users":{"axelav":true,"jamescostian":true,"3846masa":true,"theoy":true,"antixrist":true,"f124275809":true,"riyadhalnur":true,"quocnguyen":true,"scottfreecode":true,"mariusc23":true,"nickytonline":true,"joanmi":true,"wangfeia":true,"edloidas":true,"j.su":true,"marcellk":true,"faraoman":true,"moonou":true,"seangenabe":true,"bluelovers":true,"shanewholloway":true,"shakakira":true,"zeusdeux":true,"daizch":true,"benrussert":true,"rocket0191":true,"grreenzz":true,"danielpavelic":true,"sensui":true,"fabien0102":true,"laomu":true,"gpuente":true,"ash":true,"rsp":true,"andygreenegrass":true,"dralc":true,"larrychen":true,"josephst18":true,"l3au":true,"andreaspizsa":true,"vidhill":true,"isayme":true,"zhenguo.zhao":true,"shangsinian":true,"qualiabyte":true,"jireve999":true,"robinblomberg":true,"dqisme":true,"scott.m.sarsfield":true,"panlw":true,"lunelson":true,"zhangaz1":true,"fargie_s":true,"sujeet555":true,"soenkekluth":true,"jherax":true,"taoqianbao":true,"floby":true,"sonnycrockett":true,"mestar":true,"zuojiang":true,"flumpus-dev":true}}
\ No newline at end of file
diff --git a/.npm-cache/_cacache/content-v2/sha512/45/56/52215e481b5d079377a7a2dae1bf3d13f5e9ba7321c12e41ff60066e2aa77c85190a8527c218870fd8a518d043f19ddcc034198d965cd63f06a4f9b85e4b b/.npm-cache/_cacache/content-v2/sha512/45/56/52215e481b5d079377a7a2dae1bf3d13f5e9ba7321c12e41ff60066e2aa77c85190a8527c218870fd8a518d043f19ddcc034198d965cd63f06a4f9b85e4b
deleted file mode 100644
index 117a210..0000000
Binary files a/.npm-cache/_cacache/content-v2/sha512/45/56/52215e481b5d079377a7a2dae1bf3d13f5e9ba7321c12e41ff60066e2aa77c85190a8527c218870fd8a518d043f19ddcc034198d965cd63f06a4f9b85e4b and /dev/null differ
diff --git a/.npm-cache/_cacache/content-v2/sha512/45/fa/80bcb9cc977d77afb73da1c941d478541007b37292e3cfde70147e0b56e864f4917faf6daa9953fd00c98e538bcc5fb43ca4df23c0d83f092a5d1673234d b/.npm-cache/_cacache/content-v2/sha512/45/fa/80bcb9cc977d77afb73da1c941d478541007b37292e3cfde70147e0b56e864f4917faf6daa9953fd00c98e538bcc5fb43ca4df23c0d83f092a5d1673234d
deleted file mode 100644
index 7a571b4..0000000
Binary files a/.npm-cache/_cacache/content-v2/sha512/45/fa/80bcb9cc977d77afb73da1c941d478541007b37292e3cfde70147e0b56e864f4917faf6daa9953fd00c98e538bcc5fb43ca4df23c0d83f092a5d1673234d and /dev/null differ
diff --git a/.npm-cache/_cacache/content-v2/sha512/46/48/4f3e9db3aea0c0400ff68cd867ced70f025bfae17761229edaef8e78039a2f23b06e93182decc5fbb9dc00bb7ce0d437293d4d2bcf7555d5279aaaf638f8 b/.npm-cache/_cacache/content-v2/sha512/46/48/4f3e9db3aea0c0400ff68cd867ced70f025bfae17761229edaef8e78039a2f23b06e93182decc5fbb9dc00bb7ce0d437293d4d2bcf7555d5279aaaf638f8
deleted file mode 100644
index 01d85fd..0000000
Binary files a/.npm-cache/_cacache/content-v2/sha512/46/48/4f3e9db3aea0c0400ff68cd867ced70f025bfae17761229edaef8e78039a2f23b06e93182decc5fbb9dc00bb7ce0d437293d4d2bcf7555d5279aaaf638f8 and /dev/null differ
diff --git a/.npm-cache/_cacache/content-v2/sha512/49/b2/9b00d90deb4dd58b88c466fe3d2de549327e321b0b1bcd9c28ac4a32122badb0dde725875b3b7eb37e1189e90103a4e6481640ed9eae494719af9778eca1 b/.npm-cache/_cacache/content-v2/sha512/49/b2/9b00d90deb4dd58b88c466fe3d2de549327e321b0b1bcd9c28ac4a32122badb0dde725875b3b7eb37e1189e90103a4e6481640ed9eae494719af9778eca1
deleted file mode 100644
index bb81b26..0000000
Binary files a/.npm-cache/_cacache/content-v2/sha512/49/b2/9b00d90deb4dd58b88c466fe3d2de549327e321b0b1bcd9c28ac4a32122badb0dde725875b3b7eb37e1189e90103a4e6481640ed9eae494719af9778eca1 and /dev/null differ
diff --git a/.npm-cache/_cacache/content-v2/sha512/4d/fc/92aecff99e6f1f4090dc043b949e0dd53942ac77b4beceabdb3938865c77f15f8c0adf56ab77e86836ebe489c33fd981739690e000139ebca4ac0781bf14 b/.npm-cache/_cacache/content-v2/sha512/4d/fc/92aecff99e6f1f4090dc043b949e0dd53942ac77b4beceabdb3938865c77f15f8c0adf56ab77e86836ebe489c33fd981739690e000139ebca4ac0781bf14
deleted file mode 100644
index b7f6b4f..0000000
Binary files a/.npm-cache/_cacache/content-v2/sha512/4d/fc/92aecff99e6f1f4090dc043b949e0dd53942ac77b4beceabdb3938865c77f15f8c0adf56ab77e86836ebe489c33fd981739690e000139ebca4ac0781bf14 and /dev/null differ
diff --git a/.npm-cache/_cacache/content-v2/sha512/4f/6e/0de84f7f41f30c95fb18205f67ae61811f232f2b46e6b0f078903bf9006d03ecaf2f5b87376035f2023fba31f08d3d9a87388b3a527c0f06d0825b1b360d b/.npm-cache/_cacache/content-v2/sha512/4f/6e/0de84f7f41f30c95fb18205f67ae61811f232f2b46e6b0f078903bf9006d03ecaf2f5b87376035f2023fba31f08d3d9a87388b3a527c0f06d0825b1b360d
deleted file mode 100644
index 097a50f..0000000
--- a/.npm-cache/_cacache/content-v2/sha512/4f/6e/0de84f7f41f30c95fb18205f67ae61811f232f2b46e6b0f078903bf9006d03ecaf2f5b87376035f2023fba31f08d3d9a87388b3a527c0f06d0825b1b360d
+++ /dev/null
@@ -1 +0,0 @@
-{"_id":"commander","_rev":"1438-6062c4e0997b96376869b24d41038930","name":"commander","dist-tags":{"2_x":"2.20.3","next":"13.0.0-0","latest":"14.0.2"},"versions":{"0.0.1":{"name":"commander","version":"0.0.1","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.0.1","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"4d4128672182d377fa53618d31282a985eeb0298","tarball":"https://registry.npmjs.org/commander/-/commander-0.0.1.tgz","integrity":"sha512-tCOJMg2UJ7N/ai7PbIb09Ae5gwURekJ0MPmgu0u8n1Ur1I9dX8ids/QWNw3B281xTGKuSi8zINkxEDp7TjM7xg==","signatures":[{"sig":"MEUCIGzAgD29K4V+7Zbk/4+4T+MYkiC1f2xhdJ4H1tNVjhmpAiEAuMdFu1Dhd9x0EygujXNQtxGMu3XzirZWwZ7DbPIcs+c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":"0.4.x"},"scripts":{},"_npmVersion":"1.0.14","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.4.10","_npmJsonOpts":{"file":"/Users/tj/.npm/commander/0.0.1/package/package.json","wscript":false,"serverjs":false,"contributors":false},"dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true},"0.0.3":{"name":"commander","version":"0.0.3","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.0.3","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"9feeaa41be6cd27a5682218cb986773e25b49525","tarball":"https://registry.npmjs.org/commander/-/commander-0.0.3.tgz","integrity":"sha512-AG38Y14Bs0PgWBao5p/7c9fM0k5lG6uH00KBiX7zqaSiyR74wyh8vSkR6BqryPrLZ14FBvlHCcQmjYWqN+05qw==","signatures":[{"sig":"MEQCIE7lQBger02i/TP2JJv3H29uEIzhB8cMW+HNDgxdiJcYAiBa3zN5Ypv6WHH0sd9lN7vI4sWCSH9d+GN4OJmz0hfGlQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":"0.4.x"},"scripts":{},"_npmVersion":"1.0.24","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.4.10","_npmJsonOpts":{"file":"/Users/tj/.npm/commander/0.0.3/package/package.json","wscript":false,"serverjs":false,"contributors":false},"dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true},"0.0.4":{"name":"commander","version":"0.0.4","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.0.4","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"72206c96453f4475c0a6e0f041707b217bef8331","tarball":"https://registry.npmjs.org/commander/-/commander-0.0.4.tgz","integrity":"sha512-oEmRSRK81PzVDy8BNNXfxv/QzOf+fGKeJ9Jq7Lzxljsx4QH7wEQQA92ZOe2C8GcLNRW8c3wVRcVJDRVRFpQMVA==","signatures":[{"sig":"MEQCIGl1Mf3LQS5FrJNlVVFYJX8gCJ054/3FlZGt0KWHrkcqAiBPLvLSHZFmZdPavSLMfW3YzkeOLK6Q+H9M5JTRyY6T+g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":"0.4.x"},"scripts":{},"_npmVersion":"1.0.24","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.4.10","_npmJsonOpts":{"file":"/Users/tj/.npm/commander/0.0.4/package/package.json","wscript":false,"serverjs":false,"contributors":false},"dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true},"0.0.5":{"name":"commander","version":"0.0.5","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.0.5","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"7824fe04d5357f6dba0045fba86fffcfc843ebfd","tarball":"https://registry.npmjs.org/commander/-/commander-0.0.5.tgz","integrity":"sha512-Uet84SNbwy+qsSU+hDhExwhWoAn65y9W1+w0n9aOTPuMJcVwcH8RpGU7Pa9uiZqK2d/Kf50SW3drsMNtNWnLqA==","signatures":[{"sig":"MEQCIAHfxT5VyvMjNU24ijiY/18Ip70CYCyWJyqg3amZ+HVLAiBowFwal56IUprnfiuSyQzHrW7gt2X6/VkS6W1jKoYJaA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":"0.4.x"},"scripts":{},"_npmVersion":"1.0.24","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.4.10","_npmJsonOpts":{"file":"/Users/tj/.npm/commander/0.0.5/package/package.json","wscript":false,"serverjs":false,"contributors":false},"dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true},"0.1.0":{"name":"commander","version":"0.1.0","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.1.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"4f1b767116853b659106f9cf5897c8bac2c189b2","tarball":"https://registry.npmjs.org/commander/-/commander-0.1.0.tgz","integrity":"sha512-Co5D0DJGIK+I2RHwGIWOli42dNU3QakxwZAROH1AN0lD32HguSbgrlrfQFxe5fSM6RK3rBQdgsEWMwQIDIjPpA==","signatures":[{"sig":"MEYCIQCltoDPf4N7EDWDqy8UBP9h9eWmfsAlyV2gTOiGJo7kWgIhALV7iRcn5Lt9T0vrw3hxtvZzFN2tT7DlQdWeWRFgGCVw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":"0.4.x"},"scripts":{},"_npmVersion":"1.0.24","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.4.11","_npmJsonOpts":{"file":"/Users/tj/.npm/commander/0.1.0/package/package.json","wscript":false,"serverjs":false,"contributors":false},"dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true},"0.2.0":{"name":"commander","version":"0.2.0","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.2.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"61d495ef9c5d9d4ab0a9d168674822ae07e961cc","tarball":"https://registry.npmjs.org/commander/-/commander-0.2.0.tgz","integrity":"sha512-tXycDJ1VgN+9A0DVf3iQvbnZzEf+BCY+ls/nlXQmdEmvnkppjB2pCu+iX1SiCPpRdKXKdrq4kbgnPGMqRJSnQw==","signatures":[{"sig":"MEUCIF+wOdvB5Rllv4qsudzalN18VDCq9CBqoXvi+PUR6EkGAiEA0AfIUmfSVEnk+pIaWzuUFkoFNKvbRLHiZPWOhBzBl/Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":"0.4.x"},"scripts":{},"repository":{"url":"git://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.0.24","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.4.12","_npmJsonOpts":{"file":"/Users/tj/.npm/commander/0.2.0/package/package.json","wscript":false,"serverjs":false,"contributors":false},"dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true},"0.2.1":{"name":"commander","version":"0.2.1","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.2.1","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"32ca3c217ac340082bd70e1326b5bbd41fbc6cd1","tarball":"https://registry.npmjs.org/commander/-/commander-0.2.1.tgz","integrity":"sha512-X0rKovMH5Z1nJ1tHvoC5/IR9LOa02F3wLp/VSCqE3JOoruENwoz+gh1hAmieiAdlaEooi//eRCQnOKI1JGva9Q==","signatures":[{"sig":"MEUCIE+SBRkwrXk1gx5vXewAtZ1sqUsR0gfbBSlZ01Pxd7RXAiEAt4/e2wjR7JxuzOkgA01almlHRIhC8jZTi4fGwqLxEII=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.4.x < 0.7.0"},"scripts":{},"repository":{"url":"git://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.0.24","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.5.9","_npmJsonOpts":{"file":"/Users/tj/.npm/commander/0.2.1/package/package.json","wscript":false,"serverjs":false,"contributors":false},"dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true},"0.3.0":{"name":"commander","version":"0.3.0","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.3.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"02cafd95f625df941eb0697b6bb540127c4778a7","tarball":"https://registry.npmjs.org/commander/-/commander-0.3.0.tgz","integrity":"sha512-PI7k+/YsVGSyqHefMZFaV/YktcBPuEtk9sJhGpd4usOn7Nm3rItEWx7fYns9Adu2JCtkFQk8VBpEzV0fPK7asQ==","signatures":[{"sig":"MEUCIQCOBX1pxYtKEEiv2pvdXciHphEur6oH+mDvqXzGgOoH1QIgS6gYJyuIQES4UChC65siWXRWyLc2I+wJg1moZUIwdg0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.4.x < 0.7.0"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"git://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.0.102","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.4.12","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true},"0.3.1":{"name":"commander","version":"0.3.1","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.3.1","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"a70cc95038d614937abf9349b0b94f5491bcd8eb","tarball":"https://registry.npmjs.org/commander/-/commander-0.3.1.tgz","integrity":"sha512-WH6vNSOAx1eq6wPKK2gxnf3bZ/A89cinni53VfAhhby7EntNP3eyAStVwzF0/jVEqO7/TZ0+ORZyspLZHPzalA==","signatures":[{"sig":"MEYCIQDl3ej6HqA7Ecf9bU6h4gsYxmADOVpAJrM3lNsh71f+XwIhAI2cgsw3AR4g3uV4tgkhVP179WORTKGB7rUpvnZbSTCz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.4.x < 0.7.0"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"git://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.0.102","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.4.12","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true},"0.3.2":{"name":"commander","version":"0.3.2","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.3.2","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"8a98a6b590d2abab04892739da8f8577da964961","tarball":"https://registry.npmjs.org/commander/-/commander-0.3.2.tgz","integrity":"sha512-wCUu0gLg2JakdzAOPenfK1TIOot7sMjfnCe8A6St7F0RTaMytPrP1ZDn6dfVu0xZIsshGwNZj8RJlsRvMPMAmQ==","signatures":[{"sig":"MEQCIBlt1i92agTzdv6pqmIsqW2zYMWICVm1pAlxK5e4FbfTAiBpd1TA/NwzV/7XPiBQ5BNUsNDDRy0JuENllH+nnfrjWw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.4.x < 0.7.0"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"git://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.0.102","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.4.12","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true},"0.3.3":{"name":"commander","version":"0.3.3","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.3.3","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"388a4097f857e9299c26415352b54d0706b06a2c","tarball":"https://registry.npmjs.org/commander/-/commander-0.3.3.tgz","integrity":"sha512-xDvGtjXnFJnbD74oS0G4bb/Skbuf1SVt33qKXhxXX0eubIsbk/iNzF484OyAIXM74lg1VcnE8eqcHu6mo3MIJQ==","signatures":[{"sig":"MEYCIQCa2YH0kWKnwuDMc1iDmVKefmNUU0aV5r8xsHQOEVbtKAIhANzT1asskhJ3Gl5kG4xO0UV2wYj8ZB2pzJlC2gkG54Hq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.4.x < 0.7.0"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"git://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.0.104","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.4.12","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true},"0.4.0":{"name":"commander","version":"0.4.0","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.4.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"85f193a56264f4959401bdbbce0bb09e5a8764cf","tarball":"https://registry.npmjs.org/commander/-/commander-0.4.0.tgz","integrity":"sha512-M3OgolicFDe3+ttllzBqekTBHNJeuljdx4aH5AczHCZYFaCA/zyO4TyHYC/9yjuBNM67MFtrEGKl1oyJPLrvrg==","signatures":[{"sig":"MEYCIQDw4QT48TQtQd+qmVtgqbLKuQgUvuXGFDXGARBQ42vEPwIhAIgJtnry1zo9JU3ZJAYhgbW129UD8sWapvA9Yig8gaFD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.4.x < 0.7.0"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"git://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.0.104","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.4.12","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true},"0.4.1":{"name":"commander","version":"0.4.1","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.4.1","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"85c30d8e80fb57de9a95ae9bd5084021abc1dfdf","tarball":"https://registry.npmjs.org/commander/-/commander-0.4.1.tgz","integrity":"sha512-aNQ4eVztznBD1VizefwNwII4wCft/LbvLSXeAi8uvz12lHDA7J2ZCytxPmmE0hgqXxuv/SbdDWO9SrrKuu23Jw==","signatures":[{"sig":"MEUCIAi3yV/utZHTNWn5WIVsd6wdCm2BcP41dB/0JeTWblP5AiEAt9yxniB+Bdkn+SNspQ/Q+ndWhYvPYuMurUbb8qd6trk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.4.x < 0.7.0"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"git://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.0.104","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.6.1","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true},"0.4.2":{"name":"commander","version":"0.4.2","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.4.2","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"f1872070e42d271a2a1c419981628628716ce01c","tarball":"https://registry.npmjs.org/commander/-/commander-0.4.2.tgz","integrity":"sha512-tJhzOn6s7lwgMtAYWifuRPwSsINVvtm+4dN4xEMbHpIeTXjeL4pKefUGpYXfHx1Z5jq3HS2wbnJpttmkwVAW2A==","signatures":[{"sig":"MEUCIHy+YPwOCPWT/VzDHmTs+TjAITYuko25Rnmf9SCYuGooAiEA1Ak3udBVwb0lrEgBq51hbMWUXd/3yOF/i91pbw514Yc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.4.x < 0.7.0"},"scripts":{"test":"make test"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"git://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.0.104","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.6.2","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true},"0.4.3":{"name":"commander","version":"0.4.3","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.4.3","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"1f9c45f5c2d314c4bc9f9a3dd5b883261fbac8fc","tarball":"https://registry.npmjs.org/commander/-/commander-0.4.3.tgz","integrity":"sha512-qakepITbqSBLqFR7G8cTiN3c+cUuZCtuGYiPddr+K1SZh4y2i+UII8uRaX39WjuRUAP5sP8oO4RokJ1WHjfrGw==","signatures":[{"sig":"MEUCIQCEYE7UFWVjX0KYigcMmpKYGtFT+9F4pst+u8LER3xp1AIgHZCsL7vThs6HGPuaqOgM9kI9pK2zIoD/a+dibUjNBCg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.4.x < 0.7.0"},"scripts":{"test":"make test"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"git://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.0.105","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.6.4","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true},"0.5.0":{"name":"commander","version":"0.5.0","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.5.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"8fe03c71e444891dbda97c7dfbb108a33a05eaf3","tarball":"https://registry.npmjs.org/commander/-/commander-0.5.0.tgz","integrity":"sha512-+3agkFmJqFgJWwcPJtADylbCFa8x8RkJ5OQly1Fg6bTZoLQcpL9GcLUhJ77pvqENav5C04b5eQ+kMHBv//y9Vw==","signatures":[{"sig":"MEUCIQCx46w6+2p36L7EmkE0K3JPz43SFqetUgnk3o7WhPsu7QIgdCbqlvSLa/6/wrHku37hAlhDi5OwA0GJn08+sj51Zy4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.4.x < 0.7.0"},"scripts":{"test":"make test"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"git://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.0.105","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.4.12","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true},"0.5.1":{"name":"commander","version":"0.5.1","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.5.1","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"08477afb326d1adf9d4ee73af7170c70caa14f95","tarball":"https://registry.npmjs.org/commander/-/commander-0.5.1.tgz","integrity":"sha512-oRF4uekGyV5otUrGRrvUUTNSZQ7R8own3s8pwAMHt6au/DF6o7CDVDoI7jl+tPzHdJS2tiAbLKqZwOj5YA5+wg==","signatures":[{"sig":"MEYCIQCBPztQg4bgtBT7RWSphuJNgHsZ1MuBqBk5M/5fkHm9kAIhAOwzTDwoQBvCq/N2Q3rLVn8vkriPKzwTVrrYQ0qh5PvI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.4.x < 0.7.0"},"scripts":{"test":"make test"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"git://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.0.106","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.4.12","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true},"0.6.0":{"name":"commander","version":"0.6.0","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.6.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"778f617d8a485268b0e06c02576d5a349aa25a9d","tarball":"https://registry.npmjs.org/commander/-/commander-0.6.0.tgz","integrity":"sha512-Dk8oKrZqmQsosZ0OmnO3cOpHY4t22WfNnUA+wbLhkk+TQtbgbLx4D0ImkhwVXZikGJsmOzb5ZymtszUMU1+hNg==","signatures":[{"sig":"MEUCIQC15uOW+Z//ySvEc9lTyUpjjqwk4EKH4UFd+PXwzWdpfgIgAaC1DK8wlDX0rUHrMiWlH0MZGiuA4nhaCK2xyLIOdYE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.4.x < 0.7.0"},"scripts":{"test":"make test"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"git://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.1.16","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.6.12","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true,"optionalDependencies":{}},"0.6.1":{"name":"commander","version":"0.6.1","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.6.1","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06","tarball":"https://registry.npmjs.org/commander/-/commander-0.6.1.tgz","integrity":"sha512-0fLycpl1UMTGX257hRsu/arL/cUbcvQM4zMKwvLvzXtfdezIV4yotPS2dYtknF+NmEfWSoCEF6+hj9XLm/6hEw==","signatures":[{"sig":"MEYCIQDMySj/ZB9OsSCc1J+g8qMePktWD6Xt1SvvgXNGCZ2Y3wIhANHeUxwjwc0r6hUK0s/TSla+He+z+Y2vjSulFOQ1XIa2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.4.x"},"scripts":{"test":"make test"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"git://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.1.0-3","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"v0.6.12","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":">= 0.0.1"},"_engineSupported":true,"optionalDependencies":{}},"0.5.2":{"name":"commander","version":"0.5.2","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@0.5.2","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"f270326709a115a126cfed5623852439b8e4a3b5","tarball":"https://registry.npmjs.org/commander/-/commander-0.5.2.tgz","integrity":"sha512-/IKo89++b1UhClEhWvKk00gKgw6iwvwD8TOPTqqN9AyvjgPCnf9OrjnDNY3dPDOj+K+OhN9SRjYQH0AfX0bROw==","signatures":[{"sig":"MEUCIQC/SXfP61fjPzpKIMOQVDj2X1lolGDBYG+P4To4eeAkRwIgR5wgONaSyb71s085st8/qCadUvthi9dmgPCmhqyAGTM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.4.x"},"scripts":{"test":"make test"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"description":"the complete solution for node.js command-line programs","directories":{},"dependencies":{},"devDependencies":{"should":">= 0.0.1"}},"1.0.0":{"name":"commander","version":"1.0.0","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@1.0.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"5e6a88e7070ff5908836ead19169548c30f90bcd","tarball":"https://registry.npmjs.org/commander/-/commander-1.0.0.tgz","integrity":"sha512-ypAKENwAvjA+utibuxSPeduXV/tIX73+9IyWMkFNnbxiJTeY2xdcM8C2KZo3KEGlDnO5tSm2BVZ65QfuRcR8DQ==","signatures":[{"sig":"MEUCIQCHaF49gjzKU1z+PJFCNqRUnzfMFVFu0/Rr3/wqz+ZEQAIgWopGzE4jaxZ0HxlV25Nh4Woe2emd2APMQUz18aN6OI4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.4.x"},"scripts":{"test":"make test"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"description":"the complete solution for node.js command-line programs","directories":{},"dependencies":{},"devDependencies":{"should":">= 0.0.1"}},"1.0.1":{"name":"commander","version":"1.0.1","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@1.0.1","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"e2c18dc9b8f7ce51185b248271890b1af62cceaf","tarball":"https://registry.npmjs.org/commander/-/commander-1.0.1.tgz","integrity":"sha512-3ObOU/JSXO2XoVNLoBkeh0mMB9UHFCnZLfR5by6rrPbY5mewLT2+QCZG7ZMJyXgBmhuvevgIzu4j6CbSe0F02A==","signatures":[{"sig":"MEUCIHMlqR1xbFaKa4fJiPMXP9mHD0SIsEHoRcRxbz+8eq9gAiEAjJ32wIgJwbkOK3QCrR9jy9PhhNrVAxe721JDDZRpkm8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.4.x"},"scripts":{"test":"make test"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"description":"the complete solution for node.js command-line programs","directories":{},"dependencies":{},"devDependencies":{"should":">= 0.0.1"}},"1.0.2":{"name":"commander","version":"1.0.2","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@1.0.2","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"b9443ef3a966fb3a77d62f2d92dc5a06f1516116","tarball":"https://registry.npmjs.org/commander/-/commander-1.0.2.tgz","integrity":"sha512-QWuZAG0YliuK5KKerIxHFeMd0Oc5uxQ5fOME1QPkBbZgm+io5uKe0WvP31xAWQm+Fse9Jpo6PzpTvAv7fGBinA==","signatures":[{"sig":"MEYCIQD4qCyHi6Lya8kU20d2PLfEMMusY0zB6ANcHbgoLQaLIAIhAJi6ohcfdDX+xCutA/Tio9wbveP18CbXuLrQ5F4APUqh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.6.x"},"scripts":{"test":"make test"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"description":"the complete solution for node.js command-line programs","directories":{},"dependencies":{"keypress":"0.1.x"},"devDependencies":{"should":">= 0.0.1"}},"1.0.3":{"name":"commander","version":"1.0.3","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@1.0.3","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"037451a770f85c2fbb760e2911757fd79a366e2a","tarball":"https://registry.npmjs.org/commander/-/commander-1.0.3.tgz","integrity":"sha512-nRE7Lp7Y7rBdpvV/XsrltPpKUqjgLh+2ZYpUkzh0kkZm1UZnBlNC5gAZMEY87PMeJ/aLaAnEzYTT/YF8XHaaGQ==","signatures":[{"sig":"MEUCIH+PVNyPsS+EwIYEVLzO3E+f9hEO4Ipkqyp7pRmjZC1ZAiEAiXaZvEi4bCvOMhv401mOmBP7CGZWeJGrts1esItZyBM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.6.x"},"scripts":{"test":"make test"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"description":"the complete solution for node.js command-line programs","directories":{},"dependencies":{"keypress":"0.1.x"},"devDependencies":{"should":">= 0.0.1"}},"1.0.4":{"name":"commander","version":"1.0.4","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@1.0.4","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"5edeb1aee23c4fb541a6b70d692abef19669a2d3","tarball":"https://registry.npmjs.org/commander/-/commander-1.0.4.tgz","integrity":"sha512-Xz0JOF7NqSubDnWmw7qvX1FuIpCsV62ci/gkpa2NFlm+roeMniBtbxK8QePjs762ZGsuhKaGgcb83eaBiSJ16A==","signatures":[{"sig":"MEYCIQD6FouWG4kemFayjI+TOgAat3QpbrUywN2UANvbB3au7gIhANbtGBWlam3E2+PIorkMJwCsZCuh+xvTIkjrCBN6rZa8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.6.x"},"scripts":{"test":"make test"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"description":"the complete solution for node.js command-line programs","directories":{},"dependencies":{"keypress":"0.1.x"},"devDependencies":{"should":">= 0.0.1"}},"1.0.5":{"name":"commander","version":"1.0.5","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@1.0.5","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"457295bb976e388e9dd0db52de4333e249f3d88c","tarball":"https://registry.npmjs.org/commander/-/commander-1.0.5.tgz","integrity":"sha512-Iil6cZ1vitahfQSTrGO3L4v3dtvnfyGpKkXN+aJV9uR24JYxhM9bUfBLat65nU7cIXzOcnkjGtfdCuqaO1caIQ==","signatures":[{"sig":"MEUCIBdSiTvLb6sQpvUSek12wLgAtkHlrGe8+LfqBN1M+L9bAiEAr4stJ51UykZlnvpgsldu2sDeRiVVn9ynnxm280OUIG0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.6.x"},"scripts":{"test":"make test"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.1.61","description":"the complete solution for node.js command-line programs","directories":{},"dependencies":{"keypress":"0.1.x"},"devDependencies":{"should":">= 0.0.1"}},"1.1.0":{"name":"commander","version":"1.1.0","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@1.1.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"88ab74780346d69a112d2efd30f2f4132624af67","tarball":"https://registry.npmjs.org/commander/-/commander-1.1.0.tgz","integrity":"sha512-R2HfyKOSPaYYmVcSSALM306VgeflxlmunyCibHIEPif4WGVA74+GRLygh7fadAPyGqR1aNz0ECDJthxu6TFTeg==","signatures":[{"sig":"MEYCIQDGGyOhTseyIY5U2EiUMIMOM82WLHIvmCVktRhxU7YeugIhAMS4gk9wdAKchZShCQ/9rpIndI93jJeqCC1aFPLA7Exb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.6.x"},"scripts":{"test":"make test"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.1.65","description":"the complete solution for node.js command-line programs","directories":{},"dependencies":{"keypress":"0.1.x"},"devDependencies":{"should":">= 0.0.1"}},"1.1.1":{"name":"commander","version":"1.1.1","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@1.1.1","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"50d1651868ae60eccff0a2d9f34595376bc6b041","tarball":"https://registry.npmjs.org/commander/-/commander-1.1.1.tgz","integrity":"sha512-71Rod2AhcH3JhkBikVpNd0pA+fWsmAaVoti6OR38T76chA7vE3pSerS0Jor4wDw+tOueD2zLVvFOw5H0Rcj7rA==","signatures":[{"sig":"MEQCICVLzbdrkLYBmbOvLighz535ECbp65ULO9cDSYj5LE1yAiBfINdCoSNSzcHH9yTzhpPCkWLVDzSaiVcel4QWpe2QkQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":{"node":">= 0.6.x"},"scripts":{"test":"make test"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.1.65","description":"the complete solution for node.js command-line programs","directories":{},"dependencies":{"keypress":"0.1.x"},"devDependencies":{"should":">= 0.0.1"}},"1.2.0":{"name":"commander","version":"1.2.0","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@1.2.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"fd5713bfa153c7d6cc599378a5ab4c45c535029e","tarball":"https://registry.npmjs.org/commander/-/commander-1.2.0.tgz","integrity":"sha512-4AzfHvT/zLkvp+LVOHxZ02sHTuNrtoTnu8qEoJbpcL3nTnFhoNmAml1UV+96k9y5Tgz7jIjsom546WIi2iif0g==","signatures":[{"sig":"MEUCIFE2Z8Ht81n0/PAd02vfF/f9wNLd4aZvAdkyJDPUm361AiEAiP02We2PpXuoqJDxneLWn8gbteiXPDsvrEE7AmM+/oc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":".","engines":{"node":">= 0.6.x"},"scripts":{"test":"make test"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.2.14","description":"the complete solution for node.js command-line programs","directories":{},"dependencies":{"keypress":"0.1.x"},"devDependencies":{"should":">= 0.0.1"}},"1.3.0":{"name":"commander","version":"1.3.0","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@1.3.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"bugs":{"url":"https://github.com/visionmedia/commander.js/issues"},"dist":{"shasum":"01e9f594426491a8baa85ebece3366685e0a031e","tarball":"https://registry.npmjs.org/commander/-/commander-1.3.0.tgz","integrity":"sha512-ndfuM4otja+nsHzAv8uZ7a/qD5tdV7prBCc0M8ipK7fYNO7GOOd3IkBHTHJWOP61aQ/79PCqfgm9wagqI4RBFA==","signatures":[{"sig":"MEUCIDnrlL/vFCR/qS/acvjBSwYcdpULM8vKvJ1OfzfK2f75AiEA2IBccO5vBNd0SZBI5ITD5U+qOiOfasyiul/KM8XN9DU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":".","engines":{"node":">= 0.6.x"},"scripts":{"test":"make test"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.2.30","description":"the complete solution for node.js command-line programs","directories":{},"dependencies":{"keypress":"0.1.x"},"devDependencies":{"should":">= 0.0.1"}},"1.3.1":{"name":"commander","version":"1.3.1","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@1.3.1","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"bugs":{"url":"https://github.com/visionmedia/commander.js/issues"},"dist":{"shasum":"02443e02db96f4b32b674225451abb6e9510000e","tarball":"https://registry.npmjs.org/commander/-/commander-1.3.1.tgz","integrity":"sha512-tpQAw1M5L/v+kutCmx0ceB6WOLeJR+KZyj+g1tLvJUsA5ilaMqqM+90oIndVIGQnpB/IwcMmc1ov22KL08Cqhw==","signatures":[{"sig":"MEUCICjR8zWasLb68sbJbJAkw0F5QkStBXFMrpjl1yZYTLVtAiEAsUNjRmC+ya3pB9+oZrAYBL9/weqzSAXHefTxu1aAV4c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":".","engines":{"node":">= 0.6.x"},"scripts":{"test":"make test"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.2.30","description":"the complete solution for node.js command-line programs","directories":{},"dependencies":{"keypress":"0.1.x"},"devDependencies":{"should":">= 0.0.1"}},"1.3.2":{"name":"commander","version":"1.3.2","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@1.3.2","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"bugs":{"url":"https://github.com/visionmedia/commander.js/issues"},"dist":{"shasum":"8a8f30ec670a6fdd64af52f1914b907d79ead5b5","tarball":"https://registry.npmjs.org/commander/-/commander-1.3.2.tgz","integrity":"sha512-uoVVA5dchmxZeTMv2Qsd0vhn/RebJYsWo4all1qtrUL3BBhQFn4AQDF4PL+ZvOeK7gczXKEZaSCyMDMwFBlpBg==","signatures":[{"sig":"MEYCIQD7dBM2NL5oir2YzuXlqAa6L7Wvs/rUVraJIxI7BPuAnAIhAIq+WRJSEx/rxzLyti/xYyQk1HOKIRKJ6jR/FbYTc4tY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":".","engines":{"node":">= 0.6.x"},"scripts":{"test":"make test"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.2.30","description":"the complete solution for node.js command-line programs","directories":{},"dependencies":{"keypress":"0.1.x"},"devDependencies":{"should":">= 0.0.1"}},"2.0.0":{"name":"commander","version":"2.0.0","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@2.0.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"bugs":{"url":"https://github.com/visionmedia/commander.js/issues"},"dist":{"shasum":"d1b86f901f8b64bd941bdeadaf924530393be928","tarball":"https://registry.npmjs.org/commander/-/commander-2.0.0.tgz","integrity":"sha512-qebjpyeaA/nJ4w3EO2cV2++/zEkccPnjWogzA2rff+Lk8ILI75vULeTmyd4wPxWdKwtP3J+G39IXVZadh0UHyw==","signatures":[{"sig":"MEUCIGaGEY7sLxxXtBt2YKSZ8HUrM54h2Btkv9rKOd2SByWwAiEAsSzmCZAcLvCPFUhiZf4ag0RdspfUlrWJ+VOL+wI8dio=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":".","engines":{"node":">= 0.6.x"},"scripts":{"test":"make test"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.2.25","description":"the complete solution for node.js command-line programs","directories":{},"devDependencies":{"should":">= 0.0.1"}},"2.1.0":{"name":"commander","version":"2.1.0","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@2.1.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"homepage":"https://github.com/visionmedia/commander.js","bugs":{"url":"https://github.com/visionmedia/commander.js/issues"},"dist":{"shasum":"d121bbae860d9992a3d517ba96f56588e47c6781","tarball":"https://registry.npmjs.org/commander/-/commander-2.1.0.tgz","integrity":"sha512-J2wnb6TKniXNOtoHS8TSrG9IOQluPrsmyAJ8oCUJOBmv+uLBCyPYAZkD2jFvw2DCzIXNnISIM01NIvr35TkBMQ==","signatures":[{"sig":"MEUCIAGXiOta6KKW+i+JT1vilv6xTV6tjb9iPLglZ32dn+EtAiEAxmk2Vj5BHO2SaCzABW2MTzTxl0/DNllWyyyWboW2x28=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":".","files":["index.js"],"engines":{"node":">= 0.6.x"},"scripts":{"test":"make test"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.3.14","description":"the complete solution for node.js command-line programs","directories":{},"devDependencies":{"should":">= 0.0.1"}},"2.2.0":{"name":"commander","version":"2.2.0","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@2.2.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"homepage":"https://github.com/visionmedia/commander.js","bugs":{"url":"https://github.com/visionmedia/commander.js/issues"},"dist":{"shasum":"175ad4b9317f3ff615f201c1e57224f55a3e91df","tarball":"https://registry.npmjs.org/commander/-/commander-2.2.0.tgz","integrity":"sha512-U6hBkeIsoeE81B+yas9uVF4YYVcVoBCwb1e314VPyvVQubFwvnTAuc1oUQ6VuMPYUS4Rf1gzr0wTVLvs4sb5Pw==","signatures":[{"sig":"MEQCIEbJjC8rZ6UE/xmPmg83eLVpHg10sZO2XGwgSqt8dp/NAiAs6UAfpT88b+bG9dh2sga6P984/jvahjSuZy6FjamLKw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":".","files":["index.js"],"engines":{"node":">= 0.6.x"},"scripts":{"test":"make test"},"_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.3.15","description":"the complete solution for node.js command-line programs","directories":{},"devDependencies":{"should":">= 0.0.1"}},"2.3.0":{"name":"commander","version":"2.3.0","keywords":["command","option","parser","prompt","stdin"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"commander@2.3.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"thethomaseffect","email":"thethomaseffect@gmail.com"}],"homepage":"https://github.com/visionmedia/commander.js","bugs":{"url":"https://github.com/visionmedia/commander.js/issues"},"dist":{"shasum":"fd430e889832ec353b9acd1de217c11cb3eef873","tarball":"https://registry.npmjs.org/commander/-/commander-2.3.0.tgz","integrity":"sha512-CD452fnk0jQyk3NfnK+KkR/hUPoHt5pVaKHogtyyv3N0U4QfAal9W0/rXLOg/vVZgQKa7jdtXypKs1YAip11uQ==","signatures":[{"sig":"MEUCIGIltvNKhTdXE5ZSPP5Ey1lYq+M66cIIuqBxvbEIfD7+AiEAl7pVdIOdU5Qa6AR0gY5YtTt2ZekaXTfpSF43kCWlT2Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":".","files":["index.js"],"_shasum":"fd430e889832ec353b9acd1de217c11cb3eef873","engines":{"node":">= 0.6.x"},"gitHead":"7e9f407ec03d4371a478c2fe417db4998ecb6169","scripts":{"test":"make test"},"_npmUser":{"name":"somekittens","email":"rkoutnik@gmail.com"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.4.21","description":"the complete solution for node.js command-line programs","directories":{},"devDependencies":{"should":">= 0.0.1"}},"2.4.0":{"name":"commander","version":"2.4.0","keywords":["command","option","parser","prompt"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.4.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"thethomaseffect","email":"thethomaseffect@gmail.com"}],"homepage":"https://github.com/visionmedia/commander.js","bugs":{"url":"https://github.com/visionmedia/commander.js/issues"},"dist":{"shasum":"fad884ce8f09509b10a5ec931332cb97786e2fd6","tarball":"https://registry.npmjs.org/commander/-/commander-2.4.0.tgz","integrity":"sha512-TK/kiMz3F635LzTAaPIKzoBmnRiKX5/0zlzc4DytFvItRvXXcjCxfw1QXa9u4S+eeb+jKCaGlKSFcV+j3cRA7g==","signatures":[{"sig":"MEYCIQC6lq8m91qW5vF2nH7m9SlE17WX5DPKWVhAE131IihX2gIhAOTqQgadZwVXN8GypaDXSpqoZD/tefCbd8E8R+gE7D0+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":".","files":["index.js"],"_shasum":"fad884ce8f09509b10a5ec931332cb97786e2fd6","engines":{"node":">= 0.6.x"},"scripts":{"test":"make test"},"_npmUser":{"name":"zhiyelee","email":"zhiyelee@gmail.com"},"repository":{"url":"https://github.com/visionmedia/commander.js.git","type":"git"},"_npmVersion":"1.4.9","description":"the complete solution for node.js command-line programs","directories":{},"devDependencies":{"should":">= 0.0.1"}},"2.5.0":{"name":"commander","version":"2.5.0","keywords":["command","option","parser","prompt"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.5.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"thethomaseffect","email":"thethomaseffect@gmail.com"}],"homepage":"https://github.com/tj/commander.js","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"d777b6a4d847d423e5d475da864294ac1ff5aa9d","tarball":"https://registry.npmjs.org/commander/-/commander-2.5.0.tgz","integrity":"sha512-OWTkyOHhPiThmSv9jA4mIx9Bf27sG8MZb/c7FR5nuOEuQzCIzIaUAIopbDODfg+CBem64FtiYj8t+G+3NGuQZw==","signatures":[{"sig":"MEYCIQCJhdDL6/IbbjGrk9Y/sfkViipZQYE8iM1R4GWbQXFaxQIhALoUobJHOr0W2+LR0bUJjuVonaShCULOR0wPMuI9UZSL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":".","files":["index.js"],"_shasum":"d777b6a4d847d423e5d475da864294ac1ff5aa9d","engines":{"node":">= 0.6.x"},"scripts":{"test":"make test"},"_npmUser":{"name":"zhiyelee","email":"zhiyelee@gmail.com"},"repository":{"url":"https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"1.4.9","description":"the complete solution for node.js command-line programs","directories":{},"devDependencies":{"should":">= 0.0.1"}},"2.5.1":{"name":"commander","version":"2.5.1","keywords":["command","option","parser","prompt"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.5.1","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"thethomaseffect","email":"thethomaseffect@gmail.com"}],"homepage":"https://github.com/tj/commander.js","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"23c61f6e47be143cc02e7ad4bb1c47f5cd5a2883","tarball":"https://registry.npmjs.org/commander/-/commander-2.5.1.tgz","integrity":"sha512-1eyhrbxuz9laj/ZA8OlTxfmBy7Xy99Fw1aubQpL2swXikVEZIaJzjwDmbGKoVOdsU2pMg9sNmoEa93mhKsdlbw==","signatures":[{"sig":"MEYCIQDyEukhFzEYgazRPd1QmRmnCoC33o0NCVIP+2wPIncjpQIhAIC8jLFMm99/G1KnJkRlMpvtmx2xn9DFrJpvWWifdW5l","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":".","files":["index.js"],"_shasum":"23c61f6e47be143cc02e7ad4bb1c47f5cd5a2883","engines":{"node":">= 0.6.x"},"scripts":{"test":"make test"},"_npmUser":{"name":"zhiyelee","email":"zhiyelee@gmail.com"},"repository":{"url":"https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"1.4.9","description":"the complete solution for node.js command-line programs","directories":{},"devDependencies":{"should":">= 0.0.1"}},"2.6.0":{"name":"commander","version":"2.6.0","keywords":["command","option","parser","prompt"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.6.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"thethomaseffect","email":"thethomaseffect@gmail.com"}],"homepage":"https://github.com/tj/commander.js","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"9df7e52fb2a0cb0fb89058ee80c3104225f37e1d","tarball":"https://registry.npmjs.org/commander/-/commander-2.6.0.tgz","integrity":"sha512-PhbTMT+ilDXZKqH8xbvuUY2ZEQNef0Q7DKxgoEKb4ccytsdvVVJmYqR0sGbi96nxU6oGrwEIQnclpK2NBZuQlg==","signatures":[{"sig":"MEQCIDCGoA2tUfZIea/I/MZBlWbPyCTiyK6c5wuZkoaMTMvJAiA+QPn2Lmb6+ReKe9Oeb5Xuej4pnXPE8dGSDDUqRZepkQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":".","files":["index.js"],"_shasum":"9df7e52fb2a0cb0fb89058ee80c3104225f37e1d","engines":{"node":">= 0.6.x"},"gitHead":"c6807fd154dd3b7ce8756f141f8d3acfcc74be60","scripts":{"test":"make test"},"_npmUser":{"name":"zhiyelee","email":"zhiyelee@gmail.com"},"repository":{"url":"https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"2.1.12","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"0.11.14","devDependencies":{"should":">= 0.0.1"}},"2.7.0":{"name":"commander","version":"2.7.0","keywords":["command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.7.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"thethomaseffect","email":"thethomaseffect@gmail.com"}],"homepage":"https://github.com/tj/commander.js","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"f3d8e36f6fcb32e663cabb70689a59ea847433b1","tarball":"https://registry.npmjs.org/commander/-/commander-2.7.0.tgz","integrity":"sha512-oiMhn3QQ6ySav1b5daL0mPYfFhqlGrlrwC9nPzwSWBiRtu4O2Ucx390mFe1H4hCxccwV7RgrYkk2pGIaXRttAA==","signatures":[{"sig":"MEUCIQCbatr+I0zc0Dn+0NPTQSdP2njO2UhAKnnN/6bpMm54vwIgGqgjw0XRP8FqSIU/IkBPbvyvmPIAyDF+SZZuYWirgFg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":".","files":["index.js"],"_shasum":"f3d8e36f6fcb32e663cabb70689a59ea847433b1","engines":{"node":">= 0.6.x"},"gitHead":"481e94381a0997260b867c066f1a8ac02b45e290","scripts":{"test":"make test"},"_npmUser":{"name":"zhiyelee","email":"zhiyelee@gmail.com"},"repository":{"url":"https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"2.1.17","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"0.11.14","dependencies":{"graceful-readlink":">= 1.0.0"},"devDependencies":{"should":">= 0.0.1"}},"2.7.1":{"name":"commander","version":"2.7.1","keywords":["command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.7.1","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"thethomaseffect","email":"thethomaseffect@gmail.com"}],"homepage":"https://github.com/tj/commander.js","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"5d419a2bbed2c32ee3e4dca9bb45ab83ecc3065a","tarball":"https://registry.npmjs.org/commander/-/commander-2.7.1.tgz","integrity":"sha512-5qK/Wsc2fnRCiizV1JlHavWrSGAXQI7AusK423F8zJLwIGq8lmtO5GmO8PVMrtDUJMwTXOFBzSN6OCRD8CEMWw==","signatures":[{"sig":"MEUCIGNVl4rt/BzpIHmUeYp6lNaV9OLCQs9eckBEjXPr+qhcAiEA4MEUWNGb9mPG75Q2XYius5H+Fuw/c0D0SLgpEYBKhuE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":".","files":["index.js"],"_shasum":"5d419a2bbed2c32ee3e4dca9bb45ab83ecc3065a","engines":{"node":">= 0.6.x"},"gitHead":"103654f8f32c010ad1e62cefc9ab92d7c8d18c8e","scripts":{"test":"make test"},"_npmUser":{"name":"zhiyelee","email":"zhiyelee@gmail.com"},"repository":{"url":"https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"2.1.17","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"0.11.14","dependencies":{"graceful-readlink":">= 1.0.0"},"devDependencies":{"should":">= 0.0.1"}},"2.8.0":{"name":"commander","version":"2.8.0","keywords":["command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.8.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"thethomaseffect","email":"thethomaseffect@gmail.com"}],"homepage":"https://github.com/tj/commander.js","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"117c42659a72338e3364877df20852344095dc11","tarball":"https://registry.npmjs.org/commander/-/commander-2.8.0.tgz","integrity":"sha512-cwCeOWJKgop/zBQ+L0iRuerHLaGtToAJ7F19k9E5d75tUwANc26J/yIwmzSftGo1oMRbRuK6h7h1SLTSU+wJ5w==","signatures":[{"sig":"MEQCIB9p2VPzTWoSTBpCecNoLpvC8fYjOfKRq7kdKBSiSK/PAiAnDfReQEB9pxRAqQJQnV5q4rmN6ipaQ+tgo6THWjQWWw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":".","files":["index.js"],"_shasum":"117c42659a72338e3364877df20852344095dc11","engines":{"node":">= 0.6.x"},"gitHead":"4dae21d9336eb225ef20deadbd12347d278390d8","scripts":{"test":"make test"},"_npmUser":{"name":"zhiyelee","email":"zhiyelee@gmail.com"},"repository":{"url":"https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"2.5.1","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"0.12.0","dependencies":{"graceful-readlink":">= 1.0.0"},"devDependencies":{"sinon":">= 1.13.0","should":">= 0.0.1"}},"2.8.1":{"name":"commander","version":"2.8.1","keywords":["command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.8.1","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"thethomaseffect","email":"thethomaseffect@gmail.com"}],"homepage":"https://github.com/tj/commander.js","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"06be367febfda0c330aa1e2a072d3dc9762425d4","tarball":"https://registry.npmjs.org/commander/-/commander-2.8.1.tgz","integrity":"sha512-+pJLBFVk+9ZZdlAOB5WuIElVPPth47hILFkmGym57aq8kwxsowvByvB0DHs1vQAhyMZzdcpTtF0VDKGkSDR4ZQ==","signatures":[{"sig":"MEYCIQCJXrJSl227y8cgT2Ozzq4PTCu08kuQPvJzV9KnBsJ39AIhALr2Ubz1gXUz5dI+Ab4jdSx2S20G8X6FsJo2kn8S8UeO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":".","files":["index.js"],"_shasum":"06be367febfda0c330aa1e2a072d3dc9762425d4","engines":{"node":">= 0.6.x"},"gitHead":"c6c84726050b19c0373de27cd359f3baddff579f","scripts":{"test":"make test"},"_npmUser":{"name":"zhiyelee","email":"zhiyelee@gmail.com"},"repository":{"url":"https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"2.5.1","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"0.12.0","dependencies":{"graceful-readlink":">= 1.0.0"},"devDependencies":{"sinon":">= 1.14.1","should":">= 0.0.1"}},"2.9.0":{"name":"commander","version":"2.9.0","keywords":["command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.9.0","maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"9c99094176e12240cb22d6c5146098400fe0f7d4","tarball":"https://registry.npmjs.org/commander/-/commander-2.9.0.tgz","integrity":"sha512-bmkUukX8wAOjHdN26xj5c4ctEV22TQ7dQYhSmuckKhToXrkUn0iIaolHdIxYYqD55nhpSPA9zPQ1yP57GdXP2A==","signatures":[{"sig":"MEYCIQDYupOTtVbmZEwIy3Wac7LgNqK5nnVlLyw6Ks/QxHK4KwIhAMcbIu0L9YM+ipy0oufE50poN4Or11qW+bWHNgLRQKKC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":".","files":["index.js"],"_shasum":"9c99094176e12240cb22d6c5146098400fe0f7d4","engines":{"node":">= 0.6.x"},"gitHead":"b2aad7a8471d434593a85306aa73777a526e9f75","scripts":{"test":"make test"},"_npmUser":{"name":"zhiyelee","email":"zhiyelee@gmail.com"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"2.11.3","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"0.12.7","dependencies":{"graceful-readlink":">= 1.0.0"},"devDependencies":{"sinon":">=1.17.1","should":">= 0.0.1"}},"2.10.0":{"name":"commander","version":"2.10.0","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.10.0","maintainers":[{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"e1f5d3245de246d1a5ca04702fa1ad1bd7e405fe","tarball":"https://registry.npmjs.org/commander/-/commander-2.10.0.tgz","integrity":"sha512-q/r9trjmuikWDRJNTBHAVnWhuU6w+z80KgBq7j9YDclik5E7X4xi0KnlZBNFA1zOQ+SH/vHMWd2mC9QTOz7GpA==","signatures":[{"sig":"MEQCIFSW3bgO12KwSYywh+z2c4J8hbaroheeI3GuO7PduGmKAiB7MX7ovG4D5pDXxAezlJL2fdIj6DASzNalwLGbyq84ow==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","files":["index.js"],"engines":{"node":">= 0.6.x"},"gitHead":"8870675aa189d84014779b53760544a0e614cb40","scripts":{"test":"make test"},"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"5.0.3","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"6.10.1","dependencies":{"graceful-readlink":">= 1.0.0"},"devDependencies":{"sinon":">=1.17.1","should":">= 0.0.1 <9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/commander-2.10.0.tgz_1498210375405_0.9538901860360056","host":"s3://npm-registry-packages"}},"2.11.0":{"name":"commander","version":"2.11.0","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.11.0","maintainers":[{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"157152fd1e7a6c8d98a5b715cf376df928004563","tarball":"https://registry.npmjs.org/commander/-/commander-2.11.0.tgz","integrity":"sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==","signatures":[{"sig":"MEYCIQCxqdSlCyLiYmSJxsu6oGK3QLXfRzOvJK12IA2mpc+UQQIhAO+JHieh4ntdnqCq+pTSJ7kdCSg2OtZ1VZIBYtC3i5CI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","files":["index.js"],"gitHead":"30535a67a7d1f3809231603bc4dc0ba873ae85ef","scripts":{"test":"make test"},"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"5.0.4","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"6.10.1","dependencies":{},"devDependencies":{"sinon":"^2.3.5","should":"^11.2.1"},"_npmOperationalInternal":{"tmp":"tmp/commander-2.11.0.tgz_1499076445115_0.39661598461680114","host":"s3://npm-registry-packages"}},"2.12.0":{"name":"commander","version":"2.12.0","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.12.0","maintainers":[{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"2f13615c39c687a77926aa68ef25c099db1e72fb","tarball":"https://registry.npmjs.org/commander/-/commander-2.12.0.tgz","integrity":"sha512-0FAmW4svUhnHJzjJHrg0vHi8+3Wp5mqvZTOui03Tc0515CToaw1BD7WC8ROcY08UnTJJOr4essVYvXBSPYeV2w==","signatures":[{"sig":"MEUCIAGaJCZfc87GzQwB7O3BzfN2yBCS6KFll4stUTUPG2hNAiEA1HzSbjGkcXO6moVpwBrmW6ofNfg+6jb+Kew8vNi+nQ8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","files":["index.js"],"gitHead":"7e22f38a09a0975ec2da2e0eda13cb7fdac370f0","scripts":{"test":"make test && npm run test-typings","test-typings":"node_modules/typescript/bin/tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"5.4.2","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"8.7.0","dependencies":{"@types/node":"^7.0.48"},"devDependencies":{"sinon":"^2.3.5","should":"^11.2.1","typescript":"^2.6.1"},"_npmOperationalInternal":{"tmp":"tmp/commander-2.12.0.tgz_1511391893498_0.24965589377097785","host":"s3://npm-registry-packages"}},"2.12.1":{"name":"commander","version":"2.12.1","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.12.1","maintainers":[{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"468635c4168d06145b9323356d1da84d14ac4a7a","tarball":"https://registry.npmjs.org/commander/-/commander-2.12.1.tgz","integrity":"sha512-PCNLExLlI5HiPdaJs4pMXwOTHkSCpNQ1QJH9ykZLKtKEyKu3p9HgmH5l97vM8c0IUz6d54l+xEu2GG9yuYrFzA==","signatures":[{"sig":"MEQCIBk9cjIYR7V3KUzEOq8UYbYiFhLwd39Nh/v4oRnbWYiEAiBr9UgcL82AZeG7VczEbtcDIOhGFor6c1fKOeUHK8rXsw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","files":["index.js"],"gitHead":"91c2514f849722eac57c38c2c63f0c0dac9b59c8","scripts":{"test":"make test && npm run test-typings","test-typings":"node_modules/typescript/bin/tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"5.4.2","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"8.7.0","dependencies":{},"devDependencies":{"sinon":"^2.4.1","should":"^11.2.1","typescript":"^2.6.1","@types/node":"^7.0.48"},"_npmOperationalInternal":{"tmp":"tmp/commander-2.12.1.tgz_1511432330735_0.8460609647445381","host":"s3://npm-registry-packages"}},"2.12.2":{"name":"commander","version":"2.12.2","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.12.2","maintainers":[{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"0f5946c427ed9ec0d91a46bb9def53e54650e555","tarball":"https://registry.npmjs.org/commander/-/commander-2.12.2.tgz","integrity":"sha512-BFnaq5ZOGcDN7FlrtBT4xxkgIToalIIxwjxLWVJ8bGTpe1LroqMiqQXdA7ygc7CRvaYS+9zfPGFnJqFSayx+AA==","signatures":[{"sig":"MEYCIQCZIhfd7Xjw4kYrFRAvABDydO6oARwHdrntQItUvH4tiQIhAKTX4s0WbTP8pXdwKFk62oq/Y36o7QCH3Ops8iMQX2aV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","files":["index.js","typings/index.d.ts"],"gitHead":"6864c953d781d4f665afecbdace84d9d80e45060","scripts":{"test":"make test && npm run test-typings","test-typings":"node_modules/typescript/bin/tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"5.5.1","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"9.2.0","dependencies":{},"devDependencies":{"sinon":"^2.4.1","should":"^11.2.1","typescript":"^2.6.2","@types/node":"^7.0.48"},"_npmOperationalInternal":{"tmp":"tmp/commander-2.12.2.tgz_1511852934826_0.43355596787296236","host":"s3://npm-registry-packages"}},"2.13.0":{"name":"commander","version":"2.13.0","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.13.0","maintainers":[{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"6964bca67685df7c1f1430c584f07d7597885b9c","tarball":"https://registry.npmjs.org/commander/-/commander-2.13.0.tgz","integrity":"sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==","signatures":[{"sig":"MEUCICJ11+5N4BEtFBphGC8BftaF2IEYHLz0D8FkTO2Xm/GOAiEA1RR/WIpdcq4FeorFTuby36+DsOGsjXUsGnWGdfFAz+Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","files":["index.js","typings/index.d.ts"],"gitHead":"291fbaa61e3704ec30617812ab6646c8443a03f0","scripts":{"test":"make test && npm run test-typings","test-typings":"node_modules/typescript/bin/tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"5.6.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"9.3.0","dependencies":{},"devDependencies":{"sinon":"^2.4.1","should":"^11.2.1","typescript":"^2.6.2","@types/node":"^7.0.48"},"_npmOperationalInternal":{"tmp":"tmp/commander-2.13.0.tgz_1515654595288_0.4785951259545982","host":"s3://npm-registry-packages"}},"2.14.0":{"name":"commander","version":"2.14.0","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.14.0","maintainers":[{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"7b25325963e6aace20d3a9285b09379b0c2208b5","tarball":"https://registry.npmjs.org/commander/-/commander-2.14.0.tgz","integrity":"sha512-okPpdvdJr6mUGi2XzupC+irQxzwGLVaBzacFC14hjLv8NColXEsxsU+QaeuSSXpQUak5g2K0vQ7WjA1e8svczg==","signatures":[{"sig":"MEYCIQCNOKtsUMm+0OC26EpAOVQJV7lw+A0Mfjx+MQWIS55/OAIhALz2zGKRMCbrCeumzTAkR31J4S7jhi7IH6S0NwvlkZbq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","files":["index.js","typings/index.d.ts"],"gitHead":"de4af3abbe9baa6dd60dce614e2c94b615c603a5","scripts":{"lint":"eslint index.js","test":"make test && npm run test-typings","test-typings":"node_modules/typescript/bin/tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"5.6.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"9.4.0","dependencies":{},"devDependencies":{"sinon":"^2.4.1","eslint":"^3.19.0","should":"^11.2.1","standard":"^10.0.3","typescript":"^2.7.1","@types/node":"^7.0.52"},"_npmOperationalInternal":{"tmp":"tmp/commander-2.14.0.tgz_1517880226071_0.43818329833447933","host":"s3://npm-registry-packages"}},"2.14.1":{"name":"commander","version":"2.14.1","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.14.1","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"2235123e37af8ca3c65df45b026dbd357b01b9aa","tarball":"https://registry.npmjs.org/commander/-/commander-2.14.1.tgz","fileCount":6,"integrity":"sha512-+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw==","signatures":[{"sig":"MEUCIGv0LqMLRutJqlMQSqy2Z8tCnLh3JWR+k0FYqXt2b/RWAiEA7OLkq2XI8Qit/97G/Bhu5EtXfMJmNU+WTwm4AwKwzm8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58015},"main":"index","files":["index.js","typings/index.d.ts"],"gitHead":"6b026a5c88a2c7f67db70831c015e9d11c7babca","scripts":{"lint":"eslint index.js","test":"make test && npm run test-typings","test-typings":"node_modules/typescript/bin/tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"5.6.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"9.4.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^2.4.1","eslint":"^3.19.0","should":"^11.2.1","standard":"^10.0.3","typescript":"^2.7.1","@types/node":"^7.0.52"},"_npmOperationalInternal":{"tmp":"tmp/commander_2.14.1_1517989378540_0.7122613806538618","host":"s3://npm-registry-packages"}},"2.15.0":{"name":"commander","version":"2.15.0","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.15.0","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"ad2a23a1c3b036e392469b8012cec6b33b4c1322","tarball":"https://registry.npmjs.org/commander/-/commander-2.15.0.tgz","fileCount":6,"integrity":"sha512-7B1ilBwtYSbetCgTY1NJFg+gVpestg0fdA1MhC1Vs4ssyfSXnCAjFr+QcQM9/RedXC0EaUx1sG8Smgw2VfgKEg==","signatures":[{"sig":"MEUCIQDTg/dq1YxxVio2+IsYyUqnmnryX5fN9RQWP+Ca9DsduwIgBVWjgpuwZQGjzEhCFpQc1rAUjCxWpq/ItEqSEgiQuBo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59781},"main":"index","files":["index.js","typings/index.d.ts"],"gitHead":"d8404f8de45c9ba780606878f4d35d0a45743d32","scripts":{"lint":"eslint index.js","test":"make test && npm run test-typings","test-typings":"node_modules/typescript/bin/tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"5.7.1","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"9.7.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^2.4.1","eslint":"^3.19.0","should":"^11.2.1","standard":"^10.0.3","typescript":"^2.7.2","@types/node":"^7.0.55"},"_npmOperationalInternal":{"tmp":"tmp/commander_2.15.0_1520471512609_0.20298682127168233","host":"s3://npm-registry-packages"}},"2.15.1":{"name":"commander","version":"2.15.1","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.15.1","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"df46e867d0fc2aec66a34662b406a9ccafff5b0f","tarball":"https://registry.npmjs.org/commander/-/commander-2.15.1.tgz","fileCount":6,"integrity":"sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==","signatures":[{"sig":"MEYCIQCVzQTQOJSWLqfWMwy/+3ADNmkVcpY30cBG0lxHeX+cDwIhAMwurGXChhtOtwsmb5mA7mQABW/x+daGiFwiUPRBKisA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59781},"main":"index","files":["index.js","typings/index.d.ts"],"gitHead":"649eaef336ddc7224eb5c73e4a958685e24de25e","scripts":{"lint":"eslint index.js","test":"make test && npm run test-typings","test-typings":"node_modules/typescript/bin/tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"5.6.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"9.8.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^2.4.1","eslint":"^3.19.0","should":"^11.2.1","standard":"^10.0.3","typescript":"^2.7.2","@types/node":"^7.0.55"},"_npmOperationalInternal":{"tmp":"tmp/commander_2.15.1_1521510442790_0.20361588610282877","host":"s3://npm-registry-packages"}},"2.16.0":{"name":"commander","version":"2.16.0","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.16.0","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"f16390593996ceb4f3eeb020b31d78528f7f8a50","tarball":"https://registry.npmjs.org/commander/-/commander-2.16.0.tgz","fileCount":6,"integrity":"sha512-sVXqklSaotK9at437sFlFpyOcJonxe0yST/AG9DkQKUdIE6IqGIMv4SfAQSKaJbSdVEJYItASCrBiVQHq1HQew==","signatures":[{"sig":"MEUCIQDq2mixK5WslstzP3Nb+QjIbd5DURJV8Msvwd3jVUQ60QIgGWJkqHrw7Ez/6S32VXJP96FN9YV6LbfN76MAQ+Zczfc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60770,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbNf6TCRA9TVsSAnZWagAAeOcP/1GvW++kyIoNTLX/kcWn\n12krx6uUADcgK+gqzipj8GNP2xWVfXO95CiKB99d9bufa/okMMuDVYnUMCjN\ne0Z1ytDg6ZEAG2aQd5eTxUMLGBAkvQXTq3iRmuFwS4syW1RpFir2wXJST+dp\nMukBMYzaMM9Jl+DcLZ2TJqgkmI0nqW1Da/ItMB4wVmSJ21FShHQuCQg2VW1h\nR7d1dDXCUt5uwkmIPxqE7v/o4iGWNlLludzbdqKZs/uddTITq983ASwhxGXG\nFjvAPR5jDwOpalIGgy28blTyV+mHM4XK1QekMxW1eAJuUkD6YSXAIets/v3t\nWlY4Lj3Jq3Q9jWp08iwLiSJjv7MtfMlMZH84zJrqTo5XxVvbl2z0u2DM+Wq+\n93mkWoVVLJpC5m5n7GoCG2rTFrxak7hkOcqA4yAB8IEPbDqRmncYrWwrgTcm\ndWwVUlXe0Ij/ZYOxjZETZls2Ed78MNh0rLgZGo4m87z7wGV2lmDDfdsvwReQ\nw8MR4b0jglgfPQ/bFgo0qXCWOLrfCu4ATPS8DWF7ioAus8H5gNhyrji4ALyJ\ndePUf/IJ7hHj6B9AKQ86RIM8pU4ma2fsSG8EkHZ/7GZtcdivNqAsXY44JPX4\np5Ux6AaC88RqeCcIG+aK7LGR0F1E4phVcyKDhtYXryW3oz+XE+D7lT6GNrw3\nxApX\r\n=gqzQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","files":["index.js","typings/index.d.ts"],"gitHead":"4cc348bd9808f799ca0600a39136b1fa25820f3b","scripts":{"lint":"eslint index.js","test":"node test/run.js && npm run test-typings","test-typings":"node_modules/typescript/bin/tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.1.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"10.5.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^2.4.1","eslint":"^4.19.1","should":"^11.2.1","standard":"^10.0.3","typescript":"^2.9.2","@types/node":"^7.0.66"},"_npmOperationalInternal":{"tmp":"tmp/commander_2.16.0_1530265235564_0.5330625131044013","host":"s3://npm-registry-packages"}},"2.17.0":{"name":"commander","version":"2.17.0","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.17.0","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"9d07b25e2a6f198b76d8b756a0e8a9604a6a1a60","tarball":"https://registry.npmjs.org/commander/-/commander-2.17.0.tgz","fileCount":6,"integrity":"sha512-477o1hdVORiFlZxw8wgsXYCef3lh0zl/OV0FTftqiDxJSWw6dPQ2ipS4k20J2qBcsmsmLKSyr2iFrf9e3JGi4w==","signatures":[{"sig":"MEQCIDec3zI0RitVz7HQJjfAWIeUzxMq8A2Kgq+nGLoieNjFAiAjvzm7YyPJWmlq/r72VzIAcpFJ0kHertC4LecY8vr6WQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61027,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbZO69CRA9TVsSAnZWagAAPs4QAIHuGLlmIFZIvEdLxDd3\nh349JSxqLuDUfbGRvUD/av80KRl0woSw9gP8MypoS6MNjSrBF1de36uoa+/4\nEvmt71OEWnx5TGUPAwFv3/RxL/rQehFq9v86WpRY+PcRuOue7qLI7v2azRMa\nbJ1zc3KLaJzUnO3B/n28RQww2EK0XH2iDI1XQKM3zwEgfOGJL4pHTWP2af9Y\nHHLX1+n8xBN5/HazRAZabAxMCVxnYf8Yre6PHVuq3kWFV0nvUQS7Sfj8tnvr\nAGGFvto5M062n+Ze0a5gpw43VZ3D0GznidlehiYWUoleLe6d/0vcvotMs93U\nkRtLloc6wMtQiwuvHUuS4JaExSB1rSQRXw/GISrIlODDwbNwHgcfBRYdpfY4\naopWzIz8CWVgQBMJ83EDMHyCEZYQpIEpXgmOD/K1etvfjLWeBoLmV7UFRjZY\nQ5Js8u73VGh15Yvz3QBMLIKQE0xh+HeQzNjCR0WDocGhHp4jWjomSHac/J3B\naMCqqKkxT/qHMuZ8z8cWBZZ/bhjbrDIb1jBUDL5eenCG/fWrd7CJNeJmKnO/\nifLs8GdtAn+U34otn5548cw6w98M3Wi7t4f/lcP2tAgwoNBnKlkLp7nT/Mri\ndbta24L4uNUfVI4gQgWS0GzSi70Br/LP7U8LVIOiGFKEOP/tzNeVxlGv7iUq\nx50C\r\n=bZ8y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","files":["index.js","typings/index.d.ts"],"gitHead":"25b06ee12b6f14afa0b4b7b6f028a66a7c4faf5e","scripts":{"lint":"eslint index.js","test":"node test/run.js && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.3.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"10.6.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^6.1.4","eslint":"^5.2.0","should":"^13.2.3","standard":"^11.0.1","typescript":"^2.9.2","@types/node":"^10.5.5"},"_npmOperationalInternal":{"tmp":"tmp/commander_2.17.0_1533341373266_0.9287988805640361","host":"s3://npm-registry-packages"}},"2.17.1":{"name":"commander","version":"2.17.1","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.17.1","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"bd77ab7de6de94205ceacc72f1716d29f20a77bf","tarball":"https://registry.npmjs.org/commander/-/commander-2.17.1.tgz","fileCount":6,"integrity":"sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==","signatures":[{"sig":"MEQCIBJfoMf91v3Lk2MPJhn90TS2mBBALaNroH2FX8A/p4fiAiBkFALr9q441VMD1e7FPeqwHx/trotcDrz0+M32cSZ1KA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61159,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaYBDCRA9TVsSAnZWagAAl2QP/327vj1GeSPmzfzN1vJW\nS6v21X14g4oQ+5+r+EcZ94Q5fgcloOJcR05Ad6yD50uzlHvGjux9dqe4prBg\nkp3jIt58NHz1c6oXmZ5SuVILrIOv3J2xrxoH9OC2ZBwBSejp1iZsEGLOByhR\ns2sV/zjgfrD9FCHT0ZMyRixkp9wFBw5ncfzMnFvu6L952t41e1dgnoJutXQT\ny3F4/f2H9nUSvw5llrkVyhZ2iZZBuZxZzNEgBKxpOwdhHQsnuWpTQ5PUssAL\nnRLc2Kk6Txi5bdvEYziH1yzHq42EPYW9LHWpGiR2SXl+Elbdkcc2sFHU8qd+\nITA2k6GEMo0Evpv9Wt3CACs0OoyShnuNz8J03WYh9Pda8dvZQ2h/NHNzYaGB\nUwMmwiXUL2b8iY490eZQCn4vYvKnGBkiTHXeGVay+BwqGjpbE9NdhSou0OLJ\nJs/wPPOXDJLNELLxs+R4jlk2tn9flYsC1bvz3y9tuQE7hQtYLM5+KXKUucE7\n5u/wbfSHICgLiAbU1ko0E6EnkGxGojeleM4/EYyW8c1sO5Owx4qQRuBEUOUN\n/FREwjY/8/MLI5F5bYhoRhhRQmdgUjRVYlQolj0DG4d0QZBBobsaGcCnw9gz\nroYMYAW1WtEcYhmE807vv2n1nEiUVjePqt5Aunpuf4/heqzRC7jQHtsEDWOX\nzE5d\r\n=rq5H\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","files":["index.js","typings/index.d.ts"],"gitHead":"e5b27cc553c0c55eb2f8890dc83034d3a3eee531","scripts":{"lint":"eslint index.js","test":"node test/run.js && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.1.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"10.6.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^6.1.4","eslint":"^5.3.0","should":"^13.2.3","standard":"^11.0.1","typescript":"^2.9.2","@types/node":"^10.5.7"},"_npmOperationalInternal":{"tmp":"tmp/commander_2.17.1_1533640770608_0.9257530317415459","host":"s3://npm-registry-packages"}},"2.18.0":{"name":"commander","version":"2.18.0","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.18.0","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"2bf063ddee7c7891176981a2cc798e5754bc6970","tarball":"https://registry.npmjs.org/commander/-/commander-2.18.0.tgz","fileCount":6,"integrity":"sha512-6CYPa+JP2ftfRU2qkDK+UTVeQYosOg/2GbcjIcKPHfinyOLPVGXu/ovN86RP49Re5ndJK1N0kuiidFFuepc4ZQ==","signatures":[{"sig":"MEUCIQDGoYSS6pmqtUrRd8HaBJxXV5YW0m0skn9Pbaid+CT9KwIgHHu30AUcan7UlWNA1KR/10QGVa4dpzcm+xYQ4SkvK7M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61367,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbklKICRA9TVsSAnZWagAA3UsP/2wOSXhOIU8UZC7MzbKq\nO1eUAOk5lidElUWiWBAnMv53DD98JGThTERjePa5L9bndPOKeJ/bI3mW4inB\n3Do+gpeXgEP2bTgVUPgZy2kJQhF4Is67p6D9cg/C5zAocyhKq0+m93Q7PKbb\nfpK69lD7T9q88h5+wvwjUCyJbF+tsdDJkgVI0jQEyimXqtPbM1Ici8jrAl/h\nkZakZ/IhwsbAaksX0nKG2Da27KWzAF7VrqkNyHSmhgBHGDG2De3mfOstHo0C\nJYx/WTAlZvPLECzMpF+Q6+tDLAj+XyoXuwYMGSHMjbxg4IF1h1qZMBfxx1yM\nOdpc1aSGb0+NAWqm1ksX7tviAk8laR1VRE7y7EciUN7FTZUYTgNZDQ/r6Qut\nLDuiUEP6NYIRmBJqxH4jbrU8zsaBJw9tutPTGkNWp1LajOq79BR2OGUGgHlI\n4WYRZMbiBmntPxJ5hjKsaz1CY8s3Cxk7y9oDAYGWH57+ddBAxKRY726yG6an\n7i5NbfBqoFe1HNUQQ8qpTLp1Hf/Plt02dIMevscye0oaofH9UBTDd38AmKc3\npYLB1zgF2SQmdpYS2DZkadUSmHtQ2Wwd5uRSBlSVkKklFAZLQVbfsKpLK23c\n6XnXrgplszdTA/fIqxsZR59n9SRaasITF+QTxBNpeg5B9HS6z6nWPIC4ravz\nRXw6\r\n=q4UK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","gitHead":"54b7f142b1fa960442c6c8982da16f7a5204c0a2","scripts":{"lint":"eslint index.js","test":"node test/run.js && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.4.1","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"10.9.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^6.2.0","eslint":"^5.5.0","should":"^13.2.3","ts-node":"^7.0.1","standard":"^12.0.1","typescript":"^2.9.2","@types/node":"^10.9.4"},"_npmOperationalInternal":{"tmp":"tmp/commander_2.18.0_1536316039810_0.8329669530575801","host":"s3://npm-registry-packages"}},"2.19.0":{"name":"commander","version":"2.19.0","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.19.0","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"f6198aa84e5b83c46054b94ddedbfed5ee9ff12a","tarball":"https://registry.npmjs.org/commander/-/commander-2.19.0.tgz","fileCount":6,"integrity":"sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==","signatures":[{"sig":"MEYCIQDUq51T5Rmhp0/+4T9ufdoOu6hB4Ltc7II8jECcKCIqJgIhAPMVwdgLm91eAn7L1omeB21/AesSBN14hXFZ1DDLfD+N","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61383,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbu9FSCRA9TVsSAnZWagAAc5YQAIADsKVX+3i2QDdUwZzo\nMltfEFOMP1vIiiD0jgsOe6RWO0AwEIBds7dFc4bV4oRoOraZhE5gMAPGd1Y4\n7jekExbT/VYWZYJg+Pg2PppiD5W2PZRS+0LfGiujcyRlpFIsKKc7dUOEQ4Ty\n+htXGTetO5qeYH10dso+9Rel8dsIAKBMQycKS5cuEk4SQC7VjwalM2KJUeC/\noHRzLUtfw64zGGFoshAOWCdsuuMpKvjOiO70mZbmNF0h4Cqd2gZlzdA/XiFi\nM4//gqKcl2hAa6S2Y6cd6vb4P1azv5S2Go2tARL1OBhuI6ooofhAfmfClDl0\n7lfkGwtKkc/c5RgQLAyaBiT73WsAy7bSFW9HPDZNJvO7y4JdI4ZczSi5JeeQ\nt2/Zw5pnOWrIzygMAvhiXC2c8BC8BQ+8CuxuvCkPzonr4F56fC54JR0ANHWa\nRkwvQVWI3C5T1YX21ZzgsvaXaY460sXEksT89stxLfzN0FfFxHnwjRn3crX8\n6RltbIevb2gT8QyGL1WmwMdp94IkBpw+7LfLrEl5o95v8IAJr6k822A/bFiw\nOYAGTJ9OgtEuJd7N8a1kCEkF7u54Yd9YO9vfPkO6SnEMiENW96wuzFBpv3K/\n/M0+4X8VDPXjEsS8wfRhUYYawhhDcE7/I9nnbngbA66V5Ci3d27ASkx0i6XX\nZ798\r\n=7lGM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","gitHead":"78b7dbd18aabc23ccc9d151db411913237a3c483","scripts":{"lint":"eslint index.js","test":"node test/run.js && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.4.1","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"10.11.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^6.3.4","eslint":"^5.6.1","should":"^13.2.3","ts-node":"^7.0.1","standard":"^12.0.1","typescript":"^2.9.2","@types/node":"^10.11.3"},"_npmOperationalInternal":{"tmp":"tmp/commander_2.19.0_1539035473746_0.9826574892249367","host":"s3://npm-registry-packages"}},"2.20.0":{"name":"commander","version":"2.20.0","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.20.0","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"d58bb2b5c1ee8f87b0d340027e9e94e222c5a422","tarball":"https://registry.npmjs.org/commander/-/commander-2.20.0.tgz","fileCount":6,"integrity":"sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==","signatures":[{"sig":"MEUCIQCc/z5c/aj49ttTzeEpU/X07nS7ynhIStYA9HSa3a9CuQIgMiS5h6QVmXwMXk1dEL6nkq0EfA0Op41lGxCMhcEQrRk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62223,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcpAE6CRA9TVsSAnZWagAARXcP/1Dlmv/NEiARtvdTN0Fo\nZoBKmjwWrgyT5oLE1efAg47RdO1zDQLWD2y5pUfW3RgdEPek6cmPTwjnijbj\nF3fuYCChl9ipkbkQMPhfN7eIv13pz8muVXvo9Rt1HF7rQ9jm25+lorzaOHL4\nn/ew0TNvmjzvxEi3cm9hFTYA2QMvGo6GnFh/7Tp1BZcVM7xC6eJRB3sD89vo\npv3CZ0R/JhZkLiKJ1eljTnE7Ch1YL739tUZDFGmkwtko0WPiiKmKuLseTokb\nKlvc6q6Qmy1tAzf8v0gCET/KSUzRXByd1XXaONQX7WNQRBjF4uit1GGxaMVB\ngTNR6lcYPqoLQ+9td4xnxYLKYN3xIKRvzex59PKS79j6D8PW5SwfHJG6mIDm\n3HWkZRHT8MRQcF792ZcwvaeOe69W2fty+7tu4FQxmSQ6ajgSem/mymkePOre\nkBIUx6U3pRq+qo8SuC0xHJaHehUaErhz76VYuJOut9DVRul9QNlD9c/e6Bls\nQ3zgSlrrzGoHddAB9DG+vQaDmvF7twV+oWYfzDxNwxNlOATjR0cXod3230EW\nEzs7vDpx9UrJBhqKAOxga/oYWzqx2GvC5vuXZcnMnNQ+3xejO08gBPWzNEEc\nMIGsO+cU9Kyd+9UJWQRBE7kH/6j5Bh54qyxNskfc+hpJ3UyBgKUJBsUWm5um\nj7Uc\r\n=zhg8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","gitHead":"3e8bf54b9b2fb3960fc2320a4174aa79efca90fa","scripts":{"lint":"eslint index.js","test":"node test/run.js && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.7.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"11.13.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^6.3.4","eslint":"^5.6.1","should":"^13.2.3","ts-node":"^7.0.1","standard":"^12.0.1","typescript":"^2.9.2","@types/node":"^10.11.3"},"_npmOperationalInternal":{"tmp":"tmp/commander_2.20.0_1554252089341_0.9811870313123083","host":"s3://npm-registry-packages"}},"3.0.0-0":{"name":"commander","version":"3.0.0-0","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@3.0.0-0","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"c7555e26ab809878560e8a3533220a4d37996b27","tarball":"https://registry.npmjs.org/commander/-/commander-3.0.0-0.tgz","fileCount":6,"integrity":"sha512-b/YlgJi4Nn53KWvxsOU9Mz1Lr+ZK4tMUyDOk2IvB+Hki5eefYZusNOvLls91HeI2oWLyxJ3KMEU9QeEaRtTPFQ==","signatures":[{"sig":"MEUCIQCEqHSHIg6yulNLsPOU4ZJfhqwikZheVXkZsMKwAytdIQIgbtr8tGlDXHm5OtMAsoa6+vqry7N1ZIznGo+C0ldGUF4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":73303,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdO7kUCRA9TVsSAnZWagAArrwP/j8rZpV/bcExP07qqGe+\nX9ZFwooqq8/9XLIAumCnaMO8vAbqJBk7aphBLUkXorhS4Sqh3Rhc1wdErgeP\n05yN2jd/GOzzPAQqqSOzIsP4jFTFyqb2wk3LJJLtf1VtDGHPh89mon4A2mP/\n4CjqMaSOfIzZEeUCksToOpk+pxlmodALSt+NBMh76KiDKWNpqS1slnZ9VZ5V\njIV58Z2AVBdE7PmaJLo7tL/WMG8rWWXnSLyNU06GGJICVC7PTr2Kdex+MYRB\n+px8ehvq6tqbSW2AdVhyk+QpKTRdbTLDxeukGPm5m2fO84jGe/Y1twCpIrdM\n3cNx8Smnqy825feY4RmMTCulcULK9WKPuBp9PBANtYPQqnoRD9hQq3b7lN6r\nz/ZxkuzBY8prgwppniGguZ3zCrA2lNzL3pHWUXhZ9JNvijTwiR9OPev4F2NE\nTty5YHv/mFAQ+kAOIOtGSHj4lOYLwtR/PJaSiq1uCk2np1KJSREFCyTCxFgV\nQPtPFp7XR7V94Uc7qrm3I+0n579FecbMLWQfrXNSZfFT0juEZyp7aSXJQ+QA\nGGZVeP8QBUZRyhZkxFvI50jXqq3nI+tNXReP24TG++RbcY0L3SltORDC1bFP\nKy9FweZbcpAogQRAzBDsdWZ6oTJYjbDL0VtPCoIG2MhUXQJvjWNnxy6f//di\nm3bZ\r\n=9Csb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","gitHead":"f743bf456bbda392dbc4a106fc196bc9ef5c8b76","scripts":{"lint":"eslint index.js","test":"node test/run.js && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.10.2","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"sinon":"^7.3.2","eslint":"^6.0.1","should":"^13.2.3","ts-node":"^8.3.0","standard":"^13.0.1","typescript":"^3.5.3","@types/node":"^12.6.2"},"_npmOperationalInternal":{"tmp":"tmp/commander_3.0.0-0_1564195092083_0.9400991591327539","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"commander","version":"3.0.0","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@3.0.0","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"0641ea00838c7a964627f04cddc336a2deddd60a","tarball":"https://registry.npmjs.org/commander/-/commander-3.0.0.tgz","fileCount":6,"integrity":"sha512-pl3QrGOBa9RZaslQiqnnKX2J068wcQw7j9AIaBQ9/JEp5RY6je4jKTImg0Bd+rpoONSe7GUFSgkxLeo17m3Pow==","signatures":[{"sig":"MEUCIDvLESlJv46u5FjCuNhRFJz25idUicXNldtXUzIn99sCAiEAwPYy9DrfW1iMLNSHT20A0wZpHMqPRGasIAzVVOY45ko=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":75196,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdTMJ8CRA9TVsSAnZWagAAC+UP/RjuPatKnwcfPeI7gZQd\nVDRsyzHJGmSlxcpsejCctPu/AuRGZ6kxzcKcSNE4m+l+1GyRkT45DJsf0tL6\nWWB3muf7lHWWiprf6bMaC39BBvr5LDXbHfHFk+MSc7CVhFK9Ekl1KSD6MxPs\nanKzcnrchestrWTdzZGV/Sw54gtcGXoOmHMrxQJqaw+kPB9Vt+55q3+SCVdL\nUTIoIVFdKLzavEBdeRzPGV2j48zFU3dmOaEVcHXZgGFZweAKUMVqCGDYpfBe\nU0cIAbQNCRbLvE4g91cccqplSq+6OZRVcMjY7xxDjEs/gXIAEdR8x7xu6QpI\ne5v3JM+hm3n+hzV0Gm5803zCOXnopu9f++pHXXWFJ59Ysu3Emjca3eBDEcDX\nT+FFLcAQV5/PEE/3pbW3UGoHCwUKlaABYORSzD/fzjutFpehR6JGVzkFhGCt\nVkoaOQy2YBP5AltfHMF+nl+tOc8HL10XPJicll7/MDfX33Jsq/R9Nc1qBSeb\n+5YdQ3Zb56s1mHWPcbUKfksUoCuK3xCPQTlcXOgKrQ9Hd/4TnULbiYnSz8rY\nJVh3KxKk0L3nQWOv1JhgtltuRF634bqHQpEBTgIvXyJxf+0Jt3kDWZQcoq/Q\n4FfhbgCks442wkYf13rZzkCKcCELYUTayeLdV8GXSlXkykbKCm3stPzZPwGF\nb1lJ\r\n=YAJ3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","gitHead":"3b0127b1906ff268d42640b59f106d283c810710","scripts":{"lint":"eslint index.js","test":"node test/run.js && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.10.2","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"12.7.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^7.3.2","eslint":"^6.0.1","should":"^13.2.3","ts-node":"^8.3.0","standard":"^13.0.1","typescript":"^3.5.3","@types/node":"^12.6.2"},"_npmOperationalInternal":{"tmp":"tmp/commander_3.0.0_1565311611336_0.30076989536927967","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"commander","version":"3.0.1","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@3.0.1","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"4595aec3530525e671fb6f85fb173df8ff8bf57a","tarball":"https://registry.npmjs.org/commander/-/commander-3.0.1.tgz","fileCount":6,"integrity":"sha512-UNgvDd+csKdc9GD4zjtkHKQbT8Aspt2jCBqNSPp53vAS0L1tS9sXB2TCEOPHJ7kt9bN/niWkYj8T3RQSoMXdSQ==","signatures":[{"sig":"MEQCIA/CaiG6uvCXdd6D6qnU2WTlhCGiZNnAiKfS9ca5+B+JAiBAvKiGyKNSH2Rqh9ZlHJ3Z880gKc/2k5wpHTf//P5t6Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77846,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdaOSLCRA9TVsSAnZWagAAqh0P/291MbV2QUq2ft6zXOFI\nNZZ32+k1GVp7z4U7ho4LqeVlfb+Pl/VKCkuxt6Y7wZrDJIIAdfxtOn1BIgz0\nrN//DDXGBepnDpbTwtSGpoBktHKV35vSAtRQde2yqmSdGEevRCyJLcwFgPUo\nNObsXgzzFa6Q5mByP+e5qoxYcMP6aieVw9PZJO7/L/bp3CrA7I0bAQfoUAAh\naHlFFbFiMbfu7+sS5ldoINa02pzV7wqPd7Pcnhk1FAbC+kl4wYUHzNix3mUC\nJ0g0mJuUXb0tvTOWd5I1wQ1S4IzQpcYo0Bcn58Hq3sApeIeiBrA4VA7ECAxG\nqu9uY/aJv0pfJToBYR35ZbqX52P++QHwqjq/mLGBzKxLpzPEBCdgUD8/Dxjf\n7FwXlF0qr+7PCv1j4rbOi1lwvHpCJvugeLzrRq9erQSLIL2O1zzJ1Bhjbp8S\nOY14zCLarxLOj8tND2qahJZoiJtBMFIrr9ZFiGbTJ+ybPGQm4JfK5afXTTNx\nGD7Jnmyu6EXrk+pmp+iJLuWgdgs7YHYbEDjkwr9LOSk32hZrKsbvgPCdOZQd\nKFx9BHcrjv+BvRyxolY0CkRi8j3qPZ/8ImNm7Ukus/6z4gYUw4lmdGB+CZVj\nubzAplB3/1old2GBA/eZTDIYRYDcB8su/cFoaCFcvHLRIyIWBJZXFgUMFFRJ\ngrYU\r\n=O9oM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","gitHead":"43123022cae2f01cc4cffe3eb44b5275e857a6d2","scripts":{"lint":"eslint index.js","test":"node test/run.js && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.10.2","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"12.7.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^7.4.1","eslint":"^6.1.0","should":"^13.2.3","ts-node":"^8.3.0","standard":"^13.1.0","typescript":"^3.5.3","@types/node":"^12.7.2"},"_npmOperationalInternal":{"tmp":"tmp/commander_3.0.1_1567155339276_0.5367414136318001","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"commander","version":"3.0.2","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@3.0.2","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"6837c3fb677ad9933d1cfba42dd14d5117d6b39e","tarball":"https://registry.npmjs.org/commander/-/commander-3.0.2.tgz","fileCount":6,"integrity":"sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==","signatures":[{"sig":"MEUCIQDjOxrLLfp++1TsWeeYqkyROURlbV/16ebDhb/xUDFAzQIgeG1nVSy95uOk+38jJIbsaM4zukFoobyL1dLp/aboTv8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77942,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjIB/CRA9TVsSAnZWagAA44IP/iYCjdRvcOZL6HI3Nm0i\nh0w6TzknRyKPDSySwajq4umoQERahfi4xVCj481SAoDoNqvtoDw0lIPBZWfM\ngrF50DW8ykRbtyl1LRQZQJiuHu0B+3FNnjh8xOQ+E9LXrQmj2h0OU+G9N8EM\nqO5zmmsZU+RfQGzZc3j6TIRxLnW+xQNUPuL6MZRp5Gap0bDnVp/sJn0XQcju\n/FTVfjLvzUTC4SMhRX7lExfPXy7ylqNwOFSBtM8mIIlwd2N2Yxq9dQcFQJFC\nlV0Rx4ZdsR1icWBXsY7iWX3whUsx79QBNKMr1RgNL2GZ5yFd8sg7bN5hcx9O\nDeo9KYJElgQ9lKeNYBnMIwQQxTDER3VjHlJ4VL1bJ1bj5ISnrA1EG0twLnpm\nb5E+HbImrHFgK8dVZFnz8QiAGyi/EE0kLEj2hb1EWaeuUle0CrSOcU9lJIIE\nX387cGPrQJT1Qo4k4nQ3W5EFgb0NEWs5OctqkFYE6uta86Q08yiTB1PRGYeV\nIpq79QOmUZO8UoNFn+C03HRW9fKfnsBfh18YitucN8w0OC8ELTmj1YAJ7ykq\ndeoEsXCYuu6ahIXnK4EveJShiyFMxNfAKgWJJw+jEtkRRxQBUb7Qp4YVpYxf\n05/4ub0MTdtAy1fd1AyN6DKM3MLIG8q5nmcKUe+LRumJ7PW5uPX+KFZzLtdX\njMqr\r\n=ORqI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","gitHead":"2544df81b478a4afe15560f27b3575aa3a1581c4","scripts":{"lint":"eslint index.js","test":"node test/run.js && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.11.3","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"12.10.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^7.5.0","eslint":"^6.4.0","should":"^13.2.3","ts-node":"^8.4.1","standard":"^13.1.0","typescript":"^3.6.3","@types/node":"^12.7.8"},"_npmOperationalInternal":{"tmp":"tmp/commander_3.0.2_1569489022766_0.9087751523372256","host":"s3://npm-registry-packages"}},"2.20.1":{"name":"commander","version":"2.20.1","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.20.1","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"3863ce3ca92d0831dcf2a102f5fb4b5926afd0f9","tarball":"https://registry.npmjs.org/commander/-/commander-2.20.1.tgz","fileCount":6,"integrity":"sha512-cCuLsMhJeWQ/ZpsFTbE765kvVfoeSddc4nU3up4fV+fDBcfUXnbITJ+JzhkdjzOqhURjZgujxaioam4RM9yGUg==","signatures":[{"sig":"MEUCIB0Lt5PS+XkAGcnBcMmbZq3FLFZB+pMkPZGW+QEGM+E9AiEAi7OuLEzTCA73eNSaaJNo66DSsohuzsCwjnlNL1qPEv4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62298,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdj9hICRA9TVsSAnZWagAA158P/itguvXbWFYz25Aj9NL7\nwE3zXiaP2L6Va4JsYkm7ZlCHJ1DmrboYBvXkYFsQI29bOtIjFN5lAjgcm7b1\nh52EygFKxuzTxHbyArV59d/o9POYgosINU7/QC9Qd3Vtzi1jwAKxVoT032Uz\nELrY80U4YTJwy+rx7xJPSy1p+rCeCHpF74NdsYBNvQtrSUa3FUmq2lOLC5WV\nUV2XsOSwCG1j2GKnNnAnBy8AwRP+OWQ5SUekSAK3KXiyFylsH5hJWKbPWPQJ\ny4MAYE3wYwvx2rJJ+MUqGT/DGU6exvXrrvWIzT2QicERaFo4FFgdpp0eIapi\n6Bk3wOt/lL+v4KUNOyIdv6aixLKgO1vjxAWuj/whPEO4bIpTjn4gcPsFqDac\n8nIW6cMtKtHy6YtyjjtOWjyGkdH62fKd4nCs6uagz+Qq1TjyMfhDIKmJBL0Y\ngS7WHMsk95emKJPpXxj9H37KRcOBJEcHODlBwL8sutND5bem+CWMTDBRXm4A\nmnYS8FmMKO7Wc40I1FFPzLT7noRbN5yQvdJ6W1Fh1lqb7Al4UY8rc9S04Mgn\n+khJKLmrr9YqEYfziXWZ/KoEW86M7K11spTUdLoSPTxpubpjXz8S5fZNi22u\nURzwkK4FA0V17Sy+op1+uwnpuOlR9MNE/lzp8wEl+PHD+bLkx0hm7H+F0iA0\nK9wA\r\n=VsbK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","gitHead":"48b02f06da3b96b200a973aaa1f7e40287882e8a","scripts":{"lint":"eslint index.js","test":"node test/run.js && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.11.3","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"sinon":"^7.5.0","eslint":"^6.4.0","should":"^13.2.3","ts-node":"^8.4.1","standard":"^14.3.1","typescript":"^3.6.3","@types/node":"^12.7.8"},"_npmOperationalInternal":{"tmp":"tmp/commander_2.20.1_1569708104186_0.2554397084003732","host":"s3://npm-registry-packages"}},"4.0.0-0":{"name":"commander","version":"4.0.0-0","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@4.0.0-0","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"f6bae309054b2e6c870189dcc2f51555c1a4c377","tarball":"https://registry.npmjs.org/commander/-/commander-4.0.0-0.tgz","fileCount":6,"integrity":"sha512-jARQuTKQXYqAbHK/WJqYHbsnHzKZg0TQVw/31gg7gr4JWFJAoB5KFJS13FpF9ewiB7LhWA+0eT0ejt1IgvCWlw==","signatures":[{"sig":"MEYCIQDg5OXJ1vM7cEYk2Icv5j158Ps8ObSz6BpCM+zz9zP+6QIhAL37vPWFMBpI9MCXug7K3X90zQ/YF4rRAevCsiIdjKxm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85025,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdkxDRCRA9TVsSAnZWagAAXZwP/A4AfrK1oLTL2QuN86bG\ntlHd8VrVqq0KwPCtuGIB3RBMWcKyXe0FbUToIPNeBqH7r93tYP4k4Fjk2oe0\nx1MY2rbpS7TvcMN12aCqQC3/wXZHybD2eiLSHqiUKpqyTDO0iZOKqCyxACx8\nW4gbaCo+4JAfEB/mNwKikKpVTL0rtFgsKo9wMXvLintndk6Rlbol+0QeAICu\nAKUtimtZxi1AeXs2rXOiNEAGsTk2FQgn4wI+payX233v4BIsSNE/7Tab1jlS\niH/ItqVKwaHExTegoxXseOk8TFJ1fW9uxdxa8R+hgPO5ujg7RCWpumkRVVre\nM2S7dP7Xd3sjSoY27Zb0oNPE+6JVbEfwzHacSEc7OMQKB3g4nraQWE5i8VAz\nISiVpakYLiUKISg4lpDWN8YYyAQKZu3lvFW8O25Clji8QevNSm1nqheDj0FQ\njQnMGf6Dk5G38zRNeuS6qYjFCnINK8IxATDi2WfhWMRDkUcDdDNF4aaKc25f\nWLnoL6mV5Zd+l8eEEPR6ZIRWzEsN9VBaW9MI/zFTzHmQ99w6lhEPogh/aguh\nuHMqP5hBiEUI8St6MYEWI67qaimgYrxunXvVPthBUt2ffNlUtzpCVoUA3bQz\n70mIMIrnQSB+Cj1WaHL3PiH95LdgIpL+r3xwSMWzibqiI5oyrzg97ajrAtwF\nV3PU\r\n=YPfl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","gitHead":"400e6afd493c8ebf59cf54174bb80b123aa27138","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.11.3","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"jest":"^24.8.0","eslint":"^6.4.0","ts-node":"^8.4.1","standard":"^14.3.1","typescript":"^3.6.3","@types/jest":"^24.0.18","@types/node":"^12.7.5","eslint-plugin-jest":"^22.17.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_4.0.0-0_1569919184426_0.4993958331925179","host":"s3://npm-registry-packages"}},"4.0.0-1":{"name":"commander","version":"4.0.0-1","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@4.0.0-1","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"cc00f6d884cc492aac3fe3b32ff36e5f46cd67d4","tarball":"https://registry.npmjs.org/commander/-/commander-4.0.0-1.tgz","fileCount":6,"integrity":"sha512-6UCnFDyJnZfk4ZugvEhl8hYtlViGJNVki5J+3x/zNd8nLDpBcDHZShvBYWKIIktsiBUuRDttP/qG1yF+bhhVnQ==","signatures":[{"sig":"MEUCIAIri2bgPp82yFKu1clSMz4STv/V/aUNLI911UuyMxIdAiEAqBQUfUyHuEtWdBAsgANiot60P2wSjEjQxDiBqBl9ezw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":88892,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdm+YYCRA9TVsSAnZWagAAR9oP/AscfhK6wrWOAQirqHnq\nsgF0JCgHlpEPW9+tmvu7vL4kxni7K1wlCbur8y+dvyiBYnnTsWQZKDLrm/F4\nnA8TEK2HprGJ4mBsUHihfy+BbdT+OLxoez8IQCOC92ghk/yx3Xoxhqg+ik4I\neXV+S70BFBc/EnBN+yJDwn3gvQ6YGpeGPKR4+dv5vY8cx1zG4RR5CPx/pPOl\nOu86quAB90L0tVu+KXqTEGfx8rbyVKtrThhzgHUVOtAiZP3Wvpwv8Zct194O\neaDdQKfLOhSd2we2XLCCD/C8mTxi7byXb4XbW8MV2+pPrelUIkLhapssXA2n\nk388Qr3xud/2v0V7FPiTGd45Pr1iuo+a0cMvmFbWsn1buFVuDyhQLo3duz72\nyf+WIYmAxgIb+ucQ/d420boD3h/zTxMZm7V2378mOFWj0HXFRORSzHgO2RPD\nlaahbwzvfjfXdljJKZljjkAppQpdCWsUkyj1a+NJ8EbgkV2jx3qZAAnTuar9\nmckqw0KH6dmdTbIizNQsc2I3fL/KJpE42VKPOmN5i8Cd1XaMozJnHjSbFdGw\nUuu/+jCl6ADxSeGeIyPQNvD6jqHehtL5n0881e9xFv/lBAwyDFkwVkbz9XE2\nbiLFqQI8CUn5UDRncvpO9V2Du5tQKiodXpS5OIMHCxyn7vOGsueyy0iUTSYI\nmRGp\r\n=H2sA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","gitHead":"e9929fb8c83ab8cd654167f02d027c041f295d69","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.11.3","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"jest":"^24.8.0","eslint":"^6.4.0","ts-node":"^8.4.1","standard":"^14.3.1","typescript":"^3.6.3","@types/jest":"^24.0.18","@types/node":"^12.7.5","eslint-plugin-jest":"^22.17.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_4.0.0-1_1570498071630_0.1486698540389535","host":"s3://npm-registry-packages"}},"2.20.3":{"name":"commander","version":"2.20.3","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@2.20.3","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"fd485e84c03eb4881c20722ba48035e8531aeb33","tarball":"https://registry.npmjs.org/commander/-/commander-2.20.3.tgz","fileCount":6,"integrity":"sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==","signatures":[{"sig":"MEYCIQDi8P97IdM/HCU/5iN1cUMTYac7x2dNO9uJn3grTlBU5wIhAJTnisAKEKNxXfo45VISgVzZa+3JpFUl+TaprmdT3PYp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62442,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdoBXICRA9TVsSAnZWagAAxZoQAJuUZ2avRahPhSmn15Vt\nRrnyt/EzaZaR9jGpwPpdSVKEyEypyKO21zsrFKg+3TjJGLQVb6gd6eXvY3Rs\nTG1JeNQKYyqcrvH+q94ZIDTMT4tzUv50MVBuSdVCAQB2liHKzcay2aMbd0bW\nFbb56rVEfixabLoYJGhpsHAamzAD51CpxwjpeKuVIYe2LDTxcDOAsMvrjxwK\nB1vsuQe4EqcuMWE0a7jtGJTHqxxqQxcvZLloxgO+kr6TGMZQ1oMtwhRUayNO\nPbN9R97nhOoV9J9AZu28O98yJXiz6p7TQ11JeN/mWF8F4LT1N5Nv227OHP/a\nVh6EtM6YPMLQU6lQTWUVa9BF6mqCMREBY9QRmh8wfRhrrCfD9oOez1qmGsx6\nnz6zqiqabuy8KlULmhyXA2ixHcKgEimlQOVDGJLy4EJIv84o+GCdVJNiP9qd\nrB7qTVbiNm9TiY22OehPADtx9QhcavZuju6xftjXllvjKN3lJFx+jbyenfR5\nBonTnPuqx4+dmUyFnmfHSM7pHO7NtzpLuEx7N/SGDtUfI6KPRBSEt7DpoaFu\nF7lABbtehgMpcR/gCOMez7BXcNkigDWHQeRqaJ+iedXrd3YLvJMQoaFgUmDU\nMyS3zLW3srq8EsazcsdlmQpVb8lRJjKnki6Bj93v0caKaT+4aAjpMtn2xyCK\nPqC9\r\n=91C8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","gitHead":"6b8499b24f4f6498ad630c50c8a00c9579a8536b","scripts":{"lint":"eslint index.js","test":"node test/run.js && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.11.3","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"12.11.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"sinon":"^7.5.0","eslint":"^6.4.0","should":"^13.2.3","ts-node":"^8.4.1","standard":"^14.3.1","typescript":"^3.6.3","@types/node":"^12.7.8"},"_npmOperationalInternal":{"tmp":"tmp/commander_2.20.3_1570772424007_0.3931389310307576","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"commander","version":"4.0.0","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@4.0.0","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"e782b6afe6a0f1b1408be59429919e1305160e3f","tarball":"https://registry.npmjs.org/commander/-/commander-4.0.0.tgz","fileCount":6,"integrity":"sha512-SEa2abMBTZuEjLVYpNrAFoRgxPwG4rXP3+SGY6CM/HZGeDzIA7Pzp+7H3AHDukKEpyy2SoSGGPShKqqfH9T9AQ==","signatures":[{"sig":"MEYCIQCKtB/nu1sVQLzj7lLMXgRk+Rn8EB+kKPJg9hveuqPlhAIhAMI6OKMu+BDEGCQfB5WUsyldjlewGe7ihxwUAl6nma+m","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":89230,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdvARDCRA9TVsSAnZWagAAStIP/1aYZBwrAfiGXxnQxy5l\n4GrF1OC2pML0nVRqyMDfnd94hn+1q5lyDoLuoEr7dr3HwacDy4p1hKDQTdSw\niRCqc3Zp8ktKF1y3ZpUFFnMWvq+kaPv5U1TSVwtlFKt/ywuThpjh28g7MRVR\n4aNONkGhlPyyMfKd2N9AunC3sx7Ykz6mQlLvyGlryz4m8VcQU3rsBmcsIdzu\nPHUUCHQUeqmz9z1czJir/4NT+IUnmbGMfyw+auHrMzQmoI5tKMJ4TJfGWAxY\nsKeF614GAcIWi4CuZDtj48KVSIrsrLoGLNGuzBS52+w/Z0RGXYapYiSKWf1Z\nrP5MTl4SxaeiUlB2gzTsV0Y3iNyMnn01hLWJMCOACzGR9e4llCO2CMgxYE8O\n9fK/qeN+NW/HFnJ9pR8ReiOoCUVO29BYroh2/yzabBEIBD5Ie0VRNoDNiFKy\nFEGeOI4MzzutFTzlZ+mvS9S/sKqAaaFEo0IR5OuDR/1Kb+1DZwsiFFI70JwW\nqRMqbV+ucar2BcL4T1Nf+PTj0F/M4jVpqq4mekv/wuzZWk3h8oi6lSlInDXv\nFS4jABQXWLlPFLd7jynloPmXj8BU7H/oZEWMJX9PO+hbJ2Cx2ReGnsrxhVUo\np+gnPb6eqo7bZG8DRf2U3X/cm+C97rqWWG4fsyrCo80WgySKV38XPIT1qQAe\nRx3P\r\n=wiE+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","engines":{"node":">= 6"},"gitHead":"f0315b892d0425dcb8589d19a8ef61c2f965071e","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.12.1","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.8.0","eslint":"^6.4.0","ts-node":"^8.4.1","standard":"^14.3.1","typescript":"^3.6.3","@types/jest":"^24.0.18","@types/node":"^12.7.5","eslint-plugin-jest":"^22.17.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_4.0.0_1572602947069_0.7900930790476839","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"commander","version":"4.0.1","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@4.0.1","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"b67622721785993182e807f4883633e6401ba53c","tarball":"https://registry.npmjs.org/commander/-/commander-4.0.1.tgz","fileCount":6,"integrity":"sha512-IPF4ouhCP+qdlcmCedhxX4xiGBPyigb8v5NeUp+0LyhwLgxMqyp3S0vl7TAPfS/hiP7FC3caI/PB9lTmP8r1NA==","signatures":[{"sig":"MEYCIQCVLRb/IYRLG5vlyKfCEWwlLK7hYEvQOPCWX3VqvwyIggIhALcBY5KKXmuiyVhAxTB4I7lbw59XeJ8BAeIdYCYhbyJs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":90256,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdySdqCRA9TVsSAnZWagAApccP/R6EvOeW1V7wNBqAEmU2\nIm0OW6aOuLM/b0qRTzQPuVNeIsu4l3Y/usfqZl5Hk9RRew3xAfHEJDT8sj4L\nJdRIUP5+MEe531awH5WQpLspY8VBHYsNuW13DqZyc3e/axLOlq6vC+yWVO7i\nlUmowznWvG2/X8YGJYI45lihfaavbJ5v7H8Z+mXTgBXnXQzjqH40T+ck/6L2\ntrjrfUFtDyTIMDtLDu17dTEF3vklL7TMf7w+BhajjLrCW+Kq72PSOCQPx8CP\nRpoSY5Qo8/fKzhUkpgQ0qh8M+x8NOvPdkxfzw1hV4v3mvMK/kEBKXkaBdw7y\nsRDJnU60LlPR8eGpYXMdMEzWFicOE+IK3ySxYEAWVdJCDoV/tB7dTlVXOgIn\nVKLYL/Z7adnv27GeFOO6aNhA/xyflsjstS5so7M5Ay6eyJ8R1/cUDfxjf7vz\nrJP4sPixDN+lGdVb7EGAWaMlbTEOdI7cmGE8Vf2HPgGLoREYBhkDztkFex9q\n7TngRMaUo6umxTX66LDj3NieDos3LksfOLlu+PmZU8UlHM5dMyV4PEzxj7Uw\nTlaq9kiX6Ebtn3ey7J9i/YpiIWoCeN5CTUpjiBClFKgXkgsWLBasfMWXOrdD\n0zpawMfj7hBtn5n7srEb162UD5dI0OhmkW9fsvik8S0gG5fpttVr8rQuYGzV\nJCcl\r\n=Jqbu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","engines":{"node":">= 6"},"gitHead":"5083e1463ef4a7d91e42d430965246a7a80439a0","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.12.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"12.11.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.8.0","eslint":"^6.4.0","ts-node":"^8.4.1","standard":"^14.3.1","typescript":"^3.6.3","@types/jest":"^24.0.18","@types/node":"^12.7.5","eslint-plugin-jest":"^22.17.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_4.0.1_1573463913792_0.883424062108114","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"commander","version":"4.1.0","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@4.1.0","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"545983a0603fe425bc672d66c9e3c89c42121a83","tarball":"https://registry.npmjs.org/commander/-/commander-4.1.0.tgz","fileCount":6,"integrity":"sha512-NIQrwvv9V39FHgGFm36+U9SMQzbiHvU79k+iADraJTpmrFFfx7Ds0IvDoAdZsDrknlkRk14OYoWXb57uTh7/sw==","signatures":[{"sig":"MEQCIHQoGWeZlFh6isUDEas5C8c+Sos07LYvYjLt4cOOlP13AiAK6pFWn6Je0DwTmMJVksEL7/IMT5KUPy5nCFNZ+3PDBQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":92906,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeEvsECRA9TVsSAnZWagAAVaAP/jvX6NMVBFylf2XG5Yfe\nPeMK9l/TIcVNvrEgzXh2blZPtAuYHHdKIepwZPf7oVTshy0bSvoMPw/oSv6z\npinA2XDgYey322hLsBkrmv9ln/rwOmHi38Mo+WBU2Br167s27//rqoNdV4Pv\nfcc1/9CIMNZ7C78hT/Qxbk6r8bs3HSGvQe/vxmB1pm9kdivdy2PNBd/C1rXZ\nvdiGHWpuvO/C/p0DJjzu+nbJLfOM2UJ/cK1tMK1cXJbI6xEsuDW8izFOHFCr\n2ywH2KUVDnJK7dv52mHv8mKTvErUBfeSVUg4632LVR4BTbf6N3tYZxix+Udx\nuUSOMuYxEqaFYdmuT1BUO38mvmB2iW3vFcZTEcdkLXuJ0uPaVy3GmOtJaodu\nAE92QxAnyj30kd7Bp9T3LB8GDJaD0gJWx0x71WqpDqQ6yCsHi7W6hm0zzXc4\nTPTXCUKA1/QC7gErv9ZXjIoZ8IiogX/JhNoLR0rPhNR70x0brCG3xOrhac8m\nLmZq5z9Q2zTuxw4r4OhAvXmrPtBKoiZTVl/Nwep9WypUVkZdK1+FqkzNVpeF\nfSkAeGSVEH4EY1q8k4Z7kiL/9qvi/jcJZewFIiCnJXnQ6luupCnPDxEbxYmg\nA6aRl1acSacEhLfEZITjfvGot5iRaMLHssIFgQHACvWcmnMSW9xSFtEThFfU\nQelL\r\n=IVoz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","engines":{"node":">= 6"},"gitHead":"8e1cdf5405b1e67359ca7613ff3c6ed81714b181","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.13.4","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"13.5.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.8.0","eslint":"^6.7.0","standard":"^14.3.1","typescript":"^3.7.2","@types/jest":"^24.0.23","@types/node":"^12.12.11","eslint-plugin-jest":"^22.21.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_4.1.0_1578302212096_0.5951093748080849","host":"s3://npm-registry-packages"}},"5.0.0-0":{"name":"commander","version":"5.0.0-0","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@5.0.0-0","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"22c4588cb45740cbaa27bf8163f2327a2c126a75","tarball":"https://registry.npmjs.org/commander/-/commander-5.0.0-0.tgz","fileCount":6,"integrity":"sha512-LLP9hLsnl19X3DTYAZ72b5ZFxsaDNw31FZPxaJHefhat7BSjA4O7L3xFy8AuOBTt6AfOZlNYsEgzYJBE/KRV2A==","signatures":[{"sig":"MEUCIEIXO3SwYIkkskwa95HkcH1LdMG0cNN2wUzHFKNpv6ETAiEA4Vc727ASRHZbbm8T2v5jAF42MaQG0h8aoGjYgU+V2fo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":101487,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeNPQoCRA9TVsSAnZWagAAzBwP+gLLq8hnVoqCroK9VK/2\nygLOkf3phbegwQbjQf6As/yoIplt+6kWuFwpZRj61bKiUvd7sH8qcSepv5Hd\nGSINQtbP9hF6FMaOqW5YXzMGPIe1qz8nmC5pIM2ep33Rae/Q2b/1lRJKt0ML\nNM7be/jeOKbZeAQhO4DcbzFHuV+5GtDOjEoJBRLSswOBTUN0pOmUzgZOEUJJ\nVa3ghhtQCelE5ykGB4VtF6TKlJbcX8vE/YWNSLz7ALZt91Qi5cxn/fw9WACF\n08uS+BULnhBUvhaopyfx+3V2B69KQ40nhZ7DK7cBIGFoFMnMnoj44xCnuCx4\n0mZyqaEHVnDGZ0e0MYRfmlutv77wRIfcbRY4PCxjPvRyLknHJ/xIkD2nZx+E\nVaS8ww+Zvbscdo1/xjydktibpO3QtWfPWKqgzlnyvCjEWOC2Ixxof+mTJR2F\n5pnDA4dZlV/ML0HSqFhuHPsmcD+uyYQI6enXsI1/quKDtWIVjH0qUcRp2JFA\nrORoZeXtrMVZU4/zy2KYm/dLrzDCh5cvTrXAFgPM0d8O5TR2iBZ5wAfOEmjC\nbWry0p8o4IW6L9ee3q7/VdYRiqO1LWr8z2iC4MFUmla7QLOz9Q7DRW2Ga5NK\nU0SiXUTpyju/MlgoLZ+oj0npEC88wKYP2lZct7Mf4p2xJ6doZ6AWwPpcYWmn\n3L/5\r\n=4M9R\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","engines":{"node":">= 6"},"gitHead":"6857562e2952561b226d09b2683c859dcca800ae","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.13.6","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"13.7.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"jest":"^24.8.0","eslint":"^6.7.0","standard":"^14.3.1","typescript":"^3.7.2","@types/jest":"^24.0.23","@types/node":"^12.12.11","eslint-plugin-jest":"^22.21.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_5.0.0-0_1580528680443_0.6839616301312152","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"commander","version":"4.1.1","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@4.1.1","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"9fd602bd936294e9e9ef46a3f4d6964044b18068","tarball":"https://registry.npmjs.org/commander/-/commander-4.1.1.tgz","fileCount":6,"integrity":"sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==","signatures":[{"sig":"MEYCIQCLxbbWdsLFDvxCF0Ne11CQnzsD97XGapRT63Z+PAkC8QIhAKzQqDOO3VYVVKFzP/ClCL1lwC/PZAntTzJjZJUKvqSS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":93231,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeN7qdCRA9TVsSAnZWagAA1YUP/Au6/s5G11d8OQETCs5N\nqQwXL1HldSNz8VBxRfCCqXF34p4Tlg8MSUxuf265a3tHAQM+cIt/9IFXPt7T\n2JFgKkenOGltg9VD9QX/uerDQBpzWpGxIFPhhw5CjZyJljIzoN/Dcffyrena\nu5O7qTVZyqo3HAqRDBeso+r0bfg2i7st7I0gA7+Dfgxw6DNyZd30qFVZ+9i2\nnNRAsh/cseVTN85OBkb3aLUL5q1fVVR9MF/A4AJrC8zAVDyS43L+tNorfuF2\n8jkInsLhjRH3Tqy9pTAjRVZnuTUapuAN1I9M+Q4BPPWpvcs3gouxG8WmED90\nmsCdrZzzFlqL9IdsY56PoPpQ2RQba9UtovOs5u5NCWNPRR91nMD5j/dN2J8K\nONVQtqXBriGE8T7d8OBozmv6vARWbQjX7FRVhI0+NruCmapRYJqJWUgyuYCF\nBvrg64U0aJLasO0/Uca1wbxDSRn7wvzbfX/A3tuO/URuvLYMdlwAUCvNmZzN\nUJI8EOkJDJBBMFQAa+awrKa1E3/xG1MjY89b5aKZb1G1/+QXfYwVqxJ7ovU/\nC8uiD0diRHx6778UafnFBoIZtWVpYPJvO0VWQfWjXPNvYnu/a3KLmn9F2iuk\nEAUhTqqJpwFen/pB1avLZ0lYWZ/PRew7HicENZBoJm2PW2lNyEBlEHHMsr6K\nSh1o\r\n=zQzX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","engines":{"node":">= 6"},"gitHead":"d5186ba4b9b64a72cd685fccbb9ec5d0ec0c430d","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.13.7","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.8.0","eslint":"^6.7.0","standard":"^14.3.1","typescript":"^3.7.2","@types/jest":"^24.0.23","@types/node":"^12.12.11","eslint-plugin-jest":"^22.21.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_4.1.1_1580710556739_0.7541163312659649","host":"s3://npm-registry-packages"}},"5.0.0-1":{"name":"commander","version":"5.0.0-1","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@5.0.0-1","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"7af5ad7324cfdbd6ac23b71d54b96336646a9d25","tarball":"https://registry.npmjs.org/commander/-/commander-5.0.0-1.tgz","fileCount":6,"integrity":"sha512-cV808agy7Q4lIV8YV7zAmMa929TuQVbEIEtZ3P73T7WyWlbS6QqABihySoS4wKoFv08psv+DhagmVn3YZQREAg==","signatures":[{"sig":"MEUCIQCXLj4CtK24AX0+X8RD68kjpZki/VHF5JK67rg6QWLILQIgFfnZ0pSLOc6GRafsN49pVpUOqh/J9EPWE43y5EFExj4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":99685,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJePx7bCRA9TVsSAnZWagAApL0P/12hiNxfOsVOZSyyUHrJ\niKDmvX+nGVCY5vBtCGeP0ZMnlRZ2dfGXIzmsV1dQ3BatSwho0Q4H+rh0RfM6\nMteIkcf0ufCYpltAKj9dvxbDgktaUR0yZ0R/AnF99NzTl9UyyQjmsjEj8kBn\n6oYtunBTAu6tC54kxjUHBG7XwxQ9RdbIWNUtncmTqbHNDhTIQrnDWYwSEjd3\nEhxzGzNSq5MYeX8+7/cRCQo4ZIEN/hD86P8NjJaY/5lHSKlfkZaJDtvHGrE2\nc4gaWqAYHujripcW68zCZCaQi9JjZ+QfN9kxjAsN22raD1K64GvRHsiwZvvP\nlrDgkFKuYa20GFiexfDi2rx3xaxmBmPqRDahB8vqYTdr2Of8YyQhs1FmT9e2\ne7l0sZpG3GM5q9+SNPYjNf8NGfqPTKUPfgBQeG7K53uLHKrDKJpeLZS/5uMU\nw/UbEHw9tCvCdtEOCpT0ok8+imNwnDxaM6XaGP0RTS6nQcEETrll/CMtfDh1\nc+iP1ndKH6D2CKr7pQWkZYYxVWMN5WtI+AQBy33JUIE/+VCQMszlbccJ/Muq\n6FZ0Ur0Xutav6XE37ltToX379Sb9gPfBO1EbCL6j5keK33aO0RIHc5oTo4jh\nIuuEjzD9XFFVTp6ikMd96TRJuXrWpT0yX0l+VM9xBq5m0RtnwLxv29TVZqfI\nzl32\r\n=clQG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","engines":{"node":">= 6"},"gitHead":"a8a14c91b3a65ad09d163894adab2d1c93316150","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.13.6","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"13.7.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"jest":"^25.1.0","eslint":"^6.8.0","standard":"^14.3.1","typescript":"^3.7.5","@types/jest":"^25.1.1","@types/node":"^12.12.26","eslint-plugin-jest":"^23.6.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_5.0.0-1_1581194971136_0.6626231082994336","host":"s3://npm-registry-packages"}},"5.0.0-2":{"name":"commander","version":"5.0.0-2","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@5.0.0-2","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"4550bdd78a7616b7ed0c3e2a0f4ac83a2c641333","tarball":"https://registry.npmjs.org/commander/-/commander-5.0.0-2.tgz","fileCount":6,"integrity":"sha512-9oKoqJisncoX2ppeXigKyRiFtLZreopWKdOCP9GeGESMAHETXgy3k7zJPuh+R+nm4LpDeqlPAz9kAUaRnLSlvQ==","signatures":[{"sig":"MEUCIQCtWP67IOz+6fiGTxmo2ToZ2vo4xxp6em3uBAUmRSCslwIgYq22TQ1cy0+RKI9et4Od3Q1PAIeUO8E75hnPKLo42tw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":100325,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeQnm1CRA9TVsSAnZWagAAt2cP/3c4tuHFMMxp18wLUGp1\nYGG8m2f7CKGdUL2UvnyIgZR64nmYckoNE/nH4lljfnoN+rWtubKQ/hWGExv3\nRbshBa/9RbLetVQmqxjMHbkfncRKqJZpjQLXnlWM9Ux43O9AT4EtPoaq96QI\nzHd7VnsCDCKvZacRcCBZFP3lNzH2iUFKDPuWAVzDzsglVb3EflKX2zUFz6NV\nKctCP8DU5iCzH/q9P0jqdj/aYW3byQItY640D6kBVvB6jceY8NeColU/MPvK\nFzQ3XKG0A1qtenW4jOaaEfG89Kod5ubZnk6uqz6HCUEMPo4X0Gvog4Hvn4b/\nFMS6DOxrAXLt4oIBHBNNytqV/JzJu0m6Qrq8Qfz/lrDgb9602eya3zBV7ihT\nDiRmF99T7NDPhY07SW9RxrvB7E0+ar9oxGA6jgDk2p7Kclqoj8LPskf/po3v\nkAuMWnq+GlIQk6H96w2ndAzH38GTuTrKdcyJF3jtROrtZcAIwfQPeYBo0UFJ\nzDJjpTBWioxvM0u4dRJq2gAYxlNOU2cwkCidvr7LPD6/ZhRtIDLcfHd61fq8\naliVmRG/suVoUYymTlCUZfMdQ+Xoe3T07LFZT8j0qEpjSIYPEpm4zj7IjsBO\n+D3vN9/nmi+0FCSJw6kmWoOvckcB+Ei7/kJMF64z/njZ3MWj8cBY4k9Zuycz\nJknR\r\n=ARMB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","engines":{"node":">= 6"},"gitHead":"1a84b806f3f83055fb8f864d0c5d849319ce522a","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.13.6","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"13.7.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"jest":"^25.1.0","eslint":"^6.8.0","standard":"^14.3.1","typescript":"^3.7.5","@types/jest":"^25.1.1","@types/node":"^12.12.26","eslint-plugin-jest":"^23.6.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_5.0.0-2_1581414836630_0.4903290135236571","host":"s3://npm-registry-packages"}},"5.0.0-3":{"name":"commander","version":"5.0.0-3","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@5.0.0-3","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"4bd12705959837cfaeb679799580e81c16593423","tarball":"https://registry.npmjs.org/commander/-/commander-5.0.0-3.tgz","fileCount":6,"integrity":"sha512-8lfJT6SUoBSqxsXxICEeSB6+/YeVUDshV4jfrDneRcrC3H/bZ9YossoD5KCtNJlmKFUsWFZJg1b9MmEvLD3BCA==","signatures":[{"sig":"MEUCIQCYIEj7LTGFqBGpHxIHym8rdviSGxJS0FO0eI0eENvj8QIgQaAFW1kkD04sKtdeVueopcuXObbKXC5turgD686YeGY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":101041,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeTjcHCRA9TVsSAnZWagAA7p0P/iy4uQGHCrxy9Y7dvdFY\nRdbfGBWc9SKXQLxod66Y8RUqtt7ae1vtYuGcz2Wfht98FxCyq0JYtnXk350P\nkL9ztWITaKVS8lGu01lioybn2wTHzSJRCKfV0Ujc58DIQzAUXn1C/lBUDcUM\nKFPFZ44p/9cQhQz+ZsoUJQ6MeblRHiIp+pOixfAintyj+bM3uIPTGJtCzhby\nVJrLmF2+T1l2tg47OWxzPyXyWJl9pQV/f+m/6ZqEM1uTToeIyVbRqjO1M8/p\nK9xdnrEY7riP6KwAUGxQ3WLT+TMIl6VBEkYzai2Ynk/TaLC4jARFfsHkvypE\nrWVujnmegVBZrxjvFoyh3k4jirbNnI1zZ/sfty+cmbM3kLdZdu84I9T30REB\ncHMiHrN9q9yYkvu5H8Zq7eW/JdSZMvGSFhopQzYgrOlrY1DdfYgMgFVhKqCZ\n9I06UK9etk1K94FfSPZTOmkLEMTpHNGs2JCecV8d91+JASpIDlwiNUcHEo0U\ncOHo/NKQPFwDhSs7sxuVU/5pGgiwfYLgwKPnmwC0PcqKskUXoB/kRNsZIM0m\nzCbiDOzqA723Ky7Jabgs3zt/bhh6O8GR8dyezCp3OWknGDZaFhy6aGQbdSXC\nKxL0n4m5C/krMreJIF8amdNJjT3ybORsJKDf3Ua9c8Z3WvZBiMKBuNBSK1ZT\ntLIq\r\n=fSGd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","engines":{"node":">= 6"},"gitHead":"a3f453f11cf3ad69d2b15ce82efdfd3af53efe22","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.13.6","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"13.7.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"jest":"^25.1.0","eslint":"^6.8.0","standard":"^14.3.1","typescript":"^3.7.5","@types/jest":"^25.1.1","@types/node":"^12.12.26","eslint-plugin-jest":"^23.6.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_5.0.0-3_1582184199234_0.7276851509041251","host":"s3://npm-registry-packages"}},"5.0.0-4":{"name":"commander","version":"5.0.0-4","keywords":["commander","command","option","parser"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@5.0.0-4","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"3960a6d58cfe1a67537dbcf993f63f7f883daf32","tarball":"https://registry.npmjs.org/commander/-/commander-5.0.0-4.tgz","fileCount":6,"integrity":"sha512-5ouZPC4TTJaxyjVoLbFP9M08CFmiMewAl/Vg044S5hv/oVtP3sUDPOl73XY75l2k8njoplxogL34oaaFayuS+A==","signatures":[{"sig":"MEUCIQCpXf/tBdd8qh4klu5Vb8Oxjt5NzFiZ8cye88dFWZsciAIgJTOFLu5V993kbuUCLopE9mky1AyDZLM6vHKs8RYyOFE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":102868,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeXeyoCRA9TVsSAnZWagAA2ekP+wWZzsz3MfTPGoXM7g0h\n5E3ES6Vnbr8UH5DPbpiBXvdzIdWhDClKZzzfBTPgtcZcYO5qW1fVn09lNE/S\n8lJwxU5k4ijhpzPE/lJ1rEfi19QTJi10c0k65j1K/GSzPdvF+TvuaJlHCXkQ\n1s3uXRuGCJVsMgvkFjknjhtZk4EWf0uqxWghVCu8t5xpEVec3rNO3Vk0EA0J\ndyEw7oF7quKdt31f7P5LJqAUR91+Z3eWuLti1dSkZByf8PMx2h1NA76rQHMJ\n5AdRGRuqvXJyePAES3MCrmsBmiZrKG4LUpC7A9+YX9ArMB9VBGV0Urmu/XqL\nrRQmCiyaMpd61OLOQARwisQI6xvYXWnz1i1XsEYWgSiv1cU/I1PLiFgLg6g5\nHv5lRenitGMQaHlheErPTYHtGprzp3luGjfm3inLQjk9Cuf8tUbI1XSJvl4R\nA/0sbKaowDcMn9ihKHwmwleEm9Rb0eX9fYQSitZsCMHnswwiPrGvAJwXcVp7\niAEMbV+O53cz/jtdBNn22hUlGpLMPtwlvgz8XsR/TJZS3H3xbCPhUJ8uvZv6\n6d0IU2Uj2wjS8urSw2XAAlVilo/Yh7WVG68o98uZpqAPXn/cEfbD+kKDvYMp\nzTNYReG1zy4z1mbipZ0rGo0Cx/iBhpDIKNONmvoaCmEfppuU8OzKCU8ir9Er\nyZDH\r\n=nXND\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","engines":{"node":">= 6"},"gitHead":"95e0d193ec02859f1bdcb08785e21f86942fc5e5","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json"},"typings":"typings/index.d.ts","_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.13.4","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"jest":"^25.1.0","eslint":"^6.8.0","standard":"^14.3.1","typescript":"^3.7.5","@types/jest":"^25.1.1","@types/node":"^12.12.26","eslint-plugin-jest":"^23.6.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_5.0.0-4_1583213736290_0.593589778400347","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"commander","version":"5.0.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@5.0.0","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"dbf1909b49e5044f8fdaf0adc809f0c0722bdfd0","tarball":"https://registry.npmjs.org/commander/-/commander-5.0.0.tgz","fileCount":6,"integrity":"sha512-JrDGPAKjMGSP1G0DUoaceEJ3DZgAfr/q6X7FVk4+U5KxUSKviYGM2k6zWkfyyBHy5rAtzgYJFa1ro2O9PtoxwQ==","signatures":[{"sig":"MEYCIQDxmxPpv3vFDxpNEVv2z62gMzWfbd7qGdgH/twpS6IArAIhAM3YN20gjeU8uoX5pq82Zthx/+DNoMMy7OavKSq5vFSh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":103192,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJebC8OCRA9TVsSAnZWagAA2tIP+wWxCWJU32qgy6hq7y3D\nhPASN47V1YIbKcxEHrMrBwf4pgbI/gwdw9YcnTQ/mn+7nd2+ULyGYf3vP58i\nBhTtJF6BwOPj1tpyroQOICHOMm7VEzhsWOgtAqP6ItaSTIwvrqCDmPEY2iNP\nFwfKFkO2IPD6V+2yEYuWljY/RrlgWrqfeswu1rZxXAg98rwGR9AV8V9fq4rX\nGCcBBlMcZ9tOwGcZFE0VGq+lTHBrBUDICTnv77CzyABkfEbJgyTryRWw7wPb\nTW5JuHlob2NIAsUS+TFK17ixDZeU8opItU+WLm5/31OBWgMoSlYnLsDTO0Sa\nAemAazg5ZAjYDYTXHbxJdGfLOZzQvLKOR1WNLZVNThcdJ0MuHDKOFniCA0Pj\nBIop1IjRiMTOeA0K48SVm03gLpq2dz8AVLf+ikxOoP1jYDya5vezABKDU7qt\nih6d0vb7pdbAsGh6/5mY+dWnXGlp+shTVbjaMBEhiXh5GCL/qfAQQv73gASm\npPAL7pYEg1s/Moo8422Xqx3wSFjj4oXffy+u3/Gy6g6Z4rNfdO2zK7M4daCi\n9k25IQ7ynZaq+SsZcC31Vc/UVbvYaK2FLjH4fofKIgqb4hw1RlEVu+njrLiB\nP0y6xSswgzy1VRiC4Tyn7OhEedC+iKBcSnDr/Zbo3EAnm0EEe7f3GDg6Xd+D\nPZQB\r\n=x8qh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","engines":{"node":">= 6"},"gitHead":"2aad525640d5885d9f51ae8dfe07a01c280cf4e3","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json","typescript-lint":"eslint typings/*.ts"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.14.1","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"12.11.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^25.1.0","eslint":"^6.8.0","standard":"^14.3.1","typescript":"^3.7.5","@types/jest":"^25.1.4","@types/node":"^12.12.26","eslint-plugin-jest":"^23.8.2","@typescript-eslint/eslint-plugin":"^2.23.0","eslint-config-standard-with-typescript":"^14.0.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_5.0.0_1584148237584_0.9651249025797677","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"commander","version":"5.1.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@5.1.0","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"46abbd1652f8e059bddaef99bbdcb2ad9cf179ae","tarball":"https://registry.npmjs.org/commander/-/commander-5.1.0.tgz","fileCount":6,"integrity":"sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==","signatures":[{"sig":"MEUCIB1FQcMp2VtJHCVeVAZ73481wG33i9MfSftnJTeg3qJPAiEAsGouRfQtcUo7IFKlmqEB7esXCuIBWwCNDWPtJ4EBumU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":106839,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeo6CCCRA9TVsSAnZWagAAEOkP/1vbabWlRUu3mPVGI6zS\nL58zA0x6phEnUHkY5aTS3+0STAzOhT6bDB7sptNxT2WmTkyoP/U20czuOzda\n5eCeQH2FDhvj9vYPnmE6mU/DejL5JyBQie8UsJS6k3yzmrVNcxcAWu1xNkLu\nvXtfC7gp16TpUBLagTGROhJ/+TvtLTgz4/4p2oB3aI4pr26MXd2UvUfOTnwn\nB0rzbnfkCIovf3kmSiS29R7mWvo8WgHHQ9NKkasNJ0iDYLFaiqNueNeL4bBP\nB/3rS5m45p7JpAYq+uPAYdd/Jsl5EWsF72v/gVXioodDS0uUA4INx05DzWFT\nSyO/teSqVIpHH8/OBWb8eF5qSN29uVOrH86PBgKgTWkIQ1MfpEQfRZWI4Rk0\ngQlLSX8HuLmPCz8gT4R5lI6ccO/L4izsArnPsM5y/WlpAlzYhw2E1QBq+Nrc\nu00tc5EkgBL7L6cN0ceW2yYL+z3zITXcZC4MbLwdpumh7wBn0mTDI6eDzAdm\nNNljdDi4Z0btHT/z2X3stkLbC57ppY5RRzThloLMLLv9pEgznoJ1sxhxX8cd\nzpMpkuM+JPPyBgTuNe/X5AYfi8PN7T/WgrAnUahP5I0+iXhwx0j3PDDOcwty\nJM9j93JS8qsQ5iY6I3o4wSoDXyCzeDjryMUv3Q2jeRmSSCoFpKc9hwo5otD1\nAcU1\r\n=6wNq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","engines":{"node":">= 6"},"gitHead":"64053252cbd5b5434afb7ec3f12c46ad2a352d8a","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json","typescript-lint":"eslint typings/*.ts"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.14.4","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^25.4.0","eslint":"^6.8.0","standard":"^14.3.3","typescript":"^3.7.5","@types/jest":"^25.2.1","@types/node":"^12.12.36","eslint-plugin-jest":"^23.8.2","@typescript-eslint/eslint-plugin":"^2.29.0","eslint-config-standard-with-typescript":"^15.0.1"},"_npmOperationalInternal":{"tmp":"tmp/commander_5.1.0_1587781761810_0.924048830244679","host":"s3://npm-registry-packages"}},"6.0.0-0":{"name":"commander","version":"6.0.0-0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@6.0.0-0","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"9916b52863f367a878732bf88c06782ec656bed6","tarball":"https://registry.npmjs.org/commander/-/commander-6.0.0-0.tgz","fileCount":6,"integrity":"sha512-KKrRiIPOMyRoCI7QrFwZIsRjfJzRqBswzAYWxKo0dXCmktq0Qz04gSHTx/c6oRLhC/BTYZFeWv6rx2jJl9wr8Q==","signatures":[{"sig":"MEUCIE/5X+oCEhqIJ9XzaGFKGdtk3CMpej1R5VLBnEKVS0wzAiEArXzSGXIj8TC+L1Ri1pZ9wV43WDySkSCqGgb3mIUMLSI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":111420,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe7abACRA9TVsSAnZWagAAVnUQAIyaPrFTsn3I85j3GU0t\nEaS+OIIDj+1RqIGOpqgJVhhhOjjiotBR95amnm4rrfgbRoXF6/1eF3995ft1\nQfkdyJJQBphN/RqQ5QdKGIX0NUljK0Gl/TDgxrQT3esL0UocmMzCPPOqKwoy\nKwbU6krqVlIFxj9OsA6GVISBUZ23r5xSMNvGJSWptfji5WgoNpD7drKB1Efb\nJRGGkQ59Ifajen3TtAlfp6x3PvTie8ajPZ8JgA+baaA0hWP0eeORTG7UhkC4\n7D7cUhMyInkv3/ndMin5BJHBS+6wpyAxI1EkNHoJx/6Qicbon76nFfy/2UMo\njUXmIcQ3fUfoqzip82/NNrQiAHggQp0yCbpaIr6yRU4ZQUtFg/cSZPIor2w4\nGnxiFehjzqGMI7HeSxqjcWWOMHe0I55X5N8YOguvjV4TiN8yYbOeN6fIB65D\nwNJG1q9Z+YrTc6BHL/PuaQPsOFkQwjoQbnleKEk98vCLduGocDxm/JOFI/OI\nRsp9mmrJixAFd+9O+n62KWPKWHnVoXGAVqPavsGedDvlYAeJfrFOKutv20D2\ni8pM+/CfyjD9D0A4dpbyLJWZphaeAQWtNRZ3YU9nSpAkGLJqx3AAcbtSv9e9\nMyujbN+nnqWcwwpXUTjmg+t1/HH1F3T9r3FGer7RdY4Q7olAqhPP+AUZVtQ8\nlBVz\r\n=pBhB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","engines":{"node":">= 6"},"gitHead":"fc36472de1e2b0eccf205ba1854ac1acee1be76f","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json","typescript-lint":"eslint typings/*.ts"},"typings":"typings/index.d.ts","_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.13.4","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"jest":"^26.0.1","eslint":"^6.8.0","standard":"^14.3.3","typescript":"^3.7.5","@types/jest":"^25.2.1","@types/node":"^12.12.38","eslint-plugin-jest":"^23.10.0","@typescript-eslint/eslint-plugin":"^2.31.0","eslint-config-standard-with-typescript":"^16.0.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_6.0.0-0_1592633024189_0.9170190131393023","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"commander","version":"6.0.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@6.0.0","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"2b270da94f8fb9014455312f829a1129dbf8887e","tarball":"https://registry.npmjs.org/commander/-/commander-6.0.0.tgz","fileCount":6,"integrity":"sha512-s7EA+hDtTYNhuXkTlhqew4txMZVdszBmKWSPEMxGr8ru8JXR7bLUFIAtPhcSuFdJQ0ILMxnJi8GkQL0yvDy/YA==","signatures":[{"sig":"MEYCIQCVJ7BYua1ulrJbWcCspNQJw1m0YmEOrTLdZbSgqRJjOgIhALLRyb4Rdd21cJyaMoGnYRdxAvS1DtRKIN6JqxD5BHna","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":108036,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFFI8CRA9TVsSAnZWagAAKqIQAKRqf1kM12djMkODES39\n6nX6MN2G3L4FxOy4F6a8sgjisU3y7fyOrGb8PkbEaBw70YLwmA61sK7F8OWS\nm52LfVjrKRO/XksTmK0xnzYDyy8My14Lr7S9rnlswQ2lcjNqoglCnpOwiGZ8\n2UNB+cp7+da23elmx8+ldTYrqyec2c0VmL27YurQavKmvruJ98AZgZkn0BvK\ns/SH0sQRHLrzF0Ye/5oh+H8AdLqKVWe6tjCzcSpPRRKjk/upBovNqO2l10tJ\nefBpMe3z//f6X8hBLhCuR+xktOUBIeHMYd3ND9m8qAqlzrKXlU5mrvKD7pSw\nHVv7sm8SXdpkxxJJjVAJRABid6Bcorge8+rKVZBhZBsColSzsSsftcAvqc3Y\nUaRDb7jgYlKLFYEgqpIN/rY7RqZxpLKaFTJp1N/jYiznXZAGpt8FsfHUSyrM\nciNjrC4UICbzD6MwaKj/ZX7Ft9/qA3f7aQhSU1N/zYeEuTmymNLNESFIJbdT\nnbHN5ykgZoLeyMv2OxPdTfjzQ9x2cg97vm/+u7Oqvx6EQMq4VSErKWmamNKh\nOcQFBHvovabHXAcDJjxcBnQTY4w2wzrwn3UKzO6YMbqxJX+P1+jHapxWKCoD\npgI/KPoUOrdmusPsDVx3uKODpj7EyyvRyy75BWDybIoq/o82c042EmPNm4GP\nLw1J\r\n=P2lW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","engines":{"node":">= 6"},"gitHead":"c5a5e7b70d425d6f739bd84cc622c1d8775743f1","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json","typescript-lint":"eslint typings/*.ts"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.14.6","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"14.5.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.1.0","eslint":"^6.8.0","standard":"^14.3.4","typescript":"^3.9.7","@types/jest":"^26.0.5","@types/node":"^14.0.23","eslint-plugin-jest":"^23.18.0","@typescript-eslint/eslint-plugin":"^2.34.0","eslint-config-standard-with-typescript":"^16.0.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_6.0.0_1595167291790_0.6825361726430099","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"commander","version":"6.1.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@6.1.0","maintainers":[{"name":"abetomo","email":"abe@enzou.tokyo"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"zhiyelee","email":"zhiyelee@gmail.com"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"f8d722b78103141006b66f4c7ba1e97315ba75bc","tarball":"https://registry.npmjs.org/commander/-/commander-6.1.0.tgz","fileCount":6,"integrity":"sha512-wl7PNrYWd2y5mp1OK/LhTlv8Ff4kQJQRXXAvF+uU/TPNiVJUxZLRYGj/B0y/lPGAVcSbJqH2Za/cvHmrPMC8mA==","signatures":[{"sig":"MEQCIGypzeQz/k7rIICljickaOCyDIiitBb4HsDVCz0pdWV1AiARUjUiBgKDh2Wgsg4Yq4D0MANnALWfBzLoPxW/YnyJgg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":111233,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfSFxuCRA9TVsSAnZWagAAkgsP/R80bYbMXPlaEGRMFel4\ndxus1GcGr2hM78XU4uA1bXP7miANDwiMJVEWU9e3IGqlaP4olKE1zXL00JRM\n3XU9lMgE6RaEiM5cCuQGwZ9nqidDZgT26yHqz16mIKTJqVGFOkx7PKC2RA+o\n5hzgpqi7AHjzgz+T2b5U/1isILdFGCllG9oRML3DxQ3MuRzh2ZQUJ7bjwKtr\n/hV06Ka+KXzkNs0yafe2pdnXoZzKQdoIIdyxEnXIroAUcbPRjxLi/igfePgn\niU1rM1lKwr89jglROOmawam+a6SqB6649S+zj0PkTzf+/n+2u4mh5ze25q8b\nbm1AoQhgBF64uFP2DoXt2I032yBvMbC55VfurgkJiECW61MB6w03Yhox9cU9\nSn9i2h+Z8YNSmuJa+lnlXKKafF9gzFx8p8F+5hYYkETzuqqiwqODLJ7my7i+\nNhCtLL1ktnm4xn39Rx7VrqS4i/6m6+8VfPKzinQMXeHXpTrankNKP+Im+74X\ncqgrB4buNQxzrI30kbj4Q4Ixn2n4LPytTeZ0pqNECdpN5a/JIri9mJFzoOee\nZu7wT7zSZxvGLdXJAkzcdAwmQb7Ym1b2mOeAKbVHwhxN/z0YkkLx+ehMkjDX\nizihTyANkKw218VqYap7TzUQ7b/5g9+/snlF5d6EvLuGUaa72QE4xpZDgmJt\nyV84\r\n=FpLQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index","engines":{"node":">= 6"},"gitHead":"9c7cfc07d523faa9577249e5d18759186408115d","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json","typescript-lint":"eslint typings/*.ts"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.14.8","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"14.8.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.1.0","eslint":"^6.8.0","standard":"^14.3.4","typescript":"^3.9.7","@types/jest":"^26.0.5","@types/node":"^14.0.23","eslint-plugin-jest":"^23.18.0","@typescript-eslint/eslint-plugin":"^2.34.0","eslint-config-standard-with-typescript":"^16.0.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_6.1.0_1598577774109_0.7753989550960525","host":"s3://npm-registry-packages"}},"6.2.0":{"name":"commander","version":"6.2.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@6.2.0","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"b990bfb8ac030aedc6d11bc04d1488ffef56db75","tarball":"https://registry.npmjs.org/commander/-/commander-6.2.0.tgz","fileCount":6,"integrity":"sha512-zP4jEKbe8SHzKJYQmq8Y9gYjtO/POJLgIdKgV7B9qNmABVFVc+ctqSX6iXh4mCpJfRBOabiZ2YKPg8ciDw6C+Q==","signatures":[{"sig":"MEUCIQCfyUbONjxqsb0vWknV1phLk8bmh6C1xxcqdt8+zle4kwIgKwKDBLBHJugTzayUPz//D44KVcM9XP66Uq9X3wEmhLw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":113236,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJflOUFCRA9TVsSAnZWagAATIEQAIXPfPigdRxIl67hNDaP\noegoXv5FxcWLBf4Rh+h2Xr+3nJQAbPZ7aafvr4d4lljwaEc1+6S1ybb46mH5\nYYwKpE9hwuomHLOxhp1FMgt871kJlLJ13MbJMeLYLNQK9jsJZaEqbzu7L6X1\nOFCbLX2rSmVKTCLMPOT0jAqytyr5LoG4T8DA6Xm6l55XIhwXjCpGu4MVNUJn\nshzBeTcteNdAhXcb+JBNj95ih9TtBC3sznawtYE1aWKV+OiBIG6jaMKtNYar\nNkdJpefEl8DKbeQoHVE/ImxDzTPgBoocEqnp3bSTZ+CCjJ4gqk32Bp7e7Tx8\n0jicPAgs1d3OoPz21FxwRexlFvZzBTrY3BpNp5CBzG19T+8GR5zb05GYs4tB\nqFMd6TTyNta/SNFZnZ8ZeW3M7a4JpkEWCzdhf3HvUZ0qIqyLw46PTPeXg/2H\ns/o895CUOEnj2kT3+xiW9TKZPFHnE+8MC5Nnt11P9IF5Ael58feh4cxSZHhM\nwrrFjqURhP1e0FdajOe/4ynOR3uT8elT3906vs5v74f+wGEI9Sc8HM1+znNb\nYvKY5kEPBGeciBQYWPHxEI409Ynmvdx4T0lEmXE9jlX0y+kFRsiu/0k91p1k\nmSQ7H6kaeHETNjIMiILRRGUbsAOQLlOmKi/32vi8Vz/RmIo6xI/bSD8CeNDX\nupNZ\r\n=01r0\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true},"main":"index","engines":{"node":">= 6"},"gitHead":"0192d6664a0d52af54ba73e83b8527faa38508e8","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json","typescript-lint":"eslint typings/*.ts"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.14.8","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"14.14.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.6.0","eslint":"^7.11.0","standard":"^15.0.0","typescript":"^4.0.3","@types/jest":"^26.0.15","@types/node":"^14.14.2","eslint-plugin-jest":"^24.1.0","@typescript-eslint/eslint-plugin":"^4.5.0","eslint-config-standard-with-typescript":"^19.0.1"},"_npmOperationalInternal":{"tmp":"tmp/commander_6.2.0_1603593476723_0.15500338892678145","host":"s3://npm-registry-packages"}},"7.0.0-0":{"name":"commander","version":"7.0.0-0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@7.0.0-0","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"b4f780553cbd4b0f3dfe49c7a1d13b088353d474","tarball":"https://registry.npmjs.org/commander/-/commander-7.0.0-0.tgz","fileCount":6,"integrity":"sha512-PJ04PNZn5mXaCHQZGW8WqBvkIgMKwtGPdmL3X3EpJuKZF3hggmrwff9rCUCEn2tewnrbs3jvcJW/F11MJ8I6QA==","signatures":[{"sig":"MEUCIQDIHnL7UiLynfNMLNorl4a9429nv/lpmci3rH9odlNIdwIgKLpAgBprhzHyf2383v0CsGfqr6wNm3LP2lKNSrGD8G0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130314,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJflQPKCRA9TVsSAnZWagAANaAP/2RB3Iuez4YlPglFVNJ2\n1LVDIHo67A8S+MbNHEKsYu9v9ybHoLYMndwpLdiGF03L7xFYaFleoBFJEThN\nFz1l9cM+nOw0BYclJnQqwbnes2Vol+0FVWx1gEKrw4SnYosfadFPqEC4aqFI\nM2r6BRuRi/D9Ypf3JYQlPrStHjzsrhIoqRP5FhDJAUR22ouHU+NMJV52tQYr\nHbjI4LR1AhUwTfy1fkiMF1yXIxUOiPpZJTc17rf0x7iGRvcd2dno7U4YB5C/\nLMxr+6pcPp3l0RWUQbvYjZKlkTJa/C2dKly2cr3XZHCJrQ064rcMLI0mg3aY\nRkd36+aMuy9KBe9keAUf/Y7ZW5w8vhyYZbbs002z/YGw8riNuD4lHpeTAcAP\nUWGJ/mM4fB8E7udaclU33FTfuzKmGWLNeGyjv323IB2hiSb01ONeMn78IQTK\nX5glMXxq7Y9y3PKGy4tJ85kj1sKH6w3gMkpxW2Q3D8gri220mNmDPSGWukNa\n3Q3Vk0IAu4WAsZRkXQSlSMdP3kU0pBFFb4wVdy/pfaGrCTzEVVtkoswxzrIz\n85PhDuALPQh5vr5806k8C//iEH177AlrT5PkOm8YiCLpyorykCuB7Pg9FKDJ\nhDVnR3VKO6J8Y9k76ImuzSwP+DjypA9XcC1J8jKlWaYyx99lBzSKtaD7n+Fm\naRU3\r\n=h+dH\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true},"main":"index","engines":{"node":">= 6"},"gitHead":"0703a4d94794bec546537e5782ac212ce10fd870","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-lint && npm run typescript-checkJS","test-typings":"tsc -p tsconfig.json","typescript-lint":"eslint typings/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js --noEmit"},"typings":"typings/index.d.ts","_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.14.8","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"jest":"^26.6.0","eslint":"^7.11.0","standard":"^15.0.0","typescript":"^4.0.3","@types/jest":"^26.0.15","@types/node":"^14.14.2","eslint-plugin-jest":"^24.1.0","@typescript-eslint/eslint-plugin":"^4.5.0","eslint-config-standard-with-typescript":"^19.0.1"},"_npmOperationalInternal":{"tmp":"tmp/commander_7.0.0-0_1603601354427_0.016890314319127908","host":"s3://npm-registry-packages"}},"7.0.0-1":{"name":"commander","version":"7.0.0-1","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@7.0.0-1","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"c55188136d80d1a0df19ae21c3317fa0bc21c6a0","tarball":"https://registry.npmjs.org/commander/-/commander-7.0.0-1.tgz","fileCount":6,"integrity":"sha512-5yh6ihhjDbdt8nchmjJINF5ttoczMFPEdSn9VBK3v+Yg+SsozGTdonkLf6GFOzKu8o2PwVjYorARioDLgbd3oA==","signatures":[{"sig":"MEYCIQC3bRvuoluiLyGrMeqlj9gX4A7utjnR/6ShYalAaZL5QgIhAN9pMXuiLfEB31XPIAg2edZ2akQC56xNkNGOw9zS+ehq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":131978,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfuYb0CRA9TVsSAnZWagAAvlAP/3o0pXvUtjuc/njElgbT\nLQAbnE0Y8HKHg/kZXKjfvyY3xoBR4XT6THRR9G/ERXmEZkPASewilXa9PbMS\nw5InwSp4KqvUBzTWLXzRp9xjHWf5qJqMF6/2RaiyP0CmlYdaRGg44xsN3Q7r\n47w23Gwj3KkZRF95FDVK1q9vIt/SmLXetZkysdqeulPDNVJwSGXunxjuTgJl\nBVaEb2XR9hPvA6xyg4Jf7EPpUahwpN9UeCdnsPS5dKNu454eAgw0XWvgX2e+\nuZ8DJ6TVuENj2+P35d4fVOS/jw5BReWCg4xOQQqGtgZ8tleXjXp8TYE2ZMSx\nVxcxemz9t3BJzlTbLTECXs5NSJ+BVayROVNy/oZzsk4bg4slBLw3stn1VoYP\nSXC+gVybZcsD1k09qyEFokdJQqy3iX0T0YLWndaoaLlNSKwW6NerzfB+ZUN7\n9oqhhNFLEpu3FS/ezeCzjo5NLpbDsBrsOyrz8xl6kWzO24P5TYm/mzoftwER\nEMbQ2yk+iLU0VbM8+eY8ZZkB9096+eQZBuBFDWcM6u3DP79+bvQ8/WGOE5sk\nPnDxTzVZWogPWh/EfnkvoU4/+N5xF3KpU8g+HzKd65ZJzH9C56s3afklBvVi\nqDN+IzeJoGBq/DYLjHOrOYoMU4sGjlBDGNRjEzlM5ar6UD7Kkb0GdxEBb33j\nLciU\r\n=AYUy\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true},"main":"index","engines":{"node":">= 6"},"gitHead":"e1a6cf43b29ccd7f8976fb432f57236b9af25c63","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-lint && npm run typescript-checkJS","test-typings":"tsc -p tsconfig.json","typescript-lint":"eslint typings/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js --noEmit"},"typings":"typings/index.d.ts","_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"7.0.8","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"15.2.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"jest":"^26.6.0","eslint":"^7.11.0","standard":"^15.0.0","typescript":"^4.0.3","@types/jest":"^26.0.15","@types/node":"^14.14.2","eslint-plugin-jest":"^24.1.0","@typescript-eslint/eslint-plugin":"^4.5.0","eslint-config-standard-with-typescript":"^19.0.1"},"_npmOperationalInternal":{"tmp":"tmp/commander_7.0.0-1_1605994228284_0.8020541804908767","host":"s3://npm-registry-packages"}},"6.2.1":{"name":"commander","version":"6.2.1","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@6.2.1","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"0792eb682dfbc325999bb2b84fddddba110ac73c","tarball":"https://registry.npmjs.org/commander/-/commander-6.2.1.tgz","fileCount":6,"integrity":"sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==","signatures":[{"sig":"MEQCIFGpc0sdG2iBTOgN4bknTSpG5p9ZUtAKMn0XgEd8Mbs+AiBEpET+wpBLUiOIKLMaXwf92zXcCi8zpiVMFb+zkYG1MQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":113457,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf1rYWCRA9TVsSAnZWagAAvYUP/ig9f6oDfuxRTtZ8wOOe\niV22RcHDYTrmrrlB1HVlPUhlcr096FPIYuMpQnQFB3d42tjVSCTdOCTnQAi4\nnjedQscYVg+FiA43AgMRvSktmnPEtQfGBLQB7fQLEhMicHbd0+pJwn5dQkah\nqui3Uyk3m5JxPR8garPFHF2Zv95m7pS26zGPKWASnTGJ5qsQtRAZ/77vZBa2\n51aOhmt4976UMBjDhD1Bfpz+8a3/i75ktP9Vnyqtsw9lE8N6t7meaICBu1nD\nPEli9AHxDHYY4eLnzqMA5I2wXA/QT8tyhh2+khYhnbVTMzj9FNsCroRwwfpV\n/9FHxW0ilnS6J51SPVp7uV9Idzo+EXkf3a45TpMNsJ7o3BrZVqEDGEe94o5E\nCRYjt+ykyJpv5Yh4KfV0lrNBr2BLl6ZvSITsCbxWthjJNNCs1eyoMXpEXb2/\nqKUFvVCdbfMO3OW+AT6ThDsed+hv50YMBeG05KrLpUjdwFq9n2Wwy2Qdu7h2\nk919SyMpuG/GMNjuUnyf2G0O2eYl3Iw5+sgR5gDJIv16jDn/u6kP7EmNl7iA\n6JCjLN1xm2MgPi0/SeJJRfvT74y2qpIOZ7hyf9TeFgZbgeqhyIVRsq4X6vcq\nIH3ppyZQgvHcgt5naNEIYvqUWzpdFfeKB3a0e4V2MHc5Z9YjkAA+f6BbBBMv\n6hYv\r\n=QUiO\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true},"main":"index","engines":{"node":">= 6"},"gitHead":"e0e723810357e915210af38ccf5098ffe1fb8e65","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-typings":"tsc -p tsconfig.json","typescript-lint":"eslint typings/*.ts"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.14.9","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"15.3.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.6.0","eslint":"^7.11.0","standard":"^15.0.0","typescript":"^4.0.3","@types/jest":"^26.0.15","@types/node":"^14.14.2","eslint-plugin-jest":"^24.1.0","@typescript-eslint/eslint-plugin":"^4.5.0","eslint-config-standard-with-typescript":"^19.0.1"},"_npmOperationalInternal":{"tmp":"tmp/commander_6.2.1_1607906837996_0.7689641689438","host":"s3://npm-registry-packages"}},"7.0.0-2":{"name":"commander","version":"7.0.0-2","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@7.0.0-2","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"5df69e0962ae9780eb5692f55b2eb650de8f6b02","tarball":"https://registry.npmjs.org/commander/-/commander-7.0.0-2.tgz","fileCount":6,"integrity":"sha512-ezxiUopEH3fSd/sI0UTlhwR8EXjrgMOCphZGTMqhrjJvQNsrbU2E5KOxiUTPaZDxhYDFZnBe/GDSpcI326MTAw==","signatures":[{"sig":"MEUCIQC0Q1lj6Kan1D5J/rdlJ+bFoc64HbYyXZ5EKvwcqfCAGAIgbu8ozkdgYJbVD9NwbHgjCl3iVPi2vYodeeG56ynWHew=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":136384,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf1xjeCRA9TVsSAnZWagAA4asP/iClE0JY9NnFa6aSO7Al\nxjvpaGghePxjOB2vRP+1gCQzcinf2SXeLbSxGzaKpSxHHuyFMCZBjhqvz+YE\nQEDJrP7r9stYIfigiLHpeZGnH03OU1zD3opTNumjEC3himziTjdBSaS+SvrV\nP9x68e4u9E6fj9A4cJChh+exbX8nxhciNlteDY9LDRHcVfXECkW24+g60O8i\nAd3sLMGE9BLSPTxENcJFllZWtvLoR8Jo/xrFWi9QbpZ3kMf8YITdZ25K+7qJ\nu3vdiLOICP/WatQ3pkAQKeuwt/jOLm1XJMkfJV+GnfHPATbqP/c529RLrJee\n11188PB1nZjyNlz6lKh10WLfpe5cqdDp+fylIrxJ5zW635xEG0gVpRYYJXNB\nNNTRMtdb9561UQDWQh7tqWjo8RZQcWHUyqlRJu4mprcURVSPSCCR2ZsPENyM\nT8Dll8V5Ve8ctEaVzWeqeft8f62VlvaeCG9N1xPtmsRFP84FpGPIqvq7Q/7F\nwA7hhl/sHrjzTJyUoBnNUxFlreMEWIsrA6428VOFF/ibadM+nrwIYoMK/HKK\nyLWwKNZAX5hmPVBu69YiJVhqT5E9EjcJdJ2aheyUqnSy0bDpEHEJM+dWXqBO\nFhBEMGrfIN1ov8mSx976OxmTgV8onX2KbNtPDqdKKO2eNMbAH30PBGT9rAeK\n1+pN\r\n=5qeH\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true},"main":"index","engines":{"node":">= 10"},"gitHead":"4b43f66f868c3810467cae811fe9292382dc7e22","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-lint && npm run typescript-checkJS","test-typings":"tsc -p tsconfig.json","typescript-lint":"eslint typings/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js --noEmit"},"typings":"typings/index.d.ts","_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.14.8","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"14.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"jest":"^26.6.3","eslint":"^7.15.0","standard":"^16.0.3","typescript":"^4.1.2","@types/jest":"^26.0.16","@types/node":"^14.14.10","eslint-plugin-jest":"^24.1.3","eslint-plugin-node":"^11.1.0","eslint-plugin-import":"^2.22.1","eslint-plugin-promise":"^4.2.1","eslint-config-standard":"^16.0.2","eslint-plugin-standard":"^4.1.0","@typescript-eslint/eslint-plugin":"^4.9.0","eslint-config-standard-with-typescript":"^19.0.1"},"_npmOperationalInternal":{"tmp":"tmp/commander_7.0.0-2_1607932126335_0.020094620686481157","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"commander","version":"7.0.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@7.0.0","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"3e2bbfd8bb6724760980988fb5b22b7ee6b71ab2","tarball":"https://registry.npmjs.org/commander/-/commander-7.0.0.tgz","fileCount":6,"integrity":"sha512-ovx/7NkTrnPuIV8sqk/GjUIIM1+iUQeqA3ye2VNpq9sVoiZsooObWlQy+OPWGI17GDaEoybuAGJm6U8yC077BA==","signatures":[{"sig":"MEYCIQDZzPLrCSqglA2MMIXAJgTBpuzEAd27SS5X3U7i4nhWtwIhAMPaKjMoORc2kREPyV8ccq6iRKUIovJunwWDgjVRsIQ3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":141730,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgAWSlCRA9TVsSAnZWagAA6bIP/jKECd4+HOOBFE8gL3q7\neTibJKKsTe9MT5h5DXjNaayZm19M7Ak4kieI3/zMtsOfbGLK00KxbIyuhQUJ\nMJ46e9xQ2IuylI8xen4WVu+QObQO+C1377pfEPBD16dhnN8onb5qBlicOpVu\n8SNgEJETQ7uICP0p+Sajvn4F5dIQZujKT30xU6xVhJF90Zh3Nh0GeNjp5CBn\n8Nrrr3BOy8/stzPKopY9sL5BekkbUyjRXWLJEe/eN3i35XRnrH8Kb0SZXHz3\nMDP2dkKzOsNZrZXL0jha9xyxtaS5KyBfwMK9uVkp56PACY+YNWhhxw6u3JYp\noyKHBrpvhNGHeZ6+3MT5Vm1Ypeju/BtW6pHK5v+wdNgukcH2M3iY9bw+UGhO\nJ5/2ONrpin+iHZHX8dCwErH0utgO4QYX+o8iFnoQw0P32u9vnkz7uhROR0NF\nUuP0xYU9+W36xVPRsB8uKXDfqT7kniBdTziXhPTuF8VyaRXDiViVfTDUiczh\nPnBqaRGTGVUqVs9Dmkk3FEsDXf1nHiWcgKDwiTR7MdwcELPIEb1UFhgtJNQP\nAGktBMiajSbJ2rqx4w641L7rnWLqsFoN6h7jj7yrC6NrzzxzcRWlbgbvO8Ei\nr2PsgrVkje3B9ujaenaI1mkaK6bsS0Byj47xWXriXd/ewSHkL3NElVuwdiEq\nvqd2\r\n=8edf\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true},"main":"index","engines":{"node":">= 10"},"gitHead":"034ad9f326ee2b26001b864adda5fea465ee148b","scripts":{"lint":"eslint index.js \"tests/**/*.js\"","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-lint && npm run typescript-checkJS","test-typings":"tsc -p tsconfig.json","typescript-lint":"eslint typings/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js --noEmit"},"typings":"typings/index.d.ts","_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.14.11","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"15.5.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.6.3","eslint":"^7.17.0","standard":"^16.0.3","typescript":"^4.1.2","@types/jest":"^26.0.20","@types/node":"^14.14.20","eslint-plugin-jest":"^24.1.3","eslint-config-standard":"^16.0.2","@typescript-eslint/parser":"^4.12.0","@typescript-eslint/eslint-plugin":"^4.12.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_7.0.0_1610704037116_0.538056848331937","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"commander","version":"7.1.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@7.1.0","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"f2eaecf131f10e36e07d894698226e36ae0eb5ff","tarball":"https://registry.npmjs.org/commander/-/commander-7.1.0.tgz","fileCount":7,"integrity":"sha512-pRxBna3MJe6HKnBGsDyMv8ETbptw3axEdYHoqNh7gu5oDcew8fs0xnivZGm06Ogk8zGAJ9VX+OPEr2GXEQK4dg==","signatures":[{"sig":"MEUCIQDedEMG8CddTIoczuxvjC6DZr+JY1xo2tVWms1LPptRIQIgTP+LfNHQR9ZcQ91LDhGJxnuOM4anJ8EI5Cdwh9V6zGQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":143520,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgKiG7CRA9TVsSAnZWagAAF2MP/3lJPrZx51HV9ixvKakr\nMbu88wHvSmbvpQT+C6rULEm7cqeNd2Z5zif2++TckXvVvbsmOwD5Vjg5Miw4\nLsR1JnufHrgNDSSL3dXiksYjFHTijgitDGIXD3CcAKOSBLoSbOua4nkGj70u\nG0InzexV3QqpXNgguHRfTzuWAKw21ZMfMxK1Xy3/WuoNTha2agTKjury7L/z\n6QYR7CH1NOW1tlWM0M6EUxVH29IicgN2lPCPZ07B5w8A4sWleV18UtncsSkn\nC6+3jwz/SnrJXbipl0ngOUsNgbhNEEa4nYen/NraTjP6D595wry/3hCMTCgX\nCyZTWvb3HYuFO2uJyuTqCRI5X9kEafkaiUAzNR0n5+mATGy8YTTR6NPJTb5t\noAJcaIdIhTKksTmkczpgcpQxdXWkrZohS+e+BZsNIzrIFlkZ+R/99qcp+4zg\nVg9kKYknxzJzUK/lTmf3F79RPa/nNCcpdP+S1mlqlAowz/8mxnFMwaJVaPLd\nChQghCu6bUtVpSJ3lY+skH8Nrt2PJ7NoZT/Kg3VdLLMctsF7RFoheRZ1t4hz\najZwlCtqt7A1E/gMdhBBZ9buiY/kAB5lWbE7aXAX5bQsEPVeH5QRV11KImRK\nxohv4ykTRXXrVuOoTpT4PdwJwdL7/r0fXqymuA80izOkTJx8eCc0obZWnCYQ\nliPe\r\n=E36w\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">= 10"},"gitHead":"4aaaa9de3fd09401afe3894483193ba0e2e512d7","scripts":{"lint":"eslint index.js esm.mjs \"tests/**/*.js\"","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-test.mjs","test-typings":"tsd","typescript-lint":"eslint typings/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js --noEmit"},"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"7.5.3","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"15.5.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.14.0","jest":"^26.6.3","eslint":"^7.17.0","standard":"^16.0.3","typescript":"^4.1.2","@types/jest":"^26.0.20","@types/node":"^14.14.20","eslint-plugin-jest":"^24.1.3","eslint-config-standard":"^16.0.2","@typescript-eslint/parser":"^4.12.0","@typescript-eslint/eslint-plugin":"^4.12.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_7.1.0_1613373882385_0.7205821327578177","host":"s3://npm-registry-packages"}},"7.2.0":{"name":"commander","version":"7.2.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@7.2.0","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"a36cb57d0b501ce108e4d20559a150a391d97ab7","tarball":"https://registry.npmjs.org/commander/-/commander-7.2.0.tgz","fileCount":8,"integrity":"sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==","signatures":[{"sig":"MEQCIBflDnZJYcPmn5yXDFWwb4LBZUuBOgEJi9vXWkkVGnvDAiA+SOYBJIcvrnLcyhTsa0RQlj+iRp3vQBT+kTFM4ZDDig==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144710,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgV8EACRA9TVsSAnZWagAA8+wP/07OyprjrjtHW7TDf7ek\naIJdj4jqxdT3v9io7Xv1gp4c5GodhB4ACE4GI8XcF0T0ARZIeFTFnUlYBhz4\nfkTf4YOn5gbSKG7nhpDKKm3LEHpOSstnjsX43DCR/eZfQMzRxsmYpj+jL5Rp\nrS7ATBCiG+H9ULsL79Yb5EiB6txsUX7vkmBgjsfZK8h0/qtBU9yWIgtjokas\nrWsUD1PnMHUYzUoCsJzrE2Lh9tVud7Jq1ujTeu9roiwEmvf9Vu6yHv81b3KY\nwFmt7hkb7oa2AvhWIwZxsEF08AmaBmsbO6Y3GK1FojAiKWZW3f8ixnws92fA\nlyoVA1QP6921UZ8zUOODFYpjztKwlBrx0t/6AtUGAkQDsI/v71p6aeulWhYZ\nldz0O3wduc0LYgjn0/M2VKP5bKLJdK9/MdAK0YHLFZfJ9hirVNK9JHO/8UhB\nwrWLLMmPVFSa6M55ibVdU+W2TDvWE40gt3VGEC39Blu5VKCpK8K/v30iv8sm\nAtDl9bFogJvcjryYwSdHN+LaxMee5MnUEvE8xRyNJaHFoKMeVZ2b4LTY8Ges\n/4pXzZ17u1lNnwkLSKs1pLajGynZbi8Dcp1v+y7AgfqShecaLWvdlwO+o35L\nf9eZcxl6QWf0VWFuvVPGP/xOHt/Pz5qd66IoegXCpOsPgtnmAAikf5KHcp9l\nYIid\r\n=Lt+W\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">= 10"},"gitHead":"327a3ddd552f90d1dbd37f55fa7a88b9553468ae","scripts":{"lint":"eslint index.js esm.mjs \"tests/**/*.js\"","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-imports-test.mjs","test-typings":"tsd","typescript-lint":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js --noEmit"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"7.6.3","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"15.5.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.14.0","jest":"^26.6.3","eslint":"^7.17.0","ts-jest":"^26.5.1","standard":"^16.0.3","typescript":"^4.1.2","@types/jest":"^26.0.20","@types/node":"^14.14.20","eslint-plugin-jest":"^24.1.3","eslint-config-standard":"^16.0.2","@typescript-eslint/parser":"^4.12.0","@typescript-eslint/eslint-plugin":"^4.12.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_7.2.0_1616363775881_0.05048079648507575","host":"s3://npm-registry-packages"}},"8.0.0-0":{"name":"commander","version":"8.0.0-0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@8.0.0-0","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"581657335fd53b1bbc3978341f66d7dea8cec239","tarball":"https://registry.npmjs.org/commander/-/commander-8.0.0-0.tgz","fileCount":8,"integrity":"sha512-RChUqiJ5hzjkLJ6V5Gcx349TFXiB4FLNgZKRHEhKAe37gMsgByfsUi16b7IuYFYm4gN7aFibfhuIwyKd30v0Jw==","signatures":[{"sig":"MEUCIQDRSEa/SXDctqdW6heLxwGEWIVeVX4AVxtUkIJ+0hIe/AIgClDagsfT2RY+C4hyIEcefLyCkPPyjrryQ/jPCtsvniE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":150807,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgqZQ4CRA9TVsSAnZWagAAjLcP/jF18uFOobuHGv5McMy/\nK0qcwWW7fDOJi2yrkWI3VFder5wYyMhHS+t0CUIuK/MLus41cJe0OFAL+3qz\nLDIY3H2QLcPjvnrzY3eDxxNY6baW3QvQpfsQrCRo9iVmF3zimJnHQpTFzpZe\nVfhJvcomTgtxGxlnDtd0XLyvD4VMe2QLgYK0JwnMmZQFRZbk7Tn/nGNGGYNb\nm5DTN2vXKTnvziT95l3CFI4rUlK0R4L4ExI/fWmo528ryKR4sVCYw+9Do5A7\nR748SCdQcBpoYn0VQLYFEbHCL+ocLF3vCuAssUmT/di5mEbHsMu0kTznMg4j\ncidZiODhG/OY6yoqrHko5PF0Uigv4UJHRbjG9kQM7Wd5PL5mHDD1qGJ5bVmd\nUFd5oOoM9o1OfbFgo5+DUP28Wd33IXAo3X5cpPtAheY1nyfxoECkg8TlHsmx\nOyAU0xFTIhxVewo+WTKXnqAf5M8+/z3emYyjsGtjP9IYgsyO2QC38C1iBd3j\nRajySx6ryMlIVNsuZPb8wXRvUl5ZMqhfO1/egI0fEnSYJ5rdNH57awu+9EZH\nsoHiLHcIEh5PP/TWHn5puVqZ5BAjphi4SAW4tgjSBYIztccFk+JVLt0TT3or\nu4uS7A3bD3KrFP1MA6nxkDpNCExfF4/bqHciwMqpzQz6drI4qM+sIkBQOcCH\nOozP\r\n=gU0F\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">= 12"},"gitHead":"ff7658cb0ddcf20cc13f7b792634867771397eac","scripts":{"lint":"eslint index.js esm.mjs \"tests/**/*.js\"","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-imports-test.mjs","test-typings":"tsd","typescript-lint":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js --noEmit"},"support":true,"_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.14.13","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"14.17.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"tsd":"^0.15.1","jest":"^26.6.3","eslint":"^7.26.0","ts-jest":"^26.5.6","standard":"^16.0.3","typescript":"^4.2.4","@types/jest":"^26.0.23","@types/node":"^14.17.0","eslint-plugin-jest":"^24.3.6","eslint-config-standard":"^16.0.2","@typescript-eslint/parser":"^4.24.0","@typescript-eslint/eslint-plugin":"^4.24.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_8.0.0-0_1621726264093_0.7665670974009267","host":"s3://npm-registry-packages"}},"8.0.0-1":{"name":"commander","version":"8.0.0-1","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@8.0.0-1","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"beb815df52cc9d0e1afcfff93b0f94b79a62a8ba","tarball":"https://registry.npmjs.org/commander/-/commander-8.0.0-1.tgz","fileCount":13,"integrity":"sha512-tSrRWF7x0QOO7bjPJIWxOmFtrqcUGWkyp4zANM8ZholgD2gtw9zRNtM5RtbQyOQAu/qp01tnvyFmP8KrlXokHQ==","signatures":[{"sig":"MEUCIQCmJvqZDOONkS/vyQPIltQYo7XoLOk0W6XieDSLda2qiAIgF+C3kG+d+c7pQiDVDH0JYXAwCIh1M2PlaHHn1bVINMo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":154621,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgtJCTCRA9TVsSAnZWagAAdu8P/0NtcPdmNQr8w53gSQbd\nonUl25G8i89kRNIqJCIF50SKl1Y6rSYwve5yvoBcjgV4SbO3TJPBiVA+0mur\nrOCK7vsckxsamxlAV2rFQA/6+0rwxn2fmrVkSfGqEdjAsvzUW7pBCnnCnPkB\n01xQBdYu8fddsGUZmzscnwUSwXQSk8eBNFdIiBU1gKko8F+rHxdiTALw5DUO\nIAJP7z/hTJtZ3bfYrAil6p2E24v/KnALQznQiVNpf9U85N4rRxN4RPcFSIOA\n+1ce6tmu4Mo4tq/KMLGPBXztPMsC1MU/zpJYqRQz4I0S9kxiO4e2R8IfhtAd\nCkWqCI5+LBJSHtK5gP4+1nd6DlznipyOjlCMOa1AvOQddRaGx4dFKXTMQRXJ\nGunSutktE5bxxT/OI6hTbKHPjjtgF635ecM/1PQ1E8R0I35xUdDfx5mZMWGs\nk0cLEig/rDYnghpufnx4MfcZUeE3EFnk/OXo3UvH2QMakGl0lZW0cCQpE8ws\n8qBrkqcStjKepqjeBj8LigbpgN/1oZDsCDQQB8X54xhTqseTk2fZjT8jfDZN\nucC8UrEqB/Gd7kgSafPU14bOkcnZQgbaWKXzT2vKAynd1BeRwtIXL+F0hj7+\nHCZdBdybZtIczAumUTNg2uRLnZJk42hhnQ6queaYjnAfa7/cIdl32OfJ0ALM\nxbUz\r\n=6HJ7\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">= 12"},"gitHead":"5ddc41b5503114b50cb6ac6e91baa8fa25a834a5","scripts":{"lint":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-imports-test.mjs","test-typings":"tsd","typescript-lint":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"6.14.13","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"14.17.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"tsd":"^0.16.0","jest":"^27.0.1","eslint":"^7.27.0","ts-jest":"^27.0.1","standard":"^16.0.3","typescript":"^4.3.2","@types/jest":"^26.0.23","@types/node":"^14.17.1","eslint-plugin-jest":"^24.3.6","eslint-config-standard":"^16.0.3","@typescript-eslint/parser":"^4.25.0","@typescript-eslint/eslint-plugin":"^4.25.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_8.0.0-1_1622446226702_0.225051785341156","host":"s3://npm-registry-packages"}},"8.0.0-2":{"name":"commander","version":"8.0.0-2","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@8.0.0-2","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"b661866c4fe85f254f94e360eecf0b631792fba7","tarball":"https://registry.npmjs.org/commander/-/commander-8.0.0-2.tgz","fileCount":12,"integrity":"sha512-Eo8GQchZJS3CORoBTljR385shpHd00uYXBQPRCbtEy4P2f4VpwvV5+AKYAhc7QLxVj3I/cR6nHq0MaMfnPuVbw==","signatures":[{"sig":"MEQCIE9jTfM3Q5xSMucFitHv+36JTJYnz6gLnVRDuMK3ZDtkAiA/WDiMXZST1L9HCH0OqEN1A/WTgmeFRL5n47LJi9AlyA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":142662,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgvFDKCRA9TVsSAnZWagAAZ5oQAJNNDQO+Dr5AgWuixCrI\nRu/FimD6JbTW/r6Ay+D8cDiHW0ihCfaxKEaqSBlxQyIRV5Q/2PfY82UstWMp\nPrKVQ2CSzjTq1SjkVNBPOXrnuOQcaA9M+zL0AgqZXfrorALkuewEc5n0pzBZ\nBaET6CUGvTrhI2JtIxGLGluCM36pbVWUDfIhDkWjdciCHY9m96JwrDnQv3lP\nY4pATulifZf9JAapfI8ssy1mcllq9ZpCwFcbUHXvMPPox7/VRjZdkyky5l41\n4nC6em7yAGVybU92K8Pl4T5caklfUPlpy6hetev025JqBo5Q7aVLcujDtkrA\nvsIFM89I/0l3d+kEBjj896n+ZbSUOjArvVrGRYCpKfuDwmMLZm3TbCIrBsRq\ngPfntAlbKj6BX6ig2BG8Z1TIHdqaDWKPjs5iXHNNV7wc33NShy8e3+z63nmB\nCZLVtPw3EPB2gshHcMgyAiyWXfKqIsmIwT2z8P96qiqokN9Y0Lp0oREk+aTg\nISbzqmak7JORpmjTjZnZ7vQvK2jujV6IPAv2TpVxOWTY8HQJZi7lZOyrDkbl\nJS4UViOfEJb/kCOL8qMi/p44fr+I475pILTPWrwTQ+oJ5Fj6rCJCH7mk7pte\nddrJmpuJOk6sm5rhCaUJrSoZr0w/quyJJFPIvtWE2M2z4/bhOVFvn3KSHHJE\nd5Q+\r\n=GEhw\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">= 12"},"gitHead":"0e204e8babbe5290c8e3670fc8d9b8f6da6b8c29","scripts":{"lint":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-imports-test.mjs","test-typings":"tsd","typescript-lint":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"7.15.1","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"16.3.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"tsd":"^0.16.0","jest":"^27.0.1","eslint":"^7.27.0","ts-jest":"^27.0.1","standard":"^16.0.3","typescript":"^4.3.2","@types/jest":"^26.0.23","@types/node":"^14.17.1","eslint-plugin-jest":"^24.3.6","eslint-config-standard":"^16.0.3","@typescript-eslint/parser":"^4.25.0","@typescript-eslint/eslint-plugin":"^4.25.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_8.0.0-2_1622954186266_0.5783033530962387","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"commander","version":"8.0.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@8.0.0","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"1da2139548caef59bd23e66d18908dfb54b02258","tarball":"https://registry.npmjs.org/commander/-/commander-8.0.0.tgz","fileCount":12,"integrity":"sha512-Xvf85aAtu6v22+E5hfVoLHqyul/jyxh91zvqk/ioJTQuJR7Z78n7H558vMPKanPSRgIEeZemT92I2g9Y8LPbSQ==","signatures":[{"sig":"MEQCIHcKA69zrYUV4bnOXkidiiE5MigBOHwIb1AOzIXjrT4aAiAunx3RJuJw80pxhM+6A19A76tq+CC1do0m65TtOtKIhQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":142660,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1ZKwCRA9TVsSAnZWagAAt+MP/j0fXBaAOV40TEeZwDP/\nO3adO1jhSYPTP5pySjHfo5plUw5Ynvd4MzWXwvl3by9z1oqNB2MeODH7S28c\nBXqy1xI0K5iI90jSu8/ObQS47UGpTIOmgZn1643h1C+yI0Ha279nuloj8BkT\nDOCXNXIOYq2yxy62SoziXiNpjLcjtouv7X85cqF7K2gOSBbHXQV6f9+6L5JN\nZxgP1+UOtwpT0i6BL1ux5fHhnaOm71Wwo8O98mlWfqZi+JOEpSiVPMYXN782\ni2DcVAEEMCv+HCFrhbAA/bGGAqv4bnxqsQ/V1P9NCA50ZjIS5xzidCA5rvdQ\nokdsxK7+yF4DSJUHM92mRdFl34RNQ+8Sug/Vg+/ssGXo3CJaC2eK6+cFBI6w\nd66Fpuqs0E6nuNu9vWEpOhZ70EOoD2LW5f8ED3fsiLe8P7+R3Ks2AfzdkHQi\nlrKHKHNcEk1ff+E3yB3R0Ont6DD3Jhe7v8euYMc5JLWRd/dbd/ZUuQIEtTVO\ndsqwMyQKTg+JPhZV4x8lTuwX0ay01kKlK0Ut/2mXwWRu5xeXIVI7hQibA/jP\nrAe3p2wtN/RIK7F8cPeE6oXXKOunYgN65zkTWZGyYxjyGvhTHnGd+E/0oNiz\nWk95Li4UsUSOhHmqoqJ/v22AnZtZQMPTa3o2qzZI5pnNvYGqU710r0LdUXoM\npOPS\r\n=jWYQ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">= 12"},"gitHead":"80054ba3756853c1acf80e168ee7d44b63ad826b","scripts":{"lint":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-imports-test.mjs","test-typings":"tsd","typescript-lint":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"7.17.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"14.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.17.0","jest":"^27.0.4","eslint":"^7.29.0","ts-jest":"^27.0.3","standard":"^16.0.3","typescript":"^4.3.4","@types/jest":"^26.0.23","@types/node":"^14.17.3","eslint-plugin-jest":"^24.3.6","eslint-config-standard":"^16.0.3","@typescript-eslint/parser":"^4.27.0","@typescript-eslint/eslint-plugin":"^4.27.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_8.0.0_1624609455896_0.4408500319550237","host":"s3://npm-registry-packages"}},"8.1.0":{"name":"commander","version":"8.1.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@8.1.0","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"db36e3e66edf24ff591d639862c6ab2c52664362","tarball":"https://registry.npmjs.org/commander/-/commander-8.1.0.tgz","fileCount":12,"integrity":"sha512-mf45ldcuHSYShkplHHGKWb4TrmwQadxOn7v4WuhDJy0ZVoY5JFajaRDKD0PNe5qXzBX0rhovjTnP6Kz9LETcuA==","signatures":[{"sig":"MEUCIEl7B2A5bY36X258Csd0Wun2OqtCJoIv117te9edJCcsAiEAqSvBdDRQWMTjcb9iWpb3PyW8WaSulod/y+iIpcizHFM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":143321,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg/4PmCRA9TVsSAnZWagAA4zYQAJRrf/GUVlaSo/tFUZ1i\nXp5dIJKCj6xE2hzFvi7MEzpzbX9Yx7uAiN4TQ5Xx/MvyXayvo2bo9pTcUrIs\n9CAnqGmQh1CAHJnSxt+bzZAQ/1c+MG02TFrM3W4zMbgcjyEz24sJhh8nhlxI\n0AmhQqtNqVOwgvDdisv66uDD/e0Shc+x4iroouFQJv7+tZGBV/JU0HsZvpgJ\nVreTI+8KldNmbwEe7VGhgc9Y5Gl8DEzPVTisi1B0hJdueQJFunO6mInzBLZI\n6eA8yIQ6krSogha1hCHifcHU8qkZ6BBQUqLKG1O+lVIMhichumwhRKofBU7k\nWKK/fSLhTbfSZusAksAXoyWyz+2dgh4wFRMcNiADYCBymxaq2a75GcH1pdIQ\ndw30Sqb2Ho5SJAvX5cHpLIEjH7kC2QoLdtovgvxLNg9jKtFSloYZy6uZl9Sd\ny2P7Q2OZndZpq/ZwijLA2sXgOB/EoRPPPihDPOVT+K1OIwMor+fdRzJz7ZFj\ndDieqWCYHt3Xjj4bRRLX7l0sDiS5V5/xxl2YWr5ocI7JGf92jGnRGAxdoRxh\n4r/t57LuJ2Sp6GV3F+QC1Ek2OfIVfz/jL+ZModdh0oW2XvfXh4n61iwZa83H\n92R4q9HaBSBhLRQl0cz9lf9hmrs3QmARmAqRrVPlNfCegIgTXKoGY3jAFTAn\nYS5V\r\n=JRn7\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">= 12"},"gitHead":"a9c9f17c7eff96b8da8c2b9d01751d41f1eb0ae3","scripts":{"lint":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-imports-test.mjs","test-typings":"tsd","typescript-lint":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"7.19.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"16.4.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.17.0","jest":"^27.0.4","eslint":"^7.29.0","ts-jest":"^27.0.3","standard":"^16.0.3","typescript":"^4.3.4","@types/jest":"^26.0.23","@types/node":"^14.17.3","eslint-plugin-jest":"^24.3.6","eslint-config-standard":"^16.0.3","@typescript-eslint/parser":"^4.27.0","@typescript-eslint/eslint-plugin":"^4.27.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_8.1.0_1627358182680_0.31172909264133697","host":"s3://npm-registry-packages"}},"8.2.0":{"name":"commander","version":"8.2.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@8.2.0","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"37fe2bde301d87d47a53adeff8b5915db1381ca8","tarball":"https://registry.npmjs.org/commander/-/commander-8.2.0.tgz","fileCount":13,"integrity":"sha512-LLKxDvHeL91/8MIyTAD5BFMNtoIwztGPMiM/7Bl8rIPmHCZXRxmSWr91h57dpOpnQ6jIUqEWdXE/uBYMfiVZDA==","signatures":[{"sig":"MEQCICbMQKxMlq0M38M7+5p1kMbmsua7qRznYK2gcIQRopWeAiAUru7//z5x13mAwnO8Aj5dmQgiGtJXBYhN0ltBi1VlXA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":150526,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhOwKQCRA9TVsSAnZWagAArDsP/0SuFT++uruPwyIyLFCL\nEOKcvGK7Pat8Ze4oAPZO+MfIdjOI6kEDkootxu2IphUxt4ZA3Jfs8E/1ATQk\neL44YdewOj5Atqke3yIjcAkobWdDYdNxYMVh6PuT2QvpYHuSqNBQ8p0c+qh9\nUpLIDv2ZOshX2kaZTiCGVxp8TrilxJLSwFclpbF9lyWekJVhR9ly+ViDMj1K\nFlgG2uC31A51AjGTcKujLEXN2mzyIqDxngYxfB8Xw1nM0zl41cSEjK/Vmsd2\nN7B1UDApsb7UfCwPp9PGuhMZoJwOWqOHT7qjnkHIk/n5QovBu57hP+JeeKMG\nUtLdDTPmmifErOYxyD2WUkcbDUH7/Ai7Ofa2E5Ubi3Hww3gIw7iFZ+1ZxMT4\nQcIFg9LH6mv7iuAEJcvvBJoAZPtdwMubEWYUEDolbQA3YDDNloLRVTf4nQO6\n5CPsbTshU641VQNTtqhCOZP8LYHwiW9c/GuHsXiVEv4sGB9oY5lLPfIxUNLS\nwM/OWn5VDJD4LJHzB+yVG3VNBnB9HzmWe7V+tojaknmBu6NsASmlJBaa7IxX\nm3v0PAmfwaZFYv7vfbJfSotchOY45xQ+FasjPONG/gyBJNrPifHTZDzwgrXB\n2l6nWGfjCZAnxo3a3MCdLeKygD3EhEB/nFq1/4wNz1JNBdnUMwaRibXuteTb\n6P5q\r\n=ig11\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">= 12"},"gitHead":"950f742e60ae6b30a3d4e945db6d4322919628fd","scripts":{"lint":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-imports-test.mjs","test-typings":"tsd","typescript-lint":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"7.21.1","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"16.8.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.17.0","jest":"^27.0.4","eslint":"^7.29.0","ts-jest":"^27.0.3","standard":"^16.0.3","typescript":"^4.3.4","@types/jest":"^26.0.23","@types/node":"^14.17.3","eslint-plugin-jest":"^24.3.6","eslint-config-standard":"^16.0.3","@typescript-eslint/parser":"^4.27.0","@typescript-eslint/eslint-plugin":"^4.27.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_8.2.0_1631257232689_0.25638681421232046","host":"s3://npm-registry-packages"}},"8.3.0":{"name":"commander","version":"8.3.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@8.3.0","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"4837ea1b2da67b9c616a67afbb0fafee567bca66","tarball":"https://registry.npmjs.org/commander/-/commander-8.3.0.tgz","fileCount":13,"integrity":"sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==","signatures":[{"sig":"MEYCIQCTvkYjMZlMkau8hM4o9CT1rJmed2t13Q6eXSEo+sGsoQIhAPj0DACacRAViqyCS0davf0Biah/5ZIUZ7l40DkPhQl0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":151267},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">= 12"},"gitHead":"43f4743864e2f670db5eebcf88c92aa4612c54f1","scripts":{"lint":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-imports-test.mjs","test-typings":"tsd","typescript-lint":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"8.1.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"17.0.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.17.0","jest":"^27.0.4","eslint":"^7.29.0","ts-jest":"^27.0.3","standard":"^16.0.3","typescript":"^4.3.4","@types/jest":"^26.0.23","@types/node":"^14.17.3","eslint-plugin-jest":"^24.3.6","eslint-config-standard":"^16.0.3","@typescript-eslint/parser":"^4.27.0","@typescript-eslint/eslint-plugin":"^4.27.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_8.3.0_1634886126524_0.6328909123201889","host":"s3://npm-registry-packages"}},"9.0.0-0":{"name":"commander","version":"9.0.0-0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@9.0.0-0","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"4709bd066c9b2477ded951f68bc381a9e2b1819f","tarball":"https://registry.npmjs.org/commander/-/commander-9.0.0-0.tgz","fileCount":13,"integrity":"sha512-t74Nk7fzdtI4N2lxWUKAUdSmCZlHINFYKgARvo+gXHjHY0MUyTElpiqcJKimiSvZg2cMzjDdTwwr8Qhja1AcEA==","signatures":[{"sig":"MEUCICxDuN3SpVGm4Q8TMl7FJjy+Wte/FGSy3y7mCFQxwQSNAiEA3waYO8mAYBmmoPT9zPjv1iw2dr68bPPvrVt5k+O+Zb8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":156195,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhwruSCRA9TVsSAnZWagAAF04P/j302qtQ+HhQKc38KT4a\ndVn7w6wPQRC7apmpMucVVL/CyEhW9f8XthvP+i55yDnhXdMXNPtl3UcBTc/7\nSW4QwJbkIL7dlyvEYX0mf92JtEJcdtXJlaZEI+vjHssUrHOfyXX0OZ/rNZBi\n+cw/hKfvZfjBU3NhXuHmpgkEgllYbe4B4MEQy8+r+4NR/K7MlFk41bclOt9b\nth1h81viMumcQrTaO2M8Uvnk4s2NRi/wahCn5wsnYdGwgP0hmaWMEEKxXgUr\ndYc8hJ71SJ1NyXxD/k75UNrHW/kUugb2IpRYFY9SQiAlJ7DyKWO+wWQr4hs5\nO2/Lpzt8YgjrA0Wyo8wPHxm1k9DbiDk8i8MEw3DBVl87Y72Rx66cUesQcsHq\nwfTStK7qYbR6OHmpWHZpSdig2FveMuRXz3SKAH6UNvPOwB8XZJDtbeHCk7jR\nYSnln3Sx5+bKi08qM8e0bnHY3aePG0IwTDDxtsor3JWXVHUCHaiDGrozq/ox\npS19vu8+vTcMkj89KWw++5kVVNEulQkvuIenwyzJ9AOA8Z1fpoVOMvppyn4h\ndVOpFMrPdadCTtmQIEJQ6NEqWgWwPeA/E4T6vF2xCLam2w/zOpdGN59vSqpH\nFFpU84m1LobbP2e/oNk+rld1LMLGm4dL8wjXwq97KBAZ81YteCIke3BwOhdn\nyTgT\r\n=SSF5\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":"^12.20.0 || >=14"},"exports":{".":{"import":"./esm.mjs","require":"./index.js"},"./esm.mjs":"./esm.mjs"},"gitHead":"253f4ff7486e4e1ae09ba35d16964f45791c6a7a","scripts":{"lint":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-imports-test.mjs","test-typings":"tsd","typescript-lint":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"8.1.2","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"16.13.1","_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"tsd":"^0.17.0","jest":"^27.0.4","eslint":"^7.29.0","ts-jest":"^27.0.3","standard":"^16.0.3","typescript":"^4.3.4","@types/jest":"^27.0.3","@types/node":"^16.11.15","eslint-plugin-jest":"^24.3.6","eslint-config-standard":"^16.0.3","@typescript-eslint/parser":"^4.27.0","@typescript-eslint/eslint-plugin":"^4.27.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_9.0.0-0_1640151954683_0.6313204506781085","host":"s3://npm-registry-packages"}},"9.0.0-1":{"name":"commander","version":"9.0.0-1","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@9.0.0-1","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"4e462b5c7d1ec4df59acbf12439ffed46a294d77","tarball":"https://registry.npmjs.org/commander/-/commander-9.0.0-1.tgz","fileCount":13,"integrity":"sha512-arL8xbMrDr6BfDbgS3RHICRBc7hKrLuMZVWyWswvpVYd8jLa4cv3AnEb/DnK8NenvTEJF5NgPa8/K9oiY94ezw==","signatures":[{"sig":"MEQCIBGWcoycjWPRiPOpsRzSB/IWkvEClTWaJlMsNNFvBNPPAiAKXPhznjNuCu661vW2WfvzXzuc3MLWJ6J0joapLqiPFw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":159103,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh4d4OCRA9TVsSAnZWagAApP8P/0MS7jQg5JOwabHTMyzb\njBTpLLnIsCSF8iqsPTLOF18Fj+SrCWnhZej6TsZpQprHZc/3+jqhfC3X+LWN\nUU5WVRFbFW658gkt2SYgfRZQmaBxHKGp8Ns8amqs682b99oqshIm0q3EZLcH\n73EviGJ7acnrIRuFf6FDXy7B11ZtPwDEiWiCKVR5ZJhhnF6+elLisWWh2MFH\n9odViCp51iecvq1VZEout4Avsyhl1FadQMu/sS3vGTYwrApZLDS+WIblRtlC\nuWCT31lvn6x5/cenb94rqWCIL19/KZgQ6ydxQ2qHlYrWxbfTgyn29leoPN/2\n43G1KPoMsi35Sm1iQF4XG5SPTVXZrQkhAHsTJeHIv9B3LYgl/j0kQvd9MtA7\ntW69LNGapOzk5CEqxSo3ZfkVOcFO9vtupG8dKY2QNOcRtgWmGbIiUwbNQ72w\nZR5qUUYAZMMJGigVrViV6JG8VfBhyRkLMnJ1UWyT18+O33m3ph57TVJbDh5/\nsZe/K2BJkaG+jT9v3sQpQpwvRMU+NzT9tWCMRybY9FMZLZ2nADnud3Q4MSxS\nosTqX1lUzguxVoBRXZsLDmoM58CrzAatjGhQlP2cLysNtm1g5nS/QWL4wTAt\nDQWb3YLtL8lEw05J/qi5Ox0/nkctXQ86VNWEYraKSlshvY/i5byYJjNKdV+2\nl0WW\r\n=zj+U\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":"^12.20.0 || >=14"},"exports":{".":{"import":"./esm.mjs","require":"./index.js"},"./esm.mjs":"./esm.mjs"},"gitHead":"c58fe4d32f72b9fd6a6bfb64b499f6d3dfd06bb2","scripts":{"lint":"npm run lint:javascript && npm run lint:typescript","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-imports-test.mjs","test-typings":"tsd","lint:javascript":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","lint:typescript":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"8.1.2","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"16.13.2","_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"tsd":"^0.17.0","jest":"^27.0.4","eslint":"^7.29.0","ts-jest":"^27.0.3","typescript":"^4.3.4","@types/jest":"^27.0.3","@types/node":"^16.11.15","eslint-plugin-jest":"^24.3.6","eslint-plugin-node":"^11.1.0","eslint-plugin-import":"^2.25.3","eslint-plugin-promise":"^5.2.0","eslint-config-standard":"^16.0.3","@typescript-eslint/parser":"^4.27.0","@typescript-eslint/eslint-plugin":"^4.33.0","eslint-config-standard-with-typescript":"^21.0.1"},"_npmOperationalInternal":{"tmp":"tmp/commander_9.0.0-1_1642192398569_0.16921628473830674","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"commander","version":"9.0.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@9.0.0","maintainers":[{"name":"zhiyelee","email":"zhiyelee@gmail.com"},{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"vanesyan","email":"romain.vanesyan@gmail.com"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"86d58f24ee98126568936bd1d3574e0308a99a40","tarball":"https://registry.npmjs.org/commander/-/commander-9.0.0.tgz","fileCount":13,"integrity":"sha512-JJfP2saEKbQqvW+FI93OYUB4ByV5cizMpFMiiJI8xDbBvQvSkIk0VvQdn1CZ8mqAO8Loq2h0gYTYtDFUZUeERw==","signatures":[{"sig":"MEUCIFMXh1L+6s1reN9h9hP+WQ5oZmSa/dPk1Cq3gx3DS8AzAiEAiDdbbzeELRAaIhWdUWKBgtEduAbakvNyKvX5y/hz9Ao=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":159103,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh9IqwCRA9TVsSAnZWagAAKfEP/1+5z7NTXJfEaIXNH3dY\nesLyZFR8SP+Tmm9w4W8howA3lQSJJRGU6T5LywUI5x4yc6HLornpk5nFJnIN\n9B1PTjBlgRl003psudg7EuCZMSbJWL211pwxKqa0kmj5l87S34PRe6wGGaEQ\nBiDTxgt0IUu+a36yA/L06VLwpZeO2kio8z6mPZCEcQwfDCKjO3Y35jr78N3S\nliO/pE4t76pDRqIma8nrrY9nx0mYzeI2GeX+XoqNYLAX4NbBRzsc3YKF5V8Q\nMAvlzDSqTmTwNs8a3rrvigZoTrXqLHkcwlnZz3tweF/xy+WD8wC7KhxjRvve\nbImAVhN8VcVHsL7J2Q6CrBv/mG8yAcmAyTo81cGei/GZJsIQMm4XZ7DFVheY\n57l7Kw0J8xFQPH9MVGW3Mot5a89Fc2/3IqndoIqbo9DwWWdvzLBxzdSA2MBa\nPThFf+5VcrXe71VQCRBWfcvOJ0mUYnwuUKZgPfmMNrR+SgqjaxSKO3tvNodK\nmkj5q8Dq6u2W2O+mGOMlfyytASH6/0LCFA2ZxEu5lBJnBbhb6066qlPpjT+W\nw5or2WTJNSd54WJocIesBZs5ZRXsZWG/eTeDHHQ6MvmzauR5+iYXf9QRYPJt\n7M5TyL3lmX2wGDiovIXZfAlzFRDxq6k/7UxtNdp1UXEgIDxqR46uHGC26nJG\nwj41\r\n=hbI2\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":"^12.20.0 || >=14"},"exports":{".":{"import":"./esm.mjs","require":"./index.js"},"./esm.mjs":"./esm.mjs"},"gitHead":"02a124c7d58dbae2ef11f9284b2c68ad94f6dc8b","scripts":{"lint":"npm run lint:javascript && npm run lint:typescript","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-imports-test.mjs","test-typings":"tsd","lint:javascript":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","lint:typescript":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"7.24.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"16.8.0","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.17.0","jest":"^27.0.4","eslint":"^7.29.0","ts-jest":"^27.0.3","typescript":"^4.3.4","@types/jest":"^27.0.3","@types/node":"^16.11.15","eslint-plugin-jest":"^24.3.6","eslint-plugin-node":"^11.1.0","eslint-plugin-import":"^2.25.3","eslint-plugin-promise":"^5.2.0","eslint-config-standard":"^16.0.3","@typescript-eslint/parser":"^4.27.0","@typescript-eslint/eslint-plugin":"^4.33.0","eslint-config-standard-with-typescript":"^21.0.1"},"_npmOperationalInternal":{"tmp":"tmp/commander_9.0.0_1643416240849_0.9195341872767004","host":"s3://npm-registry-packages"}},"9.1.0":{"name":"commander","version":"9.1.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@9.1.0","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"a6b263b2327f2e188c6402c42623327909f2dbec","tarball":"https://registry.npmjs.org/commander/-/commander-9.1.0.tgz","fileCount":13,"integrity":"sha512-i0/MaqBtdbnJ4XQs4Pmyb+oFQl+q0lsAmokVUH92SlSw4fkeAcG3bVon+Qt7hmtF+u3Het6o4VgrcY3qAoEB6w==","signatures":[{"sig":"MEYCIQDE9y4pIADOIH0JgMymKd82AcrHxQh09VZqqcfonZQaagIhAO2eyxHuUIMPvNekK2O+jG/YvoflHWT2WMcrQOnX7W7y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":162734,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiNB8FACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqyJA/9FLJGLVapbl69UKld2WW74UouICXSC0/3C/99vr8MxMG7qASr\r\n1ELuhEfpZC2cgcgfdFedGUNIRqlK7ldE6lScmDtx7n06HtNJof/wFh6J2mGq\r\nhLJDPOms0v+jin3F6vOfEwdM4+CpxiQcm8yVw0bSCV+kFXYZkAmBgihFyhjC\r\n/eLMsI5OcGLjNdh+pPQIgv0BG9snZXTZxh9v0nt5LRNQUaCe41uUEYxru65k\r\nrPG+1/0Sg/4HtP8+5IVySxv4be6hQOhOJnusu8IdlSbMmqUUghHNe/pnaWcb\r\nXX5I9tKv1SbAFEsj+lMWZhkl+GU2pJgFYyxHPsRW1p216sqoE5mmNMvymNA8\r\nmkBlgsh5LdFq0yQPQYf1NuAbsLO2jXePzkhJW16cfA49X37C87YLnhhMfBFa\r\npADsvuAWKSynoxVDTwSXtdnmqJ3zpeneQX4JRDNqxYP7skSaowgAkTLFEXcV\r\nBPyg4PRd3p6MBNk94LHF+8L8f/3vmAPvbvClrqI/TIgjGhBrgWoEphQG5AwD\r\nm3moX/gdxQv17p3DMkKWEr7k1S34vcFc/69YfNlXRyWsBGwD4d3hmE+7eAn2\r\n842Id1dV36c/uuYx8i03EPUz3l8TXHTzYlZkXZZxA2wEnJkugmKlgip+WjmI\r\noHotsPgtFijECaAJnwGzzpnCoYSGRXyc6kU=\r\n=HqSt\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":"^12.20.0 || >=14"},"exports":{".":{"import":"./esm.mjs","require":"./index.js"},"./esm.mjs":"./esm.mjs"},"gitHead":"5bddedf2496e31c0a5d3eae7b8419b09291cf2fc","scripts":{"lint":"npm run lint:javascript && npm run lint:typescript","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-imports-test.mjs","test-typings":"tsd","lint:javascript":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","lint:typescript":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"8.4.1","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"16.8.0","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.17.0","jest":"^27.0.4","eslint":"^7.29.0","ts-jest":"^27.0.3","typescript":"^4.3.4","@types/jest":"^27.0.3","@types/node":"^16.11.15","eslint-plugin-jest":"^24.3.6","eslint-plugin-node":"^11.1.0","eslint-plugin-import":"^2.25.3","eslint-plugin-promise":"^5.2.0","eslint-config-standard":"^16.0.3","@typescript-eslint/parser":"^4.27.0","@typescript-eslint/eslint-plugin":"^4.33.0","eslint-config-standard-with-typescript":"^21.0.1"},"_npmOperationalInternal":{"tmp":"tmp/commander_9.1.0_1647582981419_0.9145293492260986","host":"s3://npm-registry-packages"}},"9.2.0":{"name":"commander","version":"9.2.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@9.2.0","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"6e21014b2ed90d8b7c9647230d8b7a94a4a419a9","tarball":"https://registry.npmjs.org/commander/-/commander-9.2.0.tgz","fileCount":13,"integrity":"sha512-e2i4wANQiSXgnrBlIatyHtP1odfUp0BbV5Y5nEGbxtIrStkEOAAzCUirvLBNXHLr7kwLvJl6V+4V3XV9x7Wd9w==","signatures":[{"sig":"MEUCIQCIBIQ/rLBbQNE86QY3zNbwqpqy3QYTlM8ck9xYLxv0mwIgX/aJgq/15aQGXrGeioFgCERDQphjPnPt21DQadBZkCQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":163823,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiWSo0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqZrw/+OV277VrhZFxWfjn5vyTuOD8427DBYfvux9Y6n9AUDH8kCTyc\r\n20TvYkuhU1Tk8JoFgP8IiRrhvKc/a2du3BVlgyshdqL8aNCBhGhGpj/DK8H9\r\nZn6jqAuOWR1ARKBS3iTJNLTG4nY5mdqDR0YVCCRGmuFTiiVjq6zA8ue3C8W7\r\ntLZmjnOKSSTfQUdGfiwGRnUdRAFYH3IRX1DI+4FWDynZAe+TDujTByW+ZL/7\r\nZmvOai8gu3DgFQWigQn75bu+MD8qWZrnc5s+oSIN31KFlPdsDpKqnPh8MP0/\r\n3DDq4rcy1Pf6PXifrXTc2HhEFxxs8ZIvOqxmbfG9VQxGfmkW+whe6p8fn3Eh\r\nc+dHMhSqicBP3V3O15sZJLNSsPDevahcJPUunnB09Q4W6C8DpFVvaTUNIrWa\r\nQFIal/dEB5BppGmjs6w9rx/lfrV94U5qXfUbicyHingryWuwXS3A+smZgtXS\r\nccZRxb34T/Omr+WHo288BOhu2V8Nzwhy1xfo7wY7F8Qc+hsGfyi83W+Wq/YQ\r\n1Hsdk22jC+Z4x/INwAFg3SLCAm4Vh2ntzchkClzvZ9/KPOp1qzYixzUbxW/G\r\nECNm94AFORwaOIAvshk56klWPR0RX7odePpPcZJ83vVc2M1e1NYL7pZ++3+f\r\n8XnNmAP9JXG4UvUiuTOe+wKMaFxtBOmykGs=\r\n=cxAB\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":"^12.20.0 || >=14"},"exports":{".":{"types":"./typings/index.d.ts","import":"./esm.mjs","require":"./index.js"},"./esm.mjs":"./esm.mjs"},"gitHead":"6c26370fcba737d9786a34d0e8693f689a067569","scripts":{"lint":"npm run lint:javascript && npm run lint:typescript","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-imports-test.mjs","test-typings":"tsd","lint:javascript":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","lint:typescript":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"8.4.1","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"16.8.0","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.17.0","jest":"^27.0.4","eslint":"^7.29.0","ts-jest":"^27.0.3","typescript":"^4.3.4","@types/jest":"^27.0.3","@types/node":"^16.11.15","eslint-plugin-jest":"^24.3.6","eslint-plugin-node":"^11.1.0","eslint-plugin-import":"^2.25.3","eslint-plugin-promise":"^5.2.0","eslint-config-standard":"^16.0.3","@typescript-eslint/parser":"^4.27.0","@typescript-eslint/eslint-plugin":"^4.33.0","eslint-config-standard-with-typescript":"^21.0.1"},"_npmOperationalInternal":{"tmp":"tmp/commander_9.2.0_1650010675917_0.000026128876978726012","host":"s3://npm-registry-packages"}},"9.3.0":{"name":"commander","version":"9.3.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@9.3.0","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"f619114a5a2d2054e0d9ff1b31d5ccf89255e26b","tarball":"https://registry.npmjs.org/commander/-/commander-9.3.0.tgz","fileCount":13,"integrity":"sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw==","signatures":[{"sig":"MEYCIQCqt1oj43rokg2mwu0zJGmult9cP2uHSoNKq0GhMtABvQIhAINfWX2eomVqVK3E44sKduBoE0Cv1TG75z6L6nZOSfQ5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":168750,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJikY0qACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoafxAAmu5ns5xh1iR4rCjN7Y67Ih2lNFdiYc9a8X2HMShNPb6gFM/F\r\np0RasV9IdPLOnHupbgfCUJLnTxPNwtfT5nOSt1iv7c7cpi8tlnIlEXbBe7h8\r\ntz795H5UPlwq7GvORSnX+K85uFlA1KY+nogsceSAkfrjc1UUjTPSHz+1os2W\r\nMUid8aknf7dQkWxf2R5PErDtTzMAfrqrrdbfcLRLratknK0h9AmFYNlaPlzL\r\nENn3SHi8G/ta915Xzq0Io7eNmnq0gr5mpOOKt6H9c7lautVGQB20jyDeDHgx\r\nIRRHFa2gUqR2hgctkKZsU4XXhGcTakNvunPP6D1S5jQ8cev14VEhkuxV+dsF\r\n6XtSkslxNrEJz/bT5M8b0zb6iMfgJZwVIz2ydDClR1cLoMo3y1JNYXCGf5A1\r\nRVGzcQ8Y60aC1U/uNlgNaurBbXDDztpluQtQb6hpxF+nUfVRgWJf5UanjsT3\r\nYrqvoQOAT6sPUOcMoFwyyOa8G2B9Rc66lb4wKSiO7Ioa5lZ2B83vE0qqPsfp\r\nsgYmVo8JQfsRmj94IHGVhAAhHXtSR+xmhuCAnK17W480/hjgOSjs1IIdH1Tq\r\nck/N9IZNjbKc4pvRA2QAzeoovp6ghlQuwNBbcm996OE5H0z+QwbFtWAECeIj\r\ngLA4hzvU4jqVKd+CQfvR+y1XnawHJ1GMlIY=\r\n=K7oX\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":"^12.20.0 || >=14"},"exports":{".":{"types":"./typings/index.d.ts","import":"./esm.mjs","require":"./index.js"},"./esm.mjs":"./esm.mjs"},"gitHead":"f2aec2648d68b01d8947298b27093df3fdb551a7","scripts":{"lint":"npm run lint:javascript && npm run lint:typescript","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-imports-test.mjs","test-typings":"tsd","lint:javascript":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","lint:typescript":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"8.10.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"18.1.0","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.17.0","jest":"^27.0.4","eslint":"^7.29.0","ts-jest":"^27.0.3","typescript":"^4.3.4","@types/jest":"^27.0.3","@types/node":"^16.11.15","eslint-plugin-jest":"^24.3.6","eslint-plugin-node":"^11.1.0","eslint-plugin-import":"^2.25.3","eslint-plugin-promise":"^5.2.0","eslint-config-standard":"^16.0.3","@typescript-eslint/parser":"^4.27.0","@typescript-eslint/eslint-plugin":"^4.33.0","eslint-config-standard-with-typescript":"^21.0.1"},"_npmOperationalInternal":{"tmp":"tmp/commander_9.3.0_1653706026504_0.58426621720664","host":"s3://npm-registry-packages"}},"9.4.0":{"name":"commander","version":"9.4.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@9.4.0","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"bc4a40918fefe52e22450c111ecd6b7acce6f11c","tarball":"https://registry.npmjs.org/commander/-/commander-9.4.0.tgz","fileCount":13,"integrity":"sha512-sRPT+umqkz90UA8M1yqYfnHlZA7fF6nSphDtxeywPZ49ysjxDQybzk13CL+mXekDRG92skbcqCLVovuCusNmFw==","signatures":[{"sig":"MEUCIEf6QmdeSaLf3+an3+gq8ir/VGHLuSeUIV8B9B28gmOmAiEA94Oc5SeRiK8vE5Pqx8oLeVR/gdz4zDiAU8vExhMIk5Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":169596,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi0QcJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoxMw/+JuPMPhOqYOKFnGQQzEVJuQd49jAyjkSiuCk6aKmzXqWsJQfT\r\noxoSoroqsA/JcAAlohpL2kfgFbz+1p6e71R7YbgicU7aQFDExsm017MYGqtv\r\nnd10qdbwmSGIsbtY1I3h+ydnnxmMY5pu4tznTF1PBJa6WtU9/Z0uzNPIX7a2\r\njDuMA5mpufKU89qBF8a3g9h1xUpXJ1ye4AbkkOwuYNQazSGGkjqt+7pRTcex\r\nPH6Df+i3CvUx3X/lGvhwe3NjLDHfVzyaePxYz8ill23tcFGDbo/PNpRNAmon\r\nv3m7O4QGviD/Tth37FSm/MBBoiKZzXco+JPkFcRQ2w673ydJdpZe4a/KGRKg\r\n75AqTN7+Jpx6GMiTpk2PziWYZEYE2bGwXKPxSKA00fXu0VzjTpVYBy7wN9CK\r\n9OjrWG+btaqRwWerf3nqFD8MG3MwVVLt0qugms6AhwndDapR9Ml4D3pydo+G\r\n/JNmUwwgyWMTSgYWpnXZCjP1ryMqZvzo0YRRsrobrLJRz+fkqv9ktzaa0J+l\r\n/ARQjc9GAcRAacISWWbxlADlyTHCohe6yRYSN62rYhjgAWbXTqlB+HlOu1cx\r\nVTVMPEabquUsqSepvBqTnibgtBdSpZBS1nIAGarJfLvzt2/JKf9qNDAlVoHh\r\nmSZvBfheG7qjKf1X8p5lNrfEK10Q4h30tzY=\r\n=EsY2\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":"^12.20.0 || >=14"},"exports":{".":{"types":"./typings/index.d.ts","import":"./esm.mjs","require":"./index.js"},"./esm.mjs":"./esm.mjs"},"gitHead":"82fcb98cc27164a98e0c5f2c6f54621b5bbceef9","scripts":{"lint":"npm run lint:javascript && npm run lint:typescript","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-imports-test.mjs","test-typings":"tsd","lint:javascript":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","lint:typescript":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"8.11.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.22.0","jest":"^28.1.2","eslint":"^8.19.0","ts-jest":"^28.0.5","typescript":"^4.7.4","@types/jest":"^28.1.4","@types/node":"^16.11.15","eslint-plugin-n":"^15.2.4","eslint-plugin-jest":"^26.5.3","eslint-plugin-import":"^2.25.3","eslint-plugin-promise":"^6.0.0","eslint-config-standard":"^17.0.0","@typescript-eslint/parser":"^5.30.6","@typescript-eslint/eslint-plugin":"^5.30.6","eslint-config-standard-with-typescript":"^22.0.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_9.4.0_1657865993077_0.6314160407672071","host":"s3://npm-registry-packages"}},"9.4.1":{"name":"commander","version":"9.4.1","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@9.4.1","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"d1dd8f2ce6faf93147295c0df13c7c21141cfbdd","tarball":"https://registry.npmjs.org/commander/-/commander-9.4.1.tgz","fileCount":13,"integrity":"sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==","signatures":[{"sig":"MEUCIFRS4i402M/vySu0tExO8LjawFKsijSAt1xdtUvEgITWAiEA9RwfQsP2b0dcfSH87hjQvcujZy5U6eSZ/PkDYbY8Klg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":170255,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNpqEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrDdQ/+NIlmWtECOBd8wkHULQPIGG+b9CXZENS0Yk0wNlrbIiB5BP2q\r\nLJlQwb2fDVhMvlmwigF+x2vvgyaubKkKohuc2W/CT7YldynFHQWXLHpZR3QD\r\n60uzVnFKzY5ra8uyWzMgyay0B3gYkhOT0qjVjpSvwUmgBp3XfH3LWezAs6u+\r\nQEH/EACjebIktNQNvqcY2KWvhAiLLWhynRJcN6ONMTlqnT4kTeUj7dIm8bJZ\r\nF3jipDSFr7Y50l9tNQJyBR7Ca9WNx/LINq5VfevjMqP00HMRhKcFMCsQdxBA\r\noE3HPSjZ3Mgf/XALE6rZFlFGmCRdw4Qtu1dSUOd9dB3TsX93bSppiVKWY2ax\r\nAX+8PHC5uvxAAg3rAuzwbe0sCk+LspCh3zbWpAArbQ6h1+uJceEzg+s0mruz\r\nH+YL2SOM0Kzkg1+l4sxvP9TpgLXHxyOBh23u5I1e7/V3TK9Vrxr0THAkFRIX\r\nbUN6w8waatr6vPrxjva09lkV2tHSW9vptCbQ+dHVbCY/KgSGry4OYJxVF3gU\r\nfD8+vTdfU9RIndqTbdLlhXQUJAWGPYKrd5segA/2k8WqKf8Uuh8AFUZTrNVj\r\n4ezYbXQBsIWTrVp720ssxEbF0OSuD/wjSZInPTevsB92Yk3znnw8Sx0JaKZL\r\nLEzRtc+Vz3XF9Cicp0qo1YEDb369BDumWmg=\r\n=mrwF\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":"^12.20.0 || >=14"},"exports":{".":{"types":"./typings/index.d.ts","import":"./esm.mjs","require":"./index.js"},"./esm.mjs":"./esm.mjs"},"gitHead":"0b4198dde02cc8fc571c1265afa5bde447f6fca8","scripts":{"lint":"npm run lint:javascript && npm run lint:typescript","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-imports-test.mjs","test-typings":"tsd","lint:javascript":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","lint:typescript":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"8.16.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.22.0","jest":"^28.1.2","eslint":"^8.19.0","ts-jest":"^28.0.5","typescript":"^4.7.4","@types/jest":"^28.1.4","@types/node":"^16.11.15","eslint-plugin-n":"^15.2.4","eslint-plugin-jest":"^26.5.3","eslint-plugin-import":"^2.25.3","eslint-plugin-promise":"^6.0.0","eslint-config-standard":"^17.0.0","@typescript-eslint/parser":"^5.30.6","@typescript-eslint/eslint-plugin":"^5.30.6","eslint-config-standard-with-typescript":"^22.0.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_9.4.1_1664522884008_0.3388958427835751","host":"s3://npm-registry-packages"}},"9.5.0":{"name":"commander","version":"9.5.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@9.5.0","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30","tarball":"https://registry.npmjs.org/commander/-/commander-9.5.0.tgz","fileCount":13,"integrity":"sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==","signatures":[{"sig":"MEQCIBbtDgW9BNWrOvjCqr6RFDuuBT/c9591XUP9+8IbN/viAiBR4pOg7rHwAQo5RR0HtkCtZh6SbG/jrC8kXFIrXxcgzA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":173252,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjuRmNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpWAg//S9Z4RBLYQxfpiLDjtG3eewGccT3kkpJ9bivcWhV+uH9SAwhN\r\ns6iMRF83LUuMfqu+2aC3QOGrXynxnBscTn1wId61AkCiOAYvsZsr8mTH3PC3\r\neMtGZt4eQFnI8Vb+4zyEWp9gPok2MmdlZh5AKe7rYOmYJolG6g84gDwcbUBJ\r\ny3hFKq3P2UMMCw7ims2QAo1a5AK+8w1pzHjMdfb6TSq+dBkqMQnTkKFrUE3u\r\nRQWjbiG2J5KuIzJ0ZrhBCPKgH9oRngBAHvL3miuJa+kUOEpOGzNWySqe28ps\r\nGvKQkpwpnzipnl570vgdgJVBbJqVgj+V1CQK0mA1FUNEor/n2CtTi45l4Aew\r\nesipEpBRb1hVI6leJMrLAb6+pQ6S3mEL4wnzyroIxm2/O2nt6O3NJPbQe+DN\r\n8zZdnncFOrh1GeIUnIhAK4dOr1cMX120J7XBysWN99G+qLK2NVmdqeUsg+nJ\r\ni5hSwGx4tH3OXxR1UY9oYBj2mwlNNmeyuLBNnxnH0NZZAP4jEUmni4ajTLyD\r\n+MK49K2vzZS04HLdQBzCTMIPNxX7dyIML2PSL++or82q4hogF6SRaHUfPtDA\r\n/Sh5MMLnWJQTCcYdZ5ZOHCTF6+tKbu9hTFbTPKpmLou88F4+rAGvVoTNIeke\r\n6bSZwmVDpqEu/PDaHOXID9PAKg3X3VYG+Lw=\r\n=SBts\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":"^12.20.0 || >=14"},"exports":{".":{"types":"./typings/index.d.ts","import":"./esm.mjs","require":"./index.js"},"./esm.mjs":"./esm.mjs"},"gitHead":"7a5bd0626a5a2e6353052de0a6985480e51bbb9b","scripts":{"lint":"npm run lint:javascript && npm run lint:typescript","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node --experimental-modules ./tests/esm-imports-test.mjs","test-typings":"tsd","lint:javascript":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","lint:typescript":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"9.2.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"19.3.0","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.22.0","jest":"^28.1.2","eslint":"^8.19.0","ts-jest":"^28.0.5","typescript":"^4.7.4","@types/jest":"^28.1.4","@types/node":"^16.11.15","eslint-plugin-n":"^15.2.4","eslint-plugin-jest":"^26.5.3","eslint-plugin-import":"^2.25.3","eslint-plugin-promise":"^6.0.0","eslint-config-standard":"^17.0.0","@typescript-eslint/parser":"^5.30.6","@typescript-eslint/eslint-plugin":"^5.30.6","eslint-config-standard-with-typescript":"^22.0.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_9.5.0_1673075085625_0.37355873869183664","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"commander","version":"10.0.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@10.0.0","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"71797971162cd3cf65f0b9d24eb28f8d303acdf1","tarball":"https://registry.npmjs.org/commander/-/commander-10.0.0.tgz","fileCount":13,"integrity":"sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA==","signatures":[{"sig":"MEYCIQC20DufiOmKMzBPAy9TozrTyfB6OkqptSLk5/46uiMDjQIhAL1lPCbcKxFKOB7z4WlN6BMY9f4o8ZOH4aW1oRGBIbEh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":173653,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjwgslACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp2Ew/+InYpoqkMJez7x/YUHx3xaoS203GkJL3of04oArkjd3fW1Y2U\r\nILrIAbX6qmHH4dq7OpFaSSZHPYwQkk3AtELMwpZ/0Q0zO3NNmB2QKwAoP3QF\r\no3CXxvjU3u4vIlSEBXiiO2zMuD2bJ5CsP7c7syIsUrv/q47yUDb/GWk0k0sP\r\nTzXEN8SjfTX0blkQ2d4GmDMICyA4lj/Td6VMIgPoBujdYb+TBKo1DfwZBdaz\r\nWq2Tb7YrnAALHR/dAluQT8k8kRsale30ob9YHT/EOII+eJU5VA62MwNlBp2R\r\n7UlUC4ryMAte/E676zo6Ua0d0SxTwJTrE/CB1ms1605xxg1+fVvXBgedAF2Y\r\nUyeRAR3ZFnNqXE1X+KH6P76f2FWlYS1/J94ARPeT6cpT+z4rRXvv+Yg4c1HD\r\nKMdw4GfXHFg1syIOiEC2bbd3ge5OCa3EbpEJOzEqhzFR1AkTaXS9IjmfPe8t\r\nJPsRZLkcXCfhEbhaNKhItTR7UUhvoVl9aTiKyByYFLMulAEo1dxOY4pl0B28\r\nP6J2vqCyMwb/kKmLNtPsF9+n6/ArNIbNcBZgiDBTH0oukL5Zxxq9Q2iTIvaF\r\nsU/xSjP5CW+v3WoqIFwzVSa83uWV66eqPHpGOXxiyPcXRctTTmPQwP8v9J9A\r\n6M//sPEf3L8coY88JTAOcRSMd125BrmMGtY=\r\n=dMOf\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">=14"},"exports":{".":{"types":"./typings/index.d.ts","import":"./esm.mjs","require":"./index.js"},"./esm.mjs":"./esm.mjs"},"gitHead":"8b03ab75b5431fd2d58a24b842ba088d621f12dc","scripts":{"lint":"npm run lint:javascript && npm run lint:typescript","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node ./tests/esm-imports-test.mjs","test-typings":"tsd","lint:javascript":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","lint:typescript":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"8.19.3","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"18.13.0","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.25.0","jest":"^29.3.1","eslint":"^8.30.0","ts-jest":"^29.0.3","typescript":"^4.9.4","@types/jest":"^29.2.4","@types/node":"^18.11.18","eslint-plugin-n":"^15.6.0","eslint-plugin-jest":"^27.1.7","eslint-plugin-import":"^2.26.0","eslint-plugin-promise":"^6.1.1","eslint-config-standard":"^17.0.0","@typescript-eslint/parser":"^5.47.1","@typescript-eslint/eslint-plugin":"^5.47.1","eslint-config-standard-with-typescript":"^24.0.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_10.0.0_1673661221233_0.03324843974562097","host":"s3://npm-registry-packages"}},"10.0.1":{"name":"commander","version":"10.0.1","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@10.0.1","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"881ee46b4f77d1c1dccc5823433aa39b022cbe06","tarball":"https://registry.npmjs.org/commander/-/commander-10.0.1.tgz","fileCount":13,"integrity":"sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==","signatures":[{"sig":"MEUCIAdfY3b4EC42gKHGu+VwkrhYwtZc39I3Gew/XLCd9cmmAiEAgVdaQ7bsLSjZ6XPBVuJves9Tou2c5mm4lYu6l5bLI7g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":174283,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkOi/EACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqghRAAjGC4IvMW2ZN86qlSobS47HdFySSatonSysNxhXIzyqqIAg5r\r\npO3ALz2CGUI8fpUTUzpZUfa2fuW7oDxbJAAilqLtAeBKfPEq9LsNOE98UBJz\r\nPh9v9S7AAC96m90KOz30EIoKQVhgVLJ+AYSe2fBzikgjacmVVOJ9vN4luAVr\r\nxL5svvG6+85Nmr55aY9wV9HVnXejZTdLZ2Z5iXo0CXKvhERr6PCHF9QEZ8Hp\r\n/OPQzItFekxQBA4cM8T8dNiTqAz2iQCd1m04zg9WvHwcFRblEFkXTj2Dgz/Q\r\n78WHapsCcdL1qkYNB6nowTkHNmAZjTFXv5ve0G7lU/h/PhGaOwg477DosaJg\r\n882yfhO1u9uEyCx4yi8jjl1bZt01ZgRaLkOFp874CaTWer15h0nVKngvNksk\r\nMnyUb0brlNuPlMs6qyNI0UpGFWi/IXeE79agfGvh2W697LXb2cNJmAPyGszE\r\nv3aax5xCG/uvtnkOZUgPk8m1mikXpaSYEN1zucVgbE0SNkvRdVnOKQOa4Ldi\r\nGgD+9znAHrxBbBcwO/XadZkNt4pigFQ7WFJSFkUsGglcATt2zr2snpQ2EXHx\r\nIKUs8uNfxwkdMBzSHiBNbsD6VVpynv6OxNe08t/2grNwsoGrlwpq1vAxaxDa\r\nFDXw/9ABkJ7L0fq6PibWQxIdqActL4UuylA=\r\n=y0So\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">=14"},"exports":{".":{"types":"./typings/index.d.ts","import":"./esm.mjs","require":"./index.js"},"./esm.mjs":"./esm.mjs"},"gitHead":"33195f189b1ffa568c232503fb6ac0cf5548eb74","scripts":{"lint":"npm run lint:javascript && npm run lint:typescript","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node ./tests/esm-imports-test.mjs","test-typings":"tsd","lint:javascript":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","lint:typescript":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"9.0.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.25.0","jest":"^29.3.1","eslint":"^8.30.0","ts-jest":"^29.0.3","typescript":"^4.9.4","@types/jest":"^29.2.4","@types/node":"^18.11.18","eslint-plugin-n":"^15.6.0","eslint-plugin-jest":"^27.1.7","eslint-plugin-import":"^2.26.0","eslint-plugin-promise":"^6.1.1","eslint-config-standard":"^17.0.0","@typescript-eslint/parser":"^5.47.1","@typescript-eslint/eslint-plugin":"^5.47.1","eslint-config-standard-with-typescript":"^24.0.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_10.0.1_1681534915947_0.9583715547325435","host":"s3://npm-registry-packages"}},"11.0.0":{"name":"commander","version":"11.0.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@11.0.0","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"43e19c25dbedc8256203538e8d7e9346877a6f67","tarball":"https://registry.npmjs.org/commander/-/commander-11.0.0.tgz","fileCount":14,"integrity":"sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==","signatures":[{"sig":"MEUCIQCnL/Y6uyE9c40ZCWmhPrH1cK74I1hKigKXY8Dx7SgMXgIgc1aQbAyRDJ48vZXIOjfoF66Awtb9r0pX40JNLbGShlQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":175557},"jest":{"transform":{"^.+\\.tsx?$":"ts-jest"},"collectCoverage":true,"testEnvironment":"node","testPathIgnorePatterns":["/node_modules/"]},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">=16"},"exports":{".":{"import":{"types":"./typings/esm.d.mts","default":"./esm.mjs"},"default":"./index.js","require":{"types":"./typings/index.d.ts","default":"./index.js"}},"./esm.mjs":{"types":"./typings/esm.d.mts","import":"./esm.mjs"}},"gitHead":"4ef19faac1564743d8c7e3ce89ef8d190e1551b4","scripts":{"lint":"npm run lint:javascript && npm run lint:typescript","test":"jest && npm run test-typings","test-all":"npm run test && npm run lint && npm run typescript-checkJS && npm run test-esm","test-esm":"node ./tests/esm-imports-test.mjs","test-typings":"tsd","lint:javascript":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","lint:typescript":"eslint typings/*.ts tests/*.ts","typescript-checkJS":"tsc --allowJS --checkJS index.js lib/*.js --noEmit"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"9.6.5","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"20.0.0","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.28.1","jest":"^29.3.1","eslint":"^8.30.0","ts-jest":"^29.0.3","typescript":"^5.0.4","@types/jest":"^29.2.4","@types/node":"^20.2.5","eslint-plugin-n":"^15.6.0","eslint-plugin-jest":"^27.1.7","eslint-plugin-import":"^2.26.0","eslint-plugin-promise":"^6.1.1","eslint-config-standard":"^17.0.0","@typescript-eslint/parser":"^5.47.1","@typescript-eslint/eslint-plugin":"^5.47.1","eslint-config-standard-with-typescript":"^33.0.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_11.0.0_1686876680336_0.6453178874329064","host":"s3://npm-registry-packages"}},"11.1.0":{"name":"commander","version":"11.1.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@11.1.0","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"62fdce76006a68e5c1ab3314dc92e800eb83d906","tarball":"https://registry.npmjs.org/commander/-/commander-11.1.0.tgz","fileCount":14,"integrity":"sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==","signatures":[{"sig":"MEQCIG4OXx0HEJTNxkBjrp8POwBJUFrpuZiWKJAOYJujZTTKAiAuz9dTVRR7iBlcXkZRVNYjCzOHIXwsSjYaSqg6j2KbAA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":176667},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">=16"},"exports":{".":{"import":{"types":"./typings/esm.d.mts","default":"./esm.mjs"},"default":"./index.js","require":{"types":"./typings/index.d.ts","default":"./index.js"}},"./esm.mjs":{"types":"./typings/esm.d.mts","import":"./esm.mjs"}},"gitHead":"f1ae2db8e2da01d6efcbfd59cbf82202f864b0c1","scripts":{"lint":"npm run lint:javascript && npm run lint:typescript","test":"jest && npm run typecheck-ts","test-all":"npm run test && npm run lint && npm run typecheck-js && npm run test-esm","test-esm":"node ./tests/esm-imports-test.mjs","typecheck-js":"tsc -p tsconfig.js.json","typecheck-ts":"tsd && tsc -p tsconfig.ts.json","lint:javascript":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","lint:typescript":"eslint typings/*.ts tests/*.ts"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"9.7.2","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"20.4.0","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.28.1","jest":"^29.3.1","eslint":"^8.30.0","ts-jest":"^29.0.3","typescript":"^5.0.4","@types/jest":"^29.2.4","@types/node":"^20.2.5","eslint-plugin-n":"^15.6.0","eslint-plugin-jest":"^27.1.7","eslint-plugin-import":"^2.26.0","eslint-plugin-promise":"^6.1.1","eslint-config-standard":"^17.0.0","@typescript-eslint/parser":"^5.47.1","@typescript-eslint/eslint-plugin":"^5.47.1","eslint-config-standard-with-typescript":"^33.0.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_11.1.0_1697156974546_0.4304863535469152","host":"s3://npm-registry-packages"}},"12.0.0-0":{"name":"commander","version":"12.0.0-0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@12.0.0-0","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"5b82ae6a6d2433b4035bfc71157f76569840aca7","tarball":"https://registry.npmjs.org/commander/-/commander-12.0.0-0.tgz","fileCount":14,"integrity":"sha512-UsCJj6ASq58nS+xEF4P/eCKYaBC938xOTQMJnTEdUOn0EZ63zHjr4ewwbf++T/w7kdpY57dW2Ff4Jsk2xL+aUg==","signatures":[{"sig":"MEYCIQDlZ8WXjC+8tqyrZG8O/tB9MfklxGn4GPPq8EBsk2RvQAIhAJ9dQdqxHosxZ3UyAsW6EpS7scDZHzLoC/NmnLj1I2AZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":178431},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">=18"},"exports":{".":{"import":{"types":"./typings/esm.d.mts","default":"./esm.mjs"},"default":"./index.js","require":{"types":"./typings/index.d.ts","default":"./index.js"}},"./esm.mjs":{"types":"./typings/esm.d.mts","import":"./esm.mjs"}},"gitHead":"18f921d9778ebd1578ad98aba9b873f51786fbe4","scripts":{"lint":"npm run lint:javascript && npm run lint:typescript","test":"jest && npm run typecheck-ts","test-all":"npm run test && npm run lint && npm run typecheck-js && npm run test-esm","test-esm":"node ./tests/esm-imports-test.mjs","typecheck-js":"tsc -p tsconfig.js.json","typecheck-ts":"tsd && tsc -p tsconfig.ts.json","lint:javascript":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","lint:typescript":"eslint typings/*.ts tests/*.ts"},"support":true,"_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"10.1.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"20.9.0","_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"tsd":"^0.29.0","jest":"^29.3.1","eslint":"^8.30.0","ts-jest":"^29.0.3","typescript":"^5.0.4","@types/jest":"^29.2.4","@types/node":"^20.2.5","eslint-plugin-n":"^16.2.0","eslint-plugin-jest":"^27.1.7","eslint-plugin-import":"^2.26.0","eslint-plugin-promise":"^6.1.1","eslint-config-standard":"^17.0.0","@typescript-eslint/parser":"^6.7.5","@typescript-eslint/eslint-plugin":"^6.7.5","eslint-config-standard-with-typescript":"^39.1.1"},"_npmOperationalInternal":{"tmp":"tmp/commander_12.0.0-0_1699681366534_0.7397661235491186","host":"s3://npm-registry-packages"}},"12.0.0-1":{"name":"commander","version":"12.0.0-1","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@12.0.0-1","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"8f23171fad23c9238e8e3ec014eb589efdf172c1","tarball":"https://registry.npmjs.org/commander/-/commander-12.0.0-1.tgz","fileCount":14,"integrity":"sha512-43nKW58vMv4OVD6Xm+KIlF9lx9hpbwaA0A3bSz6kpsMzkxBOhkPv/wsrU/ZC4Is5xaKqDKF5CBRcM/h4xkz47Q==","signatures":[{"sig":"MEUCIQChzU9cD1CyuG74UEtTDRfORwFaNWBvjc1ViVQ8Cf7TmAIgOtM+6h1i1L2MUm5Y9rAk7KdZQwhfGvgZCDL6ZuAAY2A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":181044},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">=18"},"exports":{".":{"import":{"types":"./typings/esm.d.mts","default":"./esm.mjs"},"default":"./index.js","require":{"types":"./typings/index.d.ts","default":"./index.js"}},"./esm.mjs":{"types":"./typings/esm.d.mts","import":"./esm.mjs"}},"gitHead":"90f3c8a4c99bd03e641ab23210fce8a3c989df8a","scripts":{"lint":"npm run lint:javascript && npm run lint:typescript","test":"jest && npm run typecheck-ts","test-all":"npm run test && npm run lint && npm run typecheck-js && npm run test-esm","test-esm":"node ./tests/esm-imports-test.mjs","typecheck-js":"tsc -p tsconfig.js.json","typecheck-ts":"tsd && tsc -p tsconfig.ts.json","lint:javascript":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","lint:typescript":"eslint typings/*.ts tests/*.ts"},"support":true,"_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"10.2.3","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"20.10.0","_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"tsd":"^0.29.0","jest":"^29.3.1","eslint":"^8.30.0","ts-jest":"^29.0.3","typescript":"^5.0.4","@types/jest":"^29.2.4","@types/node":"^20.2.5","eslint-plugin-n":"^16.2.0","eslint-plugin-jest":"^27.1.7","eslint-plugin-import":"^2.26.0","eslint-plugin-promise":"^6.1.1","eslint-config-standard":"^17.0.0","@typescript-eslint/parser":"^6.7.5","@typescript-eslint/eslint-plugin":"^6.7.5","eslint-config-standard-with-typescript":"^40.0.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_12.0.0-1_1705695132845_0.046763212014158784","host":"s3://npm-registry-packages"}},"12.0.0":{"name":"commander","version":"12.0.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@12.0.0","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"b929db6df8546080adfd004ab215ed48cf6f2592","tarball":"https://registry.npmjs.org/commander/-/commander-12.0.0.tgz","fileCount":14,"integrity":"sha512-MwVNWlYjDTtOjX5PiD7o5pK0UrFU/OYgcJfjjK4RaHZETNtjJqrZa9Y9ds88+A+f+d5lv+561eZ+yCKoS3gbAA==","signatures":[{"sig":"MEYCIQCqMcOJ/77v7Uz/pTyod3HlhUtEaNzX7jUj1/9ZJWNKJwIhALSSkM5pUUoYdfAocjnVTK5Sw5PqEZOyUTJ57l1k/c1Y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":181031},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">=18"},"exports":{".":{"import":{"types":"./typings/esm.d.mts","default":"./esm.mjs"},"default":"./index.js","require":{"types":"./typings/index.d.ts","default":"./index.js"}},"./esm.mjs":{"types":"./typings/esm.d.mts","import":"./esm.mjs"}},"gitHead":"83c3f4e391754d2f80b179acc4bccc2d4d0c863d","scripts":{"lint":"npm run lint:javascript && npm run lint:typescript","test":"jest && npm run typecheck-ts","test-all":"npm run test && npm run lint && npm run typecheck-js && npm run test-esm","test-esm":"node ./tests/esm-imports-test.mjs","typecheck-js":"tsc -p tsconfig.js.json","typecheck-ts":"tsd && tsc -p tsconfig.ts.json","lint:javascript":"eslint index.js esm.mjs \"lib/*.js\" \"tests/**/*.js\"","lint:typescript":"eslint typings/*.ts tests/*.ts"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"10.1.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"20.8.1","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.30.4","jest":"^29.3.1","eslint":"^8.30.0","ts-jest":"^29.0.3","typescript":"^5.0.4","@types/jest":"^29.2.4","@types/node":"^20.2.5","eslint-plugin-n":"^16.2.0","eslint-plugin-jest":"^27.1.7","eslint-plugin-import":"^2.26.0","eslint-plugin-promise":"^6.1.1","eslint-config-standard":"^17.0.0","@typescript-eslint/parser":"^6.7.5","@typescript-eslint/eslint-plugin":"^6.7.5","eslint-config-standard-with-typescript":"^40.0.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_12.0.0_1706953473772_0.24319181371018384","host":"s3://npm-registry-packages"}},"12.1.0":{"name":"commander","version":"12.1.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@12.1.0","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"01423b36f501259fdaac4d0e4d60c96c991585d3","tarball":"https://registry.npmjs.org/commander/-/commander-12.1.0.tgz","fileCount":14,"integrity":"sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==","signatures":[{"sig":"MEYCIQDGfZX/89afRyWbnvCN6Ti/61zQGiZDewN03eez9Ni/fgIhAMk8A/9F2Tbtcna/SjHl/aJn7Uc68PQxZMzK36OzHsQx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":186398},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">=18"},"exports":{".":{"import":{"types":"./typings/esm.d.mts","default":"./esm.mjs"},"default":"./index.js","require":{"types":"./typings/index.d.ts","default":"./index.js"}},"./esm.mjs":{"types":"./typings/esm.d.mts","import":"./esm.mjs"}},"gitHead":"970ecae402b253de691e6a9066fea22f38fe7431","scripts":{"fix":"npm run fix:lint && npm run fix:format","test":"jest && npm run check:type:ts","check":"npm run check:type && npm run check:lint && npm run check:format","fix:lint":"eslint --fix .","test-all":"jest && npm run test-esm && npm run check","test-esm":"node ./tests/esm-imports-test.mjs","check:lint":"eslint .","check:type":"npm run check:type:js && npm run check:type:ts","fix:format":"prettier --write .","check:format":"prettier --check .","check:type:js":"tsc -p tsconfig.js.json","check:type:ts":"tsd && tsc -p tsconfig.ts.json"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"10.1.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"20.8.1","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.31.0","jest":"^29.3.1","eslint":"^8.30.0","globals":"^13.24.0","ts-jest":"^29.0.3","prettier":"^3.2.5","@eslint/js":"^8.56.0","typescript":"^5.0.4","@types/jest":"^29.2.4","@types/node":"^20.2.5","typescript-eslint":"^7.0.1","eslint-plugin-jest":"^28.3.0","eslint-plugin-jsdoc":"^48.1.0","prettier-plugin-jsdoc":"^1.3.0","eslint-config-prettier":"^9.1.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_12.1.0_1716031013847_0.9774705545309066","host":"s3://npm-registry-packages"}},"13.0.0-0":{"name":"commander","version":"13.0.0-0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@13.0.0-0","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"1ec4503b69359ec74ea31d9eff53491f07d9dce6","tarball":"https://registry.npmjs.org/commander/-/commander-13.0.0-0.tgz","fileCount":14,"integrity":"sha512-3CshrHCF8M4mJhtBruqZvYzMoRplFO1NmsIzF6uaIxZpzvW+ZI6xU/fx5LmprLNYB5sH5F2CnjTkXflGfkYgkQ==","signatures":[{"sig":"MEYCIQCcbokr333aCVfqogUYtd+ft2aycM3Y2/UHH6OFjrDEPwIhAKQ/J0o+wx+WRW/zbjnZ+uJNbXx9NxAD2odxDzn5JBGT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":196088},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">=18"},"exports":{".":{"import":{"types":"./typings/esm.d.mts","default":"./esm.mjs"},"default":"./index.js","require":{"types":"./typings/index.d.ts","default":"./index.js"}},"./esm.mjs":{"types":"./typings/esm.d.mts","import":"./esm.mjs"}},"gitHead":"37e86af4c14b22db04adfce4b05597567f207167","scripts":{"fix":"npm run fix:lint && npm run fix:format","test":"jest && npm run check:type:ts","check":"npm run check:type && npm run check:lint && npm run check:format","fix:lint":"eslint --fix .","test-all":"jest && npm run test-esm && npm run check","test-esm":"node ./tests/esm-imports-test.mjs","check:lint":"eslint .","check:type":"npm run check:type:js && npm run check:type:ts","fix:format":"prettier --write .","check:format":"prettier --check .","check:type:js":"tsc -p tsconfig.js.json","check:type:ts":"tsd && tsc -p tsconfig.ts.json"},"support":true,"_npmUser":{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"10.9.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"readmeFilename":"Readme.md","devDependencies":{"tsd":"^0.31.0","jest":"^29.3.1","eslint":"^8.57.1","globals":"^15.7.0","ts-jest":"^29.0.3","prettier":"^3.2.5","@eslint/js":"^9.4.0","typescript":"^5.0.4","@types/jest":"^29.2.4","@types/node":"^22.7.4","typescript-eslint":"^8.12.2","eslint-plugin-jest":"^28.3.0","eslint-config-prettier":"^9.1.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_13.0.0-0_1733526752117_0.8032912131001044","host":"s3://npm-registry-packages"}},"13.0.0":{"name":"commander","version":"13.0.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@13.0.0","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"1b161f60ee3ceb8074583a0f95359a4f8701845c","tarball":"https://registry.npmjs.org/commander/-/commander-13.0.0.tgz","fileCount":14,"integrity":"sha512-oPYleIY8wmTVzkvQq10AEok6YcTC4sRUBl8F9gVuwchGVUCTbl/vhLTaQqutuuySYOsu8YTgV+OxKc/8Yvx+mQ==","signatures":[{"sig":"MEQCIAfq9DCLBTnsNln8wX2GrEEQgV2iyqyj5bffmTcjNmYoAiAGuHeloTv2kgjXmKaG7h7qnJGSVg3IDLdhbCdtQ7fowg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":199411},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">=18"},"exports":{".":{"import":{"types":"./typings/esm.d.mts","default":"./esm.mjs"},"default":"./index.js","require":{"types":"./typings/index.d.ts","default":"./index.js"}},"./esm.mjs":{"types":"./typings/esm.d.mts","import":"./esm.mjs"}},"gitHead":"d6bcb0b6e144d8854360a5c3c2759fadf0e4edb3","scripts":{"fix":"npm run fix:lint && npm run fix:format","test":"jest && npm run check:type:ts","check":"npm run check:type && npm run check:lint && npm run check:format","fix:lint":"eslint --fix .","test-all":"jest && npm run test-esm && npm run check","test-esm":"node ./tests/esm-imports-test.mjs","check:lint":"eslint .","check:type":"npm run check:type:js && npm run check:type:ts","fix:format":"prettier --write .","check:format":"prettier --check .","check:type:js":"tsc -p tsconfig.js.json","check:type:ts":"tsd && tsc -p tsconfig.ts.json"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"10.1.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"20.8.1","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.31.0","jest":"^29.3.1","eslint":"^9.17.0","globals":"^15.7.0","ts-jest":"^29.0.3","prettier":"^3.2.5","@eslint/js":"^9.4.0","typescript":"^5.0.4","@types/jest":"^29.2.4","@types/node":"^22.7.4","typescript-eslint":"^8.12.2","eslint-plugin-jest":"^28.3.0","eslint-config-prettier":"^9.1.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_13.0.0_1735536399933_0.030418366285915432","host":"s3://npm-registry-packages-npm-production"}},"13.1.0":{"name":"commander","version":"13.1.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@13.1.0","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"776167db68c78f38dcce1f9b8d7b8b9a488abf46","tarball":"https://registry.npmjs.org/commander/-/commander-13.1.0.tgz","fileCount":14,"integrity":"sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==","signatures":[{"sig":"MEYCIQDmyGTBaLFQN4/SExNA2Zz8YhU4S4D3LUPYXaJePOktPQIhALa2IBUy9wXlnRmenlSlaWTxtSvKa1gmUTzhiPl6T6F7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":200514},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">=18"},"exports":{".":{"import":{"types":"./typings/esm.d.mts","default":"./esm.mjs"},"default":"./index.js","require":{"types":"./typings/index.d.ts","default":"./index.js"}},"./esm.mjs":{"types":"./typings/esm.d.mts","import":"./esm.mjs"}},"gitHead":"e6f56c888c96d1339c2b974fee7e6ba4f2e3d218","scripts":{"fix":"npm run fix:lint && npm run fix:format","test":"jest && npm run check:type:ts","check":"npm run check:type && npm run check:lint && npm run check:format","fix:lint":"eslint --fix .","test-all":"jest && npm run test-esm && npm run check","test-esm":"node ./tests/esm-imports-test.mjs","check:lint":"eslint .","check:type":"npm run check:type:js && npm run check:type:ts","fix:format":"prettier --write .","check:format":"prettier --check .","check:type:js":"tsc -p tsconfig.js.json","check:type:ts":"tsd && tsc -p tsconfig.ts.json"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"11.0.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"22.13.0","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.31.0","jest":"^29.3.1","eslint":"^9.17.0","globals":"^15.7.0","ts-jest":"^29.0.3","prettier":"^3.2.5","@eslint/js":"^9.4.0","typescript":"^5.0.4","@types/jest":"^29.2.4","@types/node":"^22.7.4","typescript-eslint":"^8.12.2","eslint-plugin-jest":"^28.3.0","eslint-config-prettier":"^9.1.0"},"_npmOperationalInternal":{"tmp":"tmp/commander_13.1.0_1737415749979_0.9261796025805804","host":"s3://npm-registry-packages-npm-production"}},"14.0.0":{"name":"commander","version":"14.0.0","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@14.0.0","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"f244fc74a92343514e56229f16ef5c5e22ced5e9","tarball":"https://registry.npmjs.org/commander/-/commander-14.0.0.tgz","fileCount":14,"integrity":"sha512-2uM9rYjPvyq39NwLRqaiLtWHyDC1FvryJDa2ATTVims5YAS4PupsEQsDvP14FqhFr0P49CYDugi59xaxJlTXRA==","signatures":[{"sig":"MEYCIQCOh07iotg66yGE6l7Hlxgj0e/8T7YE7NRh+Ci3rLppowIhAJVbXCIGb8ayS3pHbEmamarp0JGNw15bbJd6kjmoUXvR","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":208171},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">=20"},"exports":{".":{"import":{"types":"./typings/esm.d.mts","default":"./esm.mjs"},"default":"./index.js","require":{"types":"./typings/index.d.ts","default":"./index.js"}},"./esm.mjs":{"types":"./typings/esm.d.mts","import":"./esm.mjs"}},"gitHead":"395cf7145fe28122f5a69026b310e02df114f907","scripts":{"fix":"npm run fix:lint && npm run fix:format","test":"jest && npm run check:type:ts","check":"npm run check:type && npm run check:lint && npm run check:format","fix:lint":"eslint --fix .","test-all":"jest && npm run test-esm && npm run check","test-esm":"node ./tests/esm-imports-test.mjs","check:lint":"eslint .","check:type":"npm run check:type:js && npm run check:type:ts","fix:format":"prettier --write .","check:format":"prettier --check .","check:type:js":"tsc -p tsconfig.js.json","check:type:ts":"tsd && tsc -p tsconfig.ts.json"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"11.0.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"22.13.0","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.31.0","jest":"^29.3.1","eslint":"^9.17.0","globals":"^16.0.0","ts-jest":"^29.0.3","prettier":"^3.2.5","@eslint/js":"^9.4.0","typescript":"^5.0.4","@types/jest":"^29.2.4","@types/node":"^22.7.4","typescript-eslint":"^8.12.2","eslint-plugin-jest":"^28.3.0","eslint-config-prettier":"^10.0.1"},"_npmOperationalInternal":{"tmp":"tmp/commander_14.0.0_1747548628975_0.4415597476612214","host":"s3://npm-registry-packages-npm-production"}},"14.0.1":{"name":"commander","version":"14.0.1","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@14.0.1","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"2f9225c19e6ebd0dc4404dd45821b2caa17ea09b","tarball":"https://registry.npmjs.org/commander/-/commander-14.0.1.tgz","fileCount":14,"integrity":"sha512-2JkV3gUZUVrbNA+1sjBOYLsMZ5cEEl8GTFP2a4AVz5hvasAMCQ1D2l2le/cX+pV4N6ZU17zjUahLpIXRrnWL8A==","signatures":[{"sig":"MEUCIQDIMCO7rI4bcHSBeynnLWyQ/a+cLgj/MNBS9n7WNGt7twIgNE3eKtiD4yd4bDfZyFcA5lvi+5Fc4td5VPmyYec0qbA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":208150},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">=20"},"exports":{".":{"import":{"types":"./typings/esm.d.mts","default":"./esm.mjs"},"default":"./index.js","require":{"types":"./typings/index.d.ts","default":"./index.js"}},"./esm.mjs":{"types":"./typings/esm.d.mts","import":"./esm.mjs"}},"gitHead":"bd4ae263f6966183f3c9e8b105fb5ae3c568c047","scripts":{"fix":"npm run fix:lint && npm run fix:format","test":"jest && npm run check:type:ts","check":"npm run check:type && npm run check:lint && npm run check:format","fix:lint":"eslint --fix .","test-all":"jest && npm run test-esm && npm run check","test-esm":"node ./tests/esm-imports-test.mjs","check:lint":"eslint .","check:type":"npm run check:type:js && npm run check:type:ts","fix:format":"prettier --write .","check:format":"prettier --check .","check:type:js":"tsc -p tsconfig.js.json","check:type:ts":"tsd && tsc -p tsconfig.ts.json"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"11.0.0","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"22.13.0","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.33.0","jest":"^30.0.3","eslint":"^9.17.0","globals":"^16.0.0","ts-jest":"^29.0.3","prettier":"^3.2.5","@eslint/js":"^9.4.0","typescript":"^5.0.4","@types/jest":"^30.0.0","@types/node":"^22.7.4","typescript-eslint":"^8.12.2","eslint-plugin-jest":"^29.0.1","eslint-config-prettier":"^10.0.1"},"_npmOperationalInternal":{"tmp":"tmp/commander_14.0.1_1757662026527_0.514032933225524","host":"s3://npm-registry-packages-npm-production"}},"14.0.2":{"name":"commander","version":"14.0.2","keywords":["commander","command","option","parser","cli","argument","args","argv"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","_id":"commander@14.0.2","maintainers":[{"name":"somekittens","email":"rkoutnik@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shadowspawn","email":"npm_j@ruru.gen.nz"},{"name":"abetomo","email":"abe@enzou.tokyo"}],"homepage":"https://github.com/tj/commander.js#readme","bugs":{"url":"https://github.com/tj/commander.js/issues"},"dist":{"shasum":"b71fd37fe4069e4c3c7c13925252ada4eba14e8e","tarball":"https://registry.npmjs.org/commander/-/commander-14.0.2.tgz","fileCount":14,"integrity":"sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ==","signatures":[{"sig":"MEYCIQCvKpKpWUsLEw5JGA/jNz/NC4TrhCkJgDXhXzPpzWOQaAIhAKRaUaG2nAWd/eAL/jlAx0vf3YM7hIlMybVROWgPqyTz","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":208153},"main":"./index.js","type":"commonjs","types":"typings/index.d.ts","engines":{"node":">=20"},"exports":{".":{"import":{"types":"./typings/esm.d.mts","default":"./esm.mjs"},"default":"./index.js","require":{"types":"./typings/index.d.ts","default":"./index.js"}},"./esm.mjs":{"types":"./typings/esm.d.mts","import":"./esm.mjs"}},"gitHead":"0692be58103e1ea8052d5d45ab11cc02e197eea5","scripts":{"fix":"npm run fix:lint && npm run fix:format","test":"jest && npm run check:type:ts","check":"npm run check:type && npm run check:lint && npm run check:format","fix:lint":"eslint --fix .","test-all":"jest && npm run test-esm && npm run check","test-esm":"node ./tests/esm-imports-test.mjs","check:lint":"eslint .","check:type":"npm run check:type:js && npm run check:type:ts","fix:format":"prettier --write .","check:format":"prettier --check .","check:type:js":"tsc -p tsconfig.js.json","check:type:ts":"tsd && tsc -p tsconfig.ts.json"},"support":true,"_npmUser":{"name":"abetomo","email":"abe@enzou.tokyo"},"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"_npmVersion":"9.7.2","description":"the complete solution for node.js command-line programs","directories":{},"_nodeVersion":"20.3.0","_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.33.0","jest":"^30.0.3","eslint":"^9.17.0","globals":"^16.0.0","ts-jest":"^29.0.3","prettier":"^3.2.5","@eslint/js":"^9.4.0","typescript":"^5.0.4","@types/jest":"^30.0.0","@types/node":"^22.7.4","typescript-eslint":"^8.12.2","eslint-plugin-jest":"^29.0.1","eslint-config-prettier":"^10.0.1"},"_npmOperationalInternal":{"tmp":"tmp/commander_14.0.2_1761394063859_0.5695268403762583","host":"s3://npm-registry-packages-npm-production"}}},"time":{"created":"2011-08-14T22:17:51.639Z","modified":"2025-11-09T04:11:11.686Z","0.0.1":"2011-08-14T22:17:52.365Z","0.0.3":"2011-08-15T15:30:08.289Z","0.0.4":"2011-08-15T15:45:00.595Z","0.0.5":"2011-08-19T01:18:17.154Z","0.1.0":"2011-08-24T11:45:37.962Z","0.2.0":"2011-09-26T15:44:03.241Z","0.2.1":"2011-10-24T21:03:27.736Z","0.3.0":"2011-10-31T15:36:53.375Z","0.3.1":"2011-10-31T22:07:16.209Z","0.3.2":"2011-11-01T21:27:35.103Z","0.3.3":"2011-11-14T19:02:49.976Z","0.4.0":"2011-11-15T16:05:27.872Z","0.4.1":"2011-11-18T16:48:21.692Z","0.4.2":"2011-11-24T15:22:25.202Z","0.4.3":"2011-12-04T17:54:46.487Z","0.5.0":"2011-12-04T19:44:41.915Z","0.5.1":"2011-12-20T16:26:29.300Z","0.6.0":"2012-04-11T00:52:24.970Z","0.6.1":"2012-06-01T19:23:51.854Z","0.5.2":"2012-06-25T21:09:05.996Z","1.0.0":"2012-07-05T15:39:47.150Z","1.0.1":"2012-08-03T20:48:33.507Z","1.0.2":"2012-08-24T20:37:14.775Z","1.0.3":"2012-08-30T15:07:57.325Z","1.0.4":"2012-09-03T15:41:28.290Z","1.0.5":"2012-10-10T15:56:29.273Z","1.1.0":"2012-11-17T04:59:23.345Z","1.1.1":"2012-11-20T23:09:50.552Z","1.2.0":"2013-06-13T13:52:46.805Z","1.3.0":"2013-07-09T15:15:27.256Z","1.3.1":"2013-07-18T16:17:47.951Z","1.3.2":"2013-07-18T16:26:50.160Z","2.0.0":"2013-07-19T00:55:45.073Z","2.1.0":"2013-11-21T17:06:23.757Z","2.2.0":"2014-03-29T12:36:09.643Z","2.3.0":"2014-07-16T02:14:43.461Z","2.4.0":"2014-10-17T14:16:05.654Z","2.5.0":"2014-10-24T07:41:38.958Z","2.5.1":"2014-12-15T12:57:52.861Z","2.6.0":"2014-12-29T16:16:14.148Z","2.7.0":"2015-03-09T15:28:12.220Z","2.7.1":"2015-03-11T00:46:03.033Z","2.8.0":"2015-04-14T19:38:49.246Z","2.8.1":"2015-04-24T20:27:36.920Z","2.9.0":"2015-10-13T15:26:25.933Z","2.10.0":"2017-06-23T09:32:55.567Z","2.11.0":"2017-07-03T10:07:25.387Z","2.12.0":"2017-11-22T23:04:54.032Z","2.12.1":"2017-11-23T10:18:50.901Z","2.12.2":"2017-11-28T07:08:54.938Z","2.13.0":"2018-01-11T07:09:55.387Z","2.14.0":"2018-02-06T01:23:46.219Z","2.14.1":"2018-02-07T07:42:58.790Z","2.15.0":"2018-03-08T01:11:52.912Z","2.15.1":"2018-03-20T01:47:22.840Z","2.16.0":"2018-06-29T09:40:35.648Z","2.17.0":"2018-08-04T00:09:33.375Z","2.17.1":"2018-08-07T11:19:30.675Z","2.18.0":"2018-09-07T10:27:19.913Z","2.19.0":"2018-10-08T21:51:13.862Z","2.20.0":"2019-04-03T00:41:29.557Z","3.0.0-0":"2019-07-27T02:38:12.348Z","3.0.0":"2019-08-09T00:46:51.482Z","3.0.1":"2019-08-30T08:55:39.389Z","3.0.2":"2019-09-26T09:10:22.874Z","2.20.1":"2019-09-28T22:01:44.284Z","4.0.0-0":"2019-10-01T08:39:44.602Z","4.0.0-1":"2019-10-08T01:27:51.795Z","2.20.2":"2019-10-11T04:01:45.299Z","2.20.3":"2019-10-11T05:40:24.166Z","4.0.0":"2019-11-01T10:09:07.258Z","4.0.1":"2019-11-11T09:18:33.992Z","4.1.0":"2020-01-06T09:16:52.298Z","5.0.0-0":"2020-02-01T03:44:40.532Z","4.1.1":"2020-02-03T06:15:56.861Z","5.0.0-1":"2020-02-08T20:49:31.242Z","5.0.0-2":"2020-02-11T09:53:56.733Z","5.0.0-3":"2020-02-20T07:36:39.505Z","5.0.0-4":"2020-03-03T05:35:36.394Z","5.0.0":"2020-03-14T01:10:37.734Z","5.1.0":"2020-04-25T02:29:21.964Z","6.0.0-0":"2020-06-20T06:03:44.450Z","6.0.0":"2020-07-19T14:01:31.919Z","6.1.0":"2020-08-28T01:22:54.292Z","6.2.0":"2020-10-25T02:37:56.917Z","7.0.0-0":"2020-10-25T04:49:14.594Z","7.0.0-1":"2020-11-21T21:30:28.454Z","6.2.1":"2020-12-14T00:47:18.186Z","7.0.0-2":"2020-12-14T07:48:46.624Z","7.0.0":"2021-01-15T09:47:17.281Z","7.1.0":"2021-02-15T07:24:42.526Z","7.2.0":"2021-03-21T21:56:16.053Z","8.0.0-0":"2021-05-22T23:31:04.447Z","8.0.0-1":"2021-05-31T07:30:26.816Z","8.0.0-2":"2021-06-06T04:36:26.462Z","8.0.0":"2021-06-25T08:24:16.053Z","8.1.0":"2021-07-27T03:56:22.861Z","8.2.0":"2021-09-10T07:00:32.866Z","8.3.0":"2021-10-22T07:02:06.771Z","9.0.0-0":"2021-12-22T05:45:54.861Z","9.0.0-1":"2022-01-14T20:33:18.784Z","9.0.0":"2022-01-29T00:30:40.995Z","9.1.0":"2022-03-18T05:56:21.581Z","9.2.0":"2022-04-15T08:17:56.139Z","9.3.0":"2022-05-28T02:47:06.659Z","9.4.0":"2022-07-15T06:19:53.286Z","9.4.1":"2022-09-30T07:28:04.231Z","9.5.0":"2023-01-07T07:04:45.771Z","10.0.0":"2023-01-14T01:53:41.421Z","10.0.1":"2023-04-15T05:01:56.178Z","11.0.0":"2023-06-16T00:51:20.545Z","11.1.0":"2023-10-13T00:29:34.905Z","12.0.0-0":"2023-11-11T05:42:46.741Z","12.0.0-1":"2024-01-19T20:12:13.073Z","12.0.0":"2024-02-03T09:44:33.948Z","12.1.0":"2024-05-18T11:16:54.043Z","13.0.0-0":"2024-12-06T23:12:32.307Z","13.0.0":"2024-12-30T05:26:40.123Z","13.1.0":"2025-01-20T23:29:10.201Z","14.0.0":"2025-05-18T06:10:29.194Z","14.0.1":"2025-09-12T07:27:06.725Z","14.0.2":"2025-10-25T12:07:44.078Z"},"bugs":{"url":"https://github.com/tj/commander.js/issues"},"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"license":"MIT","homepage":"https://github.com/tj/commander.js#readme","keywords":["commander","command","option","parser","cli","argument","args","argv"],"repository":{"url":"git+https://github.com/tj/commander.js.git","type":"git"},"description":"the complete solution for node.js command-line programs","maintainers":[{"email":"npm_j@ruru.gen.nz","name":"shadowspawn"},{"email":"abe@enzou.tokyo","name":"abetomo"}],"readme":"# Commander.js\n\n[](https://github.com/tj/commander.js/actions?query=workflow%3A%22build%22)\n[](https://www.npmjs.org/package/commander)\n[](https://npmcharts.com/compare/commander?minimal=true)\n[](https://packagephobia.now.sh/result?p=commander)\n\nThe complete solution for [node.js](http://nodejs.org) command-line interfaces.\n\nRead this in other languages: English | [简体中文](./Readme_zh-CN.md)\n\n- [Commander.js](#commanderjs)\n - [Installation](#installation)\n - [Quick Start](#quick-start)\n - [Declaring _program_ variable](#declaring-program-variable)\n - [Options](#options)\n - [Common option types, boolean and value](#common-option-types-boolean-and-value)\n - [Default option value](#default-option-value)\n - [Other option types, negatable boolean and boolean|value](#other-option-types-negatable-boolean-and-booleanvalue)\n - [Required option](#required-option)\n - [Variadic option](#variadic-option)\n - [Version option](#version-option)\n - [More configuration](#more-configuration)\n - [Custom option processing](#custom-option-processing)\n - [Commands](#commands)\n - [Command-arguments](#command-arguments)\n - [More configuration](#more-configuration-1)\n - [Custom argument processing](#custom-argument-processing)\n - [Action handler](#action-handler)\n - [Stand-alone executable (sub)commands](#stand-alone-executable-subcommands)\n - [Life cycle hooks](#life-cycle-hooks)\n - [Automated help](#automated-help)\n - [Custom help](#custom-help)\n - [Display help after errors](#display-help-after-errors)\n - [Display help from code](#display-help-from-code)\n - [.name](#name)\n - [.usage](#usage)\n - [.description and .summary](#description-and-summary)\n - [.helpOption(flags, description)](#helpoptionflags-description)\n - [.helpCommand()](#helpcommand)\n - [Help Groups](#help-groups)\n - [More configuration](#more-configuration-2)\n - [Custom event listeners](#custom-event-listeners)\n - [Bits and pieces](#bits-and-pieces)\n - [.parse() and .parseAsync()](#parse-and-parseasync)\n - [Parsing Configuration](#parsing-configuration)\n - [Legacy options as properties](#legacy-options-as-properties)\n - [TypeScript](#typescript)\n - [createCommand()](#createcommand)\n - [Node options such as `--harmony`](#node-options-such-as---harmony)\n - [Debugging stand-alone executable subcommands](#debugging-stand-alone-executable-subcommands)\n - [npm run-script](#npm-run-script)\n - [Display error](#display-error)\n - [Override exit and output handling](#override-exit-and-output-handling)\n - [Additional documentation](#additional-documentation)\n - [Support](#support)\n - [Commander for enterprise](#commander-for-enterprise)\n\nFor information about terms used in this document see: [terminology](./docs/terminology.md)\n\n## Installation\n\n```sh\nnpm install commander\n```\n\n## Quick Start\n\nYou write code to describe your command line interface.\nCommander looks after parsing the arguments into options and command-arguments,\ndisplays usage errors for problems, and implements a help system.\n\nCommander is strict and displays an error for unrecognised options.\nThe two most used option types are a boolean option, and an option which takes its value from the following argument.\n\nExample file: [split.js](./examples/split.js)\n\n```js\nconst { program } = require('commander');\n\nprogram\n .option('--first')\n .option('-s, --separator ')\n .argument('');\n\nprogram.parse();\n\nconst options = program.opts();\nconst limit = options.first ? 1 : undefined;\nconsole.log(program.args[0].split(options.separator, limit));\n```\n\n```console\n$ node split.js -s / --fits a/b/c\nerror: unknown option '--fits'\n(Did you mean --first?)\n$ node split.js -s / --first a/b/c\n[ 'a' ]\n```\n\nHere is a more complete program using a subcommand and with descriptions for the help. In a multi-command program, you have an action handler for each command (or stand-alone executables for the commands).\n\nExample file: [string-util.js](./examples/string-util.js)\n\n```js\nconst { Command } = require('commander');\nconst program = new Command();\n\nprogram\n .name('string-util')\n .description('CLI to some JavaScript string utilities')\n .version('0.8.0');\n\nprogram.command('split')\n .description('Split a string into substrings and display as an array')\n .argument('', 'string to split')\n .option('--first', 'display just the first substring')\n .option('-s, --separator ', 'separator character', ',')\n .action((str, options) => {\n const limit = options.first ? 1 : undefined;\n console.log(str.split(options.separator, limit));\n });\n\nprogram.parse();\n```\n\n```console\n$ node string-util.js help split\nUsage: string-util split [options] \n\nSplit a string into substrings and display as an array.\n\nArguments:\n string string to split\n\nOptions:\n --first display just the first substring\n -s, --separator separator character (default: \",\")\n -h, --help display help for command\n\n$ node string-util.js split --separator=/ a/b/c\n[ 'a', 'b', 'c' ]\n```\n\nMore samples can be found in the [examples](https://github.com/tj/commander.js/tree/master/examples) directory.\n\n## Declaring _program_ variable\n\nCommander exports a global object which is convenient for quick programs.\nThis is used in the examples in this README for brevity.\n\n```js\n// CommonJS (.cjs)\nconst { program } = require('commander');\n```\n\nFor larger programs which may use commander in multiple ways, including unit testing, it is better to create a local Command object to use.\n\n```js\n// CommonJS (.cjs)\nconst { Command } = require('commander');\nconst program = new Command();\n```\n\n```js\n// ECMAScript (.mjs)\nimport { Command } from 'commander';\nconst program = new Command();\n```\n\n```ts\n// TypeScript (.ts)\nimport { Command } from 'commander';\nconst program = new Command();\n```\n\n## Options\n\nOptions are defined with the `.option()` method, also serving as documentation for the options. Each option can have a short flag (single character) and a long name, separated by a comma or space or vertical bar ('|'). To allow a wider range of short-ish flags than just\nsingle characters, you may also have two long options. Examples:\n\n```js\nprogram\n .option('-p, --port ', 'server port number')\n .option('--trace', 'add extra debugging output')\n .option('--ws, --workspace ', 'use a custom workspace')\n```\n\nThe parsed options can be accessed by calling `.opts()` on a `Command` object, and are passed to the action handler.\n\nMulti-word options such as \"--template-engine\" are camel-cased, becoming `program.opts().templateEngine` etc.\n\nAn option and its option-argument can be separated by a space, or combined into the same argument. The option-argument can follow the short option directly or follow an `=` for a long option.\n\n```sh\nserve -p 80\nserve -p80\nserve --port 80\nserve --port=80\n```\n\nYou can use `--` to indicate the end of the options, and any remaining arguments will be used without being interpreted.\n\nBy default, options on the command line are not positional, and can be specified before or after other arguments.\n\nThere are additional related routines for when `.opts()` is not enough:\n\n- `.optsWithGlobals()` returns merged local and global option values\n- `.getOptionValue()` and `.setOptionValue()` work with a single option value\n- `.getOptionValueSource()` and `.setOptionValueWithSource()` include where the option value came from\n\n### Common option types, boolean and value\n\nThe two most used option types are a boolean option, and an option which takes its value\nfrom the following argument (declared with angle brackets like `--expect `). Both are `undefined` unless specified on command line.\n\nExample file: [options-common.js](./examples/options-common.js)\n\n```js\nprogram\n .option('-d, --debug', 'output extra debugging')\n .option('-s, --small', 'small pizza size')\n .option('-p, --pizza-type ', 'flavour of pizza');\n\nprogram.parse(process.argv);\n\nconst options = program.opts();\nif (options.debug) console.log(options);\nconsole.log('pizza details:');\nif (options.small) console.log('- small pizza size');\nif (options.pizzaType) console.log(`- ${options.pizzaType}`);\n```\n\n```console\n$ pizza-options -p\nerror: option '-p, --pizza-type ' argument missing\n$ pizza-options -d -s -p vegetarian\n{ debug: true, small: true, pizzaType: 'vegetarian' }\npizza details:\n- small pizza size\n- vegetarian\n$ pizza-options --pizza-type=cheese\npizza details:\n- cheese\n```\n\nMultiple boolean short options may be combined following the dash, and may be followed by a single short option taking a value.\nFor example `-d -s -p cheese` may be written as `-ds -p cheese` or even `-dsp cheese`.\n\nOptions with an expected option-argument are greedy and will consume the following argument whatever the value.\nSo `--id -xyz` reads `-xyz` as the option-argument.\n\n`program.parse(arguments)` processes the arguments, leaving any args not consumed by the program options in the `program.args` array. The parameter is optional and defaults to `process.argv`.\n\n### Default option value\n\nYou can specify a default value for an option.\n\nExample file: [options-defaults.js](./examples/options-defaults.js)\n\n```js\nprogram\n .option('-c, --cheese ', 'add the specified type of cheese', 'blue');\n\nprogram.parse();\n\nconsole.log(`cheese: ${program.opts().cheese}`);\n```\n\n```console\n$ pizza-options\ncheese: blue\n$ pizza-options --cheese stilton\ncheese: stilton\n```\n\n### Other option types, negatable boolean and boolean|value\n\nYou can define a boolean option long name with a leading `no-` to set the option value to false when used.\nDefined alone this also makes the option true by default.\n\nIf you define `--foo` first, adding `--no-foo` does not change the default value from what it would\notherwise be.\n\nExample file: [options-negatable.js](./examples/options-negatable.js)\n\n```js\nprogram\n .option('--no-sauce', 'Remove sauce')\n .option('--cheese ', 'cheese flavour', 'mozzarella')\n .option('--no-cheese', 'plain with no cheese')\n .parse();\n\nconst options = program.opts();\nconst sauceStr = options.sauce ? 'sauce' : 'no sauce';\nconst cheeseStr = (options.cheese === false) ? 'no cheese' : `${options.cheese} cheese`;\nconsole.log(`You ordered a pizza with ${sauceStr} and ${cheeseStr}`);\n```\n\n```console\n$ pizza-options\nYou ordered a pizza with sauce and mozzarella cheese\n$ pizza-options --sauce\nerror: unknown option '--sauce'\n$ pizza-options --cheese=blue\nYou ordered a pizza with sauce and blue cheese\n$ pizza-options --no-sauce --no-cheese\nYou ordered a pizza with no sauce and no cheese\n```\n\nYou can specify an option which may be used as a boolean option but may optionally take an option-argument\n(declared with square brackets like `--optional [value]`).\n\nExample file: [options-boolean-or-value.js](./examples/options-boolean-or-value.js)\n\n```js\nprogram\n .option('-c, --cheese [type]', 'Add cheese with optional type');\n\nprogram.parse(process.argv);\n\nconst options = program.opts();\nif (options.cheese === undefined) console.log('no cheese');\nelse if (options.cheese === true) console.log('add cheese');\nelse console.log(`add cheese type ${options.cheese}`);\n```\n\n```console\n$ pizza-options\nno cheese\n$ pizza-options --cheese\nadd cheese\n$ pizza-options --cheese mozzarella\nadd cheese type mozzarella\n```\n\nOptions with an optional option-argument are not greedy and will ignore arguments starting with a dash.\nSo `id` behaves as a boolean option for `--id -ABCD`, but you can use a combined form if needed like `--id=-ABCD`.\nNegative numbers are special and are accepted as an option-argument.\n\nFor information about possible ambiguous cases, see [options taking varying arguments](./docs/options-in-depth.md).\n\n### Required option\n\nYou may specify a required (mandatory) option using `.requiredOption()`. The option must have a value after parsing, usually specified on the command line, or perhaps from a default value (say from environment). The method is otherwise the same as `.option()` in format, taking flags and description, and optional default value or custom processing.\n\nExample file: [options-required.js](./examples/options-required.js)\n\n```js\nprogram\n .requiredOption('-c, --cheese ', 'pizza must have cheese');\n\nprogram.parse();\n```\n\n```console\n$ pizza\nerror: required option '-c, --cheese ' not specified\n```\n\n### Variadic option\n\nYou may make an option variadic by appending `...` to the value placeholder when declaring the option. On the command line you\ncan then specify multiple option-arguments, and the parsed option value will be an array. The extra arguments\nare read until the first argument starting with a dash. The special argument `--` stops option processing entirely. If a value\nis specified in the same argument as the option then no further values are read.\n\nExample file: [options-variadic.js](./examples/options-variadic.js)\n\n```js\nprogram\n .option('-n, --number ', 'specify numbers')\n .option('-l, --letter [letters...]', 'specify letters');\n\nprogram.parse();\n\nconsole.log('Options: ', program.opts());\nconsole.log('Remaining arguments: ', program.args);\n```\n\n```console\n$ collect -n 1 2 3 --letter a b c\nOptions: { number: [ '1', '2', '3' ], letter: [ 'a', 'b', 'c' ] }\nRemaining arguments: []\n$ collect --letter=A -n80 operand\nOptions: { number: [ '80' ], letter: [ 'A' ] }\nRemaining arguments: [ 'operand' ]\n$ collect --letter -n 1 -n 2 3 -- operand\nOptions: { number: [ '1', '2', '3' ], letter: true }\nRemaining arguments: [ 'operand' ]\n```\n\nFor information about possible ambiguous cases, see [options taking varying arguments](./docs/options-in-depth.md).\n\n### Version option\n\nThe optional `version` method adds handling for displaying the command version. The default option flags are `-V` and `--version`, and when present the command prints the version number and exits.\n\n```js\nprogram.version('0.0.1');\n```\n\n```console\n$ ./examples/pizza -V\n0.0.1\n```\n\nYou may change the flags and description by passing additional parameters to the `version` method, using\nthe same syntax for flags as the `option` method.\n\n```js\nprogram.version('0.0.1', '-v, --vers', 'output the current version');\n```\n\n### More configuration\n\nYou can add most options using the `.option()` method, but there are some additional features available\nby constructing an `Option` explicitly for less common cases.\n\nExample files: [options-extra.js](./examples/options-extra.js), [options-env.js](./examples/options-env.js), [options-conflicts.js](./examples/options-conflicts.js), [options-implies.js](./examples/options-implies.js)\n\n```js\nprogram\n .addOption(new Option('-s, --secret').hideHelp())\n .addOption(new Option('-t, --timeout ', 'timeout in seconds').default(60, 'one minute'))\n .addOption(new Option('-d, --drink ', 'drink size').choices(['small', 'medium', 'large']))\n .addOption(new Option('-p, --port ', 'port number').env('PORT'))\n .addOption(new Option('--donate [amount]', 'optional donation in dollars').preset('20').argParser(parseFloat))\n .addOption(new Option('--disable-server', 'disables the server').conflicts('port'))\n .addOption(new Option('--free-drink', 'small drink included free ').implies({ drink: 'small' }));\n```\n\n```console\n$ extra --help\nUsage: help [options]\n\nOptions:\n -t, --timeout timeout in seconds (default: one minute)\n -d, --drink drink cup size (choices: \"small\", \"medium\", \"large\")\n -p, --port port number (env: PORT)\n --donate [amount] optional donation in dollars (preset: \"20\")\n --disable-server disables the server\n --free-drink small drink included free\n -h, --help display help for command\n\n$ extra --drink huge\nerror: option '-d, --drink ' argument 'huge' is invalid. Allowed choices are small, medium, large.\n\n$ PORT=80 extra --donate --free-drink\nOptions: { timeout: 60, donate: 20, port: '80', freeDrink: true, drink: 'small' }\n\n$ extra --disable-server --port 8000\nerror: option '--disable-server' cannot be used with option '-p, --port '\n```\n\nSpecify a required (mandatory) option using the `Option` method `.makeOptionMandatory()`. This matches the `Command` method [.requiredOption()](#required-option).\n\n### Custom option processing\n\nYou may specify a function to do custom processing of option-arguments. The callback function receives two parameters,\nthe user specified option-argument and the previous value for the option. It returns the new value for the option.\n\nThis allows you to coerce the option-argument to the desired type, or accumulate values, or do entirely custom processing.\n\nYou can optionally specify the default/starting value for the option after the function parameter.\n\nExample file: [options-custom-processing.js](./examples/options-custom-processing.js)\n\n```js\nfunction myParseInt(value, dummyPrevious) {\n // parseInt takes a string and a radix\n const parsedValue = parseInt(value, 10);\n if (isNaN(parsedValue)) {\n throw new commander.InvalidArgumentError('Not a number.');\n }\n return parsedValue;\n}\n\nfunction increaseVerbosity(dummyValue, previous) {\n return previous + 1;\n}\n\nfunction collect(value, previous) {\n return previous.concat([value]);\n}\n\nfunction commaSeparatedList(value, dummyPrevious) {\n return value.split(',');\n}\n\nprogram\n .option('-f, --float ', 'float argument', parseFloat)\n .option('-i, --integer ', 'integer argument', myParseInt)\n .option('-v, --verbose', 'verbosity that can be increased', increaseVerbosity, 0)\n .option('-c, --collect ', 'repeatable value', collect, [])\n .option('-l, --list ', 'comma separated list', commaSeparatedList)\n;\n\nprogram.parse();\n\nconst options = program.opts();\nif (options.float !== undefined) console.log(`float: ${options.float}`);\nif (options.integer !== undefined) console.log(`integer: ${options.integer}`);\nif (options.verbose > 0) console.log(`verbosity: ${options.verbose}`);\nif (options.collect.length > 0) console.log(options.collect);\nif (options.list !== undefined) console.log(options.list);\n```\n\n```console\n$ custom -f 1e2\nfloat: 100\n$ custom --integer 2\ninteger: 2\n$ custom -v -v -v\nverbose: 3\n$ custom -c a -c b -c c\n[ 'a', 'b', 'c' ]\n$ custom --list x,y,z\n[ 'x', 'y', 'z' ]\n```\n\n## Commands\n\nYou can specify (sub)commands using `.command()` or `.addCommand()`. There are two ways these can be implemented: using an action handler attached to the command, or as a stand-alone executable file (described in more detail later). The subcommands may be nested ([example](./examples/nestedCommands.js)).\n\nIn the first parameter to `.command()` you specify the command name. You may append the command-arguments after the command name, or specify them separately using `.argument()`. The arguments may be `` or `[optional]`, and the last argument may also be `variadic...`.\n\nYou can use `.addCommand()` to add an already configured subcommand to the program.\n\nFor example:\n\n```js\n// Command implemented using action handler (description is supplied separately to `.command`)\n// Returns new command for configuring.\nprogram\n .command('clone [destination]')\n .description('clone a repository into a newly created directory')\n .action((source, destination) => {\n console.log('clone command called');\n });\n\n// Command implemented using stand-alone executable file, indicated by adding description as second parameter to `.command`.\n// Returns `this` for adding more commands.\nprogram\n .command('start ', 'start named service')\n .command('stop [service]', 'stop named service, or all if no name supplied');\n\n// Command prepared separately.\n// Returns `this` for adding more commands.\nprogram\n .addCommand(build.makeBuildCommand());\n```\n\nConfiguration options can be passed with the call to `.command()` and `.addCommand()`. Specifying `hidden: true` will\nremove the command from the generated help output. Specifying `isDefault: true` will run the subcommand if no other\nsubcommand is specified ([example](./examples/defaultCommand.js)).\n\nYou can add alternative names for a command with `.alias()`. ([example](./examples/alias.js))\n\n`.command()` automatically copies the inherited settings from the parent command to the newly created subcommand. This is only done during creation, any later setting changes to the parent are not inherited.\n\nFor safety, `.addCommand()` does not automatically copy the inherited settings from the parent command. There is a helper routine `.copyInheritedSettings()` for copying the settings when they are wanted.\n\n### Command-arguments\n\nFor subcommands, you can specify the argument syntax in the call to `.command()` (as shown above). This\nis the only method usable for subcommands implemented using a stand-alone executable, but for other subcommands\nyou can instead use the following method.\n\nTo configure a command, you can use `.argument()` to specify each expected command-argument.\nYou supply the argument name and an optional description. The argument may be `` or `[optional]`.\nYou can specify a default value for an optional command-argument.\n\nExample file: [argument.js](./examples/argument.js)\n\n```js\nprogram\n .version('0.1.0')\n .argument('', 'user to login')\n .argument('[password]', 'password for user, if required', 'no password given')\n .action((username, password) => {\n console.log('username:', username);\n console.log('password:', password);\n });\n```\n\n The last argument of a command can be variadic, and only the last argument. To make an argument variadic you\n append `...` to the argument name. A variadic argument is passed to the action handler as an array. For example:\n\n```js\nprogram\n .version('0.1.0')\n .command('rmdir')\n .argument('')\n .action(function (dirs) {\n dirs.forEach((dir) => {\n console.log('rmdir %s', dir);\n });\n });\n```\n\nThere is a convenience method to add multiple arguments at once, but without descriptions:\n\n```js\nprogram\n .arguments('');\n```\n\n#### More configuration\n\nThere are some additional features available by constructing an `Argument` explicitly for less common cases.\n\nExample file: [arguments-extra.js](./examples/arguments-extra.js)\n\n```js\nprogram\n .addArgument(new commander.Argument('', 'drink cup size').choices(['small', 'medium', 'large']))\n .addArgument(new commander.Argument('[timeout]', 'timeout in seconds').default(60, 'one minute'))\n```\n\n#### Custom argument processing\n\nYou may specify a function to do custom processing of command-arguments (like for option-arguments).\nThe callback function receives two parameters, the user specified command-argument and the previous value for the argument.\nIt returns the new value for the argument.\n\nThe processed argument values are passed to the action handler, and saved as `.processedArgs`.\n\nYou can optionally specify the default/starting value for the argument after the function parameter.\n\nExample file: [arguments-custom-processing.js](./examples/arguments-custom-processing.js)\n\n```js\nprogram\n .command('add')\n .argument('', 'integer argument', myParseInt)\n .argument('[second]', 'integer argument', myParseInt, 1000)\n .action((first, second) => {\n console.log(`${first} + ${second} = ${first + second}`);\n })\n;\n```\n\n### Action handler\n\nThe action handler gets passed a parameter for each command-argument you declared, and two additional parameters\nwhich are the parsed options and the command object itself.\n\nExample file: [thank.js](./examples/thank.js)\n\n```js\nprogram\n .argument('')\n .option('-t, --title ', 'title to use before name')\n .option('-d, --debug', 'display some debugging')\n .action((name, options, command) => {\n if (options.debug) {\n console.error('Called %s with options %o', command.name(), options);\n }\n const title = options.title ? `${options.title} ` : '';\n console.log(`Thank-you ${title}${name}`);\n });\n```\n\nIf you prefer, you can work with the command directly and skip declaring the parameters for the action handler. The `this` keyword is set to the running command and can be used from a function expression (but not from an arrow function).\n\nExample file: [action-this.js](./examples/action-this.js)\n\n```js\nprogram\n .command('serve')\n .argument('