{"maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"keywords":["parse","url","node","git","advanced"],"dist-tags":{"latest":"11.1.0"},"author":{"name":"Ionică Bizău","email":"bizauionica@gmail.com","url":"https://ionicabizau.net"},"description":"An advanced url parser supporting git urls too.","readme":"<!-- Please do not edit this file. Edit the `blah` field in the `package.json` instead. If in doubt, open an issue. -->\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n# parse-url\n\n [![Support me on Patreon][badge_patreon]][patreon] [![Buy me a book][badge_amazon]][amazon] [![PayPal][badge_paypal_donate]][paypal-donations] [![Ask me anything](https://img.shields.io/badge/ask%20me-anything-1abc9c.svg)](https://github.com/IonicaBizau/ama) [![Version](https://img.shields.io/npm/v/parse-url.svg)](https://www.npmjs.com/package/parse-url) [![Downloads](https://img.shields.io/npm/dt/parse-url.svg)](https://www.npmjs.com/package/parse-url) [![Get help on Codementor](https://cdn.codementor.io/badges/get_help_github.svg)](https://www.codementor.io/@johnnyb?utm_source=github&utm_medium=button&utm_term=johnnyb&utm_campaign=github)\n\n<a href=\"https://www.buymeacoffee.com/H96WwChMy\" target=\"_blank\"><img src=\"https://www.buymeacoffee.com/assets/img/custom_images/yellow_img.png\" alt=\"Buy Me A Coffee\"></a>\n\n\n\n\n\n\n\n> An advanced url parser supporting git urls too.\n\n\n\n\n\n\nFor low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls.\n\n\n\n\n\n\n\n\n\n\n\n\n## :cloud: Installation\n\n```sh\n# Using npm\nnpm install --save parse-url\n\n# Using yarn\nyarn add parse-url\n```\n\n\n\n\n\n\n\n\n\n\n\n\n\n## :clipboard: Example\n\n\n\n```js\n// Dependencies\nimport parseUrl from \"parse-url\";\n\nconsole.log(parseUrl(\"http://ionicabizau.net/blog\"))\n// {\n//   protocols: [ 'http' ],\n//   protocol: 'http',\n//   port: '',\n//   resource: 'ionicabizau.net',\n//   user: '',\n//   password: '',\n//   pathname: '/blog',\n//   hash: '',\n//   search: '',\n//   href: 'http://ionicabizau.net/blog',\n//   query: {}\n// }\n\nconsole.log(parseUrl(\"http://domain.com/path/name?foo=bar&bar=42#some-hash\"))\n// {\n//   protocols: [ 'http' ],\n//   protocol: 'http',\n//   port: '',\n//   resource: 'domain.com',\n//   user: '',\n//   password: '',\n//   pathname: '/path/name',\n//   hash: 'some-hash',\n//   search: 'foo=bar&bar=42',\n//   href: 'http://domain.com/path/name?foo=bar&bar=42#some-hash',\n//   query: { foo: 'bar', bar: '42' }\n// }\n\n// If you want to parse fancy Git urls, turn off the automatic url normalization\nconsole.log(parseUrl(\"git+ssh://git@host.xz/path/name.git\", false))\n// {\n//   protocols: [ 'git', 'ssh' ],\n//   protocol: 'git',\n//   port: '',\n//   resource: 'host.xz',\n//   user: 'git',\n//   password: '',\n//   pathname: '/path/name.git',\n//   hash: '',\n//   search: '',\n//   href: 'git+ssh://git@host.xz/path/name.git',\n//   query: {}\n// }\n\nconsole.log(parseUrl(\"git@github.com:IonicaBizau/git-stats.git\", false))\n// {\n//   protocols: [ 'ssh' ],\n//   protocol: 'ssh',\n//   port: '',\n//   resource: 'github.com',\n//   user: 'git',\n//   password: '',\n//   pathname: '/IonicaBizau/git-stats.git',\n//   hash: '',\n//   search: '',\n//   href: 'git@github.com:IonicaBizau/git-stats.git',\n//   query: {}\n// }\n```\n\n\n\n\n\n\n\n\n\n\n\n## :memo: Documentation\n\n\n### `parseUrl(url, normalize)`\nParses the input url.\n\n**Note**: This *throws* if invalid urls are provided.\n\n#### Params\n\n- **String** `url`: The input url.\n- **Boolean|Object** `normalize`: Whether to normalize the url or not. Default is `false`. If `true`, the url will be normalized. If an object,\nit will be the options object sent to\n[`normalize-url`](https://github.com/sindresorhus/normalize-url). For\nSSH urls, normalize won't work.\n\n#### Return\n- **Object** An object containing the following fields:\n   - `protocols` (Array): An array with the url protocols (usually it has one element).\n   - `protocol` (String): The first protocol, `\"ssh\"` (if the url is a ssh url) or `\"file\"`.\n   - `port` (String): The domain port.\n   - `resource` (String): The url domain (including subdomains).\n   - `host` (String):  The fully qualified domain name of a network host, or its IP address.\n   - `user` (String): The authentication user (usually for ssh urls).\n   - `pathname` (String): The url pathname.\n   - `hash` (String): The url hash.\n   - `search` (String): The url querystring value.\n   - `href` (String): The input url.\n   - `query` (Object): The url querystring, parsed as object.\n   - `parse_failed` (Boolean): Whether the parsing failed or not.\n\n\n\n\n\n\n\n\n\n## :question: Get Help\n\nThere are few ways to get help:\n\n\n\n 1. Please [post questions on Stack Overflow](https://stackoverflow.com/questions/ask). You can open issues with questions, as long you add a link to your Stack Overflow question.\n 2. For bug reports and feature requests, open issues. :bug:\n 3. For direct and quick help, you can [use Codementor](https://www.codementor.io/johnnyb). :rocket:\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n## :yum: How to contribute\nHave an idea? Found a bug? See [how to contribute][contributing].\n\n\n## :sparkling_heart: Support my projects\nI open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously,\nthis takes time. You can integrate and use these projects in your applications *for free*! You can even change the source code and redistribute (even resell it).\n\nHowever, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:\n\n\n - Starring and sharing the projects you like :rocket:\n - [![Buy me a book][badge_amazon]][amazon]—I love books! I will remember you after years if you buy me one. :grin: :book:\n - [![PayPal][badge_paypal]][paypal-donations]—You can make one-time donations via PayPal. I'll probably buy a ~~coffee~~ tea. :tea:\n - [![Support me on Patreon][badge_patreon]][patreon]—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).\n - **Bitcoin**—You can send me bitcoins at this address (or scanning the code below): `1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6`\n\n    ![](https://i.imgur.com/z6OQI95.png)\n\n\nThanks! :heart:\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n## :dizzy: Where is this library used?\nIf you are using this library in one of your projects, add it in this list. :sparkles:\n\n - `@_nomtek/react-native-shimmer-animation`\n - `@aabelmann/ui-layer`\n - `@abdoalghoul/react-native-emoji-keyboard`\n - `@abhinavoneuipoc/stencil-test`\n - `@adatechnology/react-native-android-getnet-pos`\n - `@adembacaj/react-native-google-pay`\n - `@ahmed_shaban123/react-native-currencyinput`\n - `@ali5049/react-native-buttons`\n - `@altpebush/primevue`\n - `@amirdiafi/react-native-ios-haptics`\n - `@amiruldev/wajs`\n - `@angga30prabu/wa-modified`\n - `@apardellass/react-native-audio-stream`\n - `@appconda/app`\n - `@appconda/next`\n - `@aruntestpayment/react-native-payu-payment`\n - `@aviinash_jha/react-native-test_multiply`\n - `@azalpacir/react-native-dhp-printer`\n - `@brantalikp/rn-resize`\n - `@buganto/client`\n - `@con-test/react-native-concent-common`\n - `@contentz/build`\n - `@corelmax/react-native-my2c2p-sdk`\n - `@cs6/react-native-test-native-view-library`\n - `@damruravihara/react-native-testing-package`\n - `@dataparty/api`\n - `@enkeledi/react-native-week-month-date-picker`\n - `@extrieve_technologies/quickcapture_react_native`\n - `@felipesimmi/react-native-datalogic-module`\n - `@foundernetes/machines`\n - `@foundernetes/metal-debian`\n - `@geeky-apo/react-native-advanced-clipboard`\n - `@happy-gastro/react-native-printer-module`\n - `@hawkingnetwork/react-native-tab-view`\n - `@hbglobal/react-native-actions-shortcuts`\n - `@hemith/react-native-tnk`\n - `@hieuquang2212/form`\n - `@hstech/utils`\n - `@idas1/ui-component-lib`\n - `@jfilipe-sparta/react-native-module_2`\n - `@jimengio/mocked-proxy`\n - `@jprustv/sulla-hotfix`\n - `@kgit/readability`\n - `@kgit/readbility`\n - `@klevn/solid-router`\n - `@kriblet/wa-automate`\n - `@labiebhn_/react-native-multiplier`\n - `@lakhlaifi/semantic-gitlab`\n - `@lakutata-module/service`\n - `@lehuyaa/my-assets`\n - `@logisticinfotech/react-native-geocoding-reversegeocoding`\n - `@mergulhao/wa-automate`\n - `@mockswitch/cli`\n - `@navabi/react-native-ssl-pinning`\n - `@ndla/source-map-resolver`\n - `@notnuzzel/crawl`\n - `@oiti/rn-liveness2d`\n - `@open-wa/wa-automate`\n - `@openshift-assisted/ui-lib`\n - `@orgbluetooth/react-native-arunpayupayment`\n - `@orgbluetooth/react-native-payupayment`\n - `@pagopa/io-react-native-wallet`\n - `@parallelnft/web3modal`\n - `@phpboyscout/semantic-release-gitlab`\n - `@phuocnb/semrelease-gitlab`\n - `@pocket-tools/image-utils`\n - `@podpodium/common`\n - `@ponchodien/react-native-printer-imin`\n - `@positionex/position-sdk`\n - `@praella/localisationist`\n - `@procivis/one-react-native-components`\n - `@qiwi/sourcecrumbs`\n - `@react-18-pdf/root`\n - `@react-native-ui-design/button`\n - `@roq/ui-react`\n - `@roshub/api`\n - `@saad27/react-native-bottom-tab-tour`\n - `@safely-project/safely-ts`\n - `@sephriot/react-native-persistable-uri`\n - `@sidghimire/react-native-mapbox-navigation`\n - `@sridharetikala/react-native-rn-lib-custom-components`\n - `@status-im/react-native-transparent-video`\n - `@syedt/hellosdk`\n - `@taingo97/react-native-awesome-module`\n - `@taingo97/react-native-bluetooth-xprinter`\n - `@taingo97/react-native-expo-key-rsa-kt`\n - `@taingo97/react-native-expo-rsa`\n - `@taingo97/react-native-generate-key-rsa`\n - `@taingo97/react-native-key-rsa`\n - `@taingo97/react-native-print-xprinter`\n - `@taingo97/react-native-printer-imin`\n - `@taingo97/react-native-rsa`\n - `@taingo97/react-native-rsa-expo`\n - `@taingo97/react-native-sunmi-printer`\n - `@taingo97/react-native-telpo-printer`\n - `@teles1-semantic-release/gitlab`\n - `@thinxviewx/core-rn`\n - `@tlgeo/react-native-gdal`\n - `@tomw2w/my-nuxt-layer`\n - `@visioglobe/react-native-visioglobe`\n - `@wecraftapps/react-native-use-keyboard`\n - `@yplabs-ltd/react-native-detector`\n - `@zotasys/native`\n - `actttt`\n - `agent-get-agent`\n - `anakketiga`\n - `anaklanangtea`\n - `anakwadontea`\n - `angularvezba`\n - `apaas-track`\n - `api-reach-react-native-fix`\n - `archlibrary`\n - `arifbudixz`\n - `astra-ufo-sdk`\n - `awesome-module-kd`\n - `ba-js-cookie-banner`\n - `begg`\n - `bilibili2local`\n - `biometric-st`\n - `birken-react-native-community-image-editor`\n - `blitzzz`\n - `build-plugin-ssr`\n - `candlelabssdk`\n - `checkbox-component`\n - `cli-live-tutorial`\n - `connex-kakilang`\n - `connex_ram00nez`\n - `demo-test-scrn`\n - `design-system-trial-milyasbpa`\n - `dogandev-simple-toast`\n - `egg-muc-custom-loader`\n - `expo-renavigate`\n - `eyereasoner`\n - `fawaterak-online-payment`\n - `fawatrak-online-payment`\n - `fixed_form_builder`\n - `fluent.adflow.reactnativesdk`\n - `fluent.adflow.reactnativesdk-alpha`\n - `fmsl`\n - `framework_test_library_sixdee`\n - `framework_test_library_sixdee_new`\n - `framework_test_library_sixdee_new_new`\n - `gamification-integration-new`\n - `gaurav-react-native-loop`\n - `genz-native-elements`\n - `gerimismalamsenin`\n - `get-tarball-cli`\n - `gf-roq-ui-react`\n - `gh-monoproject-cli`\n - `gitlab-backup-util-harduino`\n - `gr-roq-ui-react`\n - `graphmilker`\n - `hologit`\n - `hong1-utils`\n - `hui-plugin-wss`\n - `iiif-manifest-editor`\n - `imnextgen-academy-updater`\n - `ipsamvel`\n - `jamuskalim`\n - `jesh-calculation`\n - `jnf-accesscontrol-rnttl`\n - `jordy-frijters-test-lib`\n - `jrennsoh88-react-native-scroll-indicator`\n - `jy-act`\n - `khaled-salem-custom-components`\n - `knex-paginate-transaction`\n - `l2forlerna`\n - `lunatic-suggester`\n - `luojia-cli-dev`\n - `mangudinlagirajin`\n - `michael-stun`\n - `miguelcostero-ng2-toasty`\n - `my-package-wamo`\n - `native-apple-login`\n - `native-date-picker-module`\n - `native-google-login`\n - `native-kakao-login`\n - `native-modal-damage-vehicle`\n - `new-awesome-4321`\n - `njs-wa-auto`\n - `normalize-id`\n - `npm_one_12_34_1_`\n - `npm_one_1_2_3`\n - `npm_one_2_2`\n - `npm_qwerty`\n - `nuxtpaginations`\n - `octopulse`\n - `ori-bot-react-native`\n - `pasbeaucoupmoinsrave`\n - `patepangdeui`\n - `payutesting`\n - `pileuleuyantea`\n - `pnm-yph-react-native-custom-components`\n - `project-wajs-dv`\n - `pyreswap-sdk`\n - `raact-native-arunramya151`\n - `reac-native-arun-ramya-test`\n - `react-native-adarsh_react_native_video_player`\n - `react-native-android-native-view`\n - `react-native-android-video-player-view`\n - `react-native-android-view`\n - `react-native-animate-text`\n - `react-native-app-bubble`\n - `react-native-app-integrity-checksum`\n - `react-native-arps-authorize-net`\n - `react-native-arun-ramya-test`\n - `react-native-arunjeyam1987`\n - `react-native-arunmeena1987`\n - `react-native-arunramya151`\n - `react-native-auth-service-client`\n - `react-native-aventonfacetec-aventon`\n - `react-native-awesome-android-123`\n - `react-native-awesome-android-123-zeotap`\n - `react-native-awesome-module-dharmesh`\n - `react-native-awesome-module-latest`\n - `react-native-awesome-module-two`\n - `react-native-azure-communication-services`\n - `react-native-badge-control`\n - `react-native-basic-app`\n - `react-native-basic-screen`\n - `react-native-biometric-authenticate`\n - `react-native-bleccs-components`\n - `react-native-bluetooth-device-detect`\n - `react-native-bottom-tab-designs`\n - `react-native-bridge-package`\n - `react-native-bubble-chart`\n - `react-native-build-vesion-getter`\n - `react-native-chat-circle-sdk`\n - `react-native-check-component`\n - `react-native-chenaar`\n - `react-native-components-design`\n - `react-native-conekta-card-tokenizer`\n - `react-native-contact-list`\n - `react-native-cplus`\n - `react-native-create-video-thumbnail`\n - `react-native-ctp-odp`\n - `react-native-custom-image-carousel`\n - `react-native-custom-poccomponent`\n - `react-native-custom-poccomponent-next`\n - `react-native-custome-component-demo`\n - `react-native-datacapture-core`\n - `react-native-dff-components-demo`\n - `react-native-dhp-printer`\n - `react-native-dimensions-layout`\n - `react-native-dsphoto-module`\n - `react-native-dummy-view`\n - `react-native-escape`\n - `react-native-fedlight-dsm`\n - `react-native-geo-locator`\n - `react-native-ghn-ekyc`\n - `react-native-ideo-rn-notifications`\n - `react-native-innity-2`\n - `react-native-innity-remaster`\n - `react-native-input-library`\n - `react-native-is7`\n - `react-native-jsi-device-info`\n - `react-native-kakao-maps`\n - `react-native-klarify-ios`\n - `react-native-klarify-ui`\n - `react-native-klc`\n - `react-native-lazp-device-info`\n - `react-native-lib-test-rn-1`\n - `react-native-library-testing-422522`\n - `react-native-line-login-android`\n - `react-native-login-demo-test`\n - `react-native-lowlatency`\n - `react-native-loyalty-platforms`\n - `react-native-manh-test`\n - `react-native-manual-ios-sdk`\n - `react-native-modal-progress-bar`\n - `react-native-module-arge`\n - `react-native-module-for-testing`\n - `react-native-moosa-lib-for-test`\n - `react-native-multi-bluetooth-printer`\n - `react-native-multiplier-altroncoso`\n - `react-native-multiplier-component`\n - `react-native-multiplier-demo`\n - `react-native-multiplier2`\n - `react-native-multiply`\n - `react-native-multiply-component`\n - `react-native-multiselector`\n - `react-native-mun-kit`\n - `react-native-my-first-try-arun-ramya`\n - `react-native-native-audio-engine`\n - `react-native-native-ios-test1`\n - `react-native-nativewind`\n - `react-native-nghia-sharering`\n - `react-native-nice-learning`\n - `react-native-nyx-printer`\n - `react-native-offline-notice`\n - `react-native-onramp`\n - `react-native-opus`\n - `react-native-otp-custom-library`\n - `react-native-paynow-generator`\n - `react-native-payu-payment`\n - `react-native-payu-payment-testing`\n - `react-native-plugpag-wrapper`\n - `react-native-progress-arrow`\n - `react-native-pulsator-native`\n - `react-native-rabbitmq-all`\n - `react-native-radio-bic-group-lib`\n - `react-native-reanimated-sortable-list`\n - `react-native-recent-framework-update`\n - `react-native-remote-update`\n - `react-native-responsive-helper`\n - `react-native-responsive-size`\n - `react-native-return-usb-data`\n - `react-native-rn-app`\n - `react-native-rn-common-components-example`\n - `react-native-rn-icons-library`\n - `react-native-rn-lib-custom-components`\n - `react-native-rn-tolkaplayer`\n - `react-native-rn-tolkaplayer-dharmesh`\n - `react-native-rom-components`\n - `react-native-rtn-ips-poslin-test`\n - `react-native-s-airlines`\n - `react-native-sandycomponent`\n - `react-native-savczuk-feature-library`\n - `react-native-sayhello-module`\n - `react-native-screen-idle-timer`\n - `react-native-scroll-tab-to-index`\n - `react-native-shared-gesture`\n - `react-native-sharing-intent`\n - `react-native-sherpa-onnx-offline-tts`\n - `react-native-simple-timeline`\n - `react-native-sp-test-common`\n - `react-native-sunmi-printer-hk`\n - `react-native-superapis-transbank-pos`\n - `react-native-syan-photo-picker`\n - `react-native-teads-sdk-module`\n - `react-native-tejab41097-sample-library`\n - `react-native-teknoctrl-components`\n - `react-native-test-comlibrary`\n - `react-native-test-module-hhh`\n - `react-native-test-multiplier-library`\n - `react-native-test-tooltip`\n - `react-native-test-view`\n - `react-native-ticker-tape`\n - `react-native-tilt-ble`\n - `react-native-tones`\n - `react-native-transtracker-library`\n - `react-native-uart-connection`\n - `react-native-ui-components-library`\n - `react-native-uvc-camera-android`\n - `react-native-vanguard-sdk`\n - `react-native-version-app`\n - `react-native-volume-phisical`\n - `react-native-withframework-check`\n - `react-native-wtf`\n - `react-native-xprinter-thermal-ble`\n - `react-native-ytximkit`\n - `reactnatively`\n - `reat-native-multiplierkpr`\n - `refinejs-repo`\n - `rn-adyen-dropin`\n - `rn-check-btn`\n - `rn-circular-chart`\n - `rn-counter-demo`\n - `rn-currency-formatter`\n - `rn-session-multiplier-demo`\n - `rn-tm-notify`\n - `rn_unique_device_id`\n - `rnttlock`\n - `robots-agent`\n - `rocomp`\n - `scout-chatbot-widget`\n - `sedanbosok`\n - `semantic-release-gitmoji-action`\n - `smart_one_connect`\n - `soajs.repositories`\n - `sourcecrumbs`\n - `sungrow_tcu`\n - `tehmusimhujan`\n - `test-library-123`\n - `test-zeo-collect`\n - `tools_may_24`\n - `vantiq-react`\n - `veem-web-sdk`\n - `verify-aws-sns-signature`\n - `vision-camera-base64-resized`\n - `vision-camera-plugin-face-detector`\n - `vision-camera-plugin-scan-faces`\n - `vue-cli-plugin-ice-builder`\n - `vue-cli-plugin-ut-builder`\n - `wa-automate`\n - `wander-cli`\n - `warp-api`\n - `wifi_configuration_package`\n - `winx-form-winx`\n - `workpad`\n - `xbuilder-forms`\n - `xl-git-up`\n - `yangtao-js`\n - `yarn-react-hook-form`\n - `yoss-api`\n - `zzzxxxyyy321123`\n\n\n\n\n\n\n\n\n\n\n\n## :scroll: License\n\n[MIT][license] © [Ionică Bizău][website]\n\n\n\n\n\n\n[license]: /LICENSE\n[website]: https://ionicabizau.net\n[contributing]: /CONTRIBUTING.md\n[docs]: /DOCUMENTATION.md\n[badge_patreon]: https://ionicabizau.github.io/badges/patreon.svg\n[badge_amazon]: https://ionicabizau.github.io/badges/amazon.svg\n[badge_paypal]: https://ionicabizau.github.io/badges/paypal.svg\n[badge_paypal_donate]: https://ionicabizau.github.io/badges/paypal_donate.svg\n[patreon]: https://www.patreon.com/ionicabizau\n[amazon]: http://amzn.eu/hRo9sIZ\n[paypal-donations]: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RVXDDLKKLQRJW\n","repository":{"type":"git","url":"git+https://github.com/IonicaBizau/parse-url.git"},"users":{"antitim":true,"flumpus-dev":true},"bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"license":"MIT","versions":{"0.2.0":{"name":"parse-url","version":"0.2.0","keywords":["parse","url","node","git","advanced"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"KINDLY","_id":"parse-url@0.2.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-parse-url","bugs":{"url":"https://github.com/IonicaBizau/node-parse-url/issues"},"dist":{"shasum":"30cf706286e530446b200e2999c14775f01abf52","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-0.2.0.tgz","integrity":"sha512-UjxTJ+h96XpKT+6AweHbgUzUYtofpIN+xJPBQ6h2b3/PBau3lyA6baebikaoVcBSqFMSTK2sN35ieqpkxshr6A==","signatures":[{"sig":"MEUCIQD3Sd21X+Cen4pGJY/ibErNmO2tmRrLAkOUM3MNZeVcXgIgE7RqE4ZFkB08gwWzoO8mMokWxSp5snbV1lEKC0WsEBs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"30cf706286e530446b200e2999c14775f01abf52","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"https://github.com/IonicaBizau/node-parse-url.git","type":"git"},"_npmVersion":"1.4.28","description":"An advanced url parser supporting git urls too.","directories":{"example":"example"}},"1.0.0":{"name":"parse-url","version":"1.0.0","keywords":["parse","url","node","git","advanced"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"KINDLY","_id":"parse-url@1.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-parse-url","bugs":{"url":"https://github.com/IonicaBizau/node-parse-url/issues"},"dist":{"shasum":"da238b144be72f0cd4fec36d5d495f4068ce9e7a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-1.0.0.tgz","integrity":"sha512-Bc5LnNTudOe2e8sWeMF0pnLanL/snZmu/DsmstvA+xsu339rln5xY7ztoXxqGcx58Hg3NikZkA+fV31dNyqK5w==","signatures":[{"sig":"MEUCICo4MUyYOzhoVs2M85twgiM2gUWjLP+oXvz/OT+lYa+xAiEA23vjWNSANvj7z8cHFvaadEx4Jvad6g8Gf2NO2vM3qqs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"da238b144be72f0cd4fec36d5d495f4068ce9e7a","gitHead":"36b06628c4d10e9e52654c29ef983ab2875bd2be","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"https://github.com/IonicaBizau/node-parse-url.git","type":"git"},"_npmVersion":"1.4.28","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"dependencies":{"protocols":"^1.1.0"},"devDependencies":{"mocha":"^2.2.5"}},"1.1.0":{"name":"parse-url","version":"1.1.0","keywords":["parse","url","node","git","advanced"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"KINDLY","_id":"parse-url@1.1.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-parse-url","bugs":{"url":"https://github.com/IonicaBizau/node-parse-url/issues"},"dist":{"shasum":"c8e9ec975d9bce79ff775dc0084fbb72184b32ec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-1.1.0.tgz","integrity":"sha512-L7JYM3eifYQQs1rw9nvXW+dCGw5XGmaIHxkTHa3zaC7oyklQSuRcJ9eujFipK8tAlmxYzAA09n7J5clVo9yDLw==","signatures":[{"sig":"MEUCIQDuYot4ytskVvrMbhLHFZ6sYzbrgf2k5BqZ616LOg2iPwIgQOMw0GBW29A9Rz60cxUyv9jj3PEKbL4U96495m4sCAM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"c8e9ec975d9bce79ff775dc0084fbb72184b32ec","gitHead":"e2524347d584e3b8f25490a938b5f2e7f5839ef5","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/node-parse-url.git","type":"git"},"_npmVersion":"2.14.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"protocols":"^1.1.0"},"devDependencies":{"mocha":"^2.2.5"}},"1.2.0":{"name":"parse-url","version":"1.2.0","keywords":["parse","url","node","git","advanced"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@1.2.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-parse-url","bugs":{"url":"https://github.com/IonicaBizau/node-parse-url/issues"},"dist":{"shasum":"6d628bcfccf8f79746874a279e1f8221109e7fd3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-1.2.0.tgz","integrity":"sha512-uL3mqx+vCnE6UT326BAb01b/mcj18FDs3LUlxJ9+iiwbcuAT8P4Rt/JL7NIg0XJc5/pWq9ibRWWOwtLLOhoTNQ==","signatures":[{"sig":"MEQCIGcdjrI0HbhQpjdzUWEi0N4/LuIQyb6LD5iZ5lRe0hpZAiBDSbKPuaVK8YwFA+P3XCafiXX29VVMvSg6OtXpXSvLPA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"6d628bcfccf8f79746874a279e1f8221109e7fd3","gitHead":"e9a8e8a1a25ee2145e5ae067ef61a6f979e6ef87","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/node-parse-url.git","type":"git"},"_npmVersion":"2.14.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"protocols":"^1.1.0"},"devDependencies":{"mocha":"^2.2.5"}},"1.2.1":{"name":"parse-url","version":"1.2.1","keywords":["parse","url","node","git","advanced"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@1.2.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-parse-url","bugs":{"url":"https://github.com/IonicaBizau/node-parse-url/issues"},"dist":{"shasum":"e88702b8108955594596aea78666f96a7bdabc57","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-1.2.1.tgz","integrity":"sha512-s1BMvnp7MUvRPjrthojcfMBoU6ylrs5ghvwXqFEkh9Bk4U0WuDoRPyRZno8WxT76mFwNPOAYoWFioehz3ZXscg==","signatures":[{"sig":"MEQCIG57qG++ycMhFQdx8GC9TLMy4Yhw/66NCz3P6JTbxP0BAiAZfePbvSpO99XrcnxDX4lN9x1XsRKg+GBqfcY+d1zlRQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"e88702b8108955594596aea78666f96a7bdabc57","gitHead":"ea5d56768b71c1226f2a8c75cbc3a88cae2d94a7","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/node-parse-url.git","type":"git"},"_npmVersion":"2.14.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"protocols":"^1.1.0"},"devDependencies":{"mocha":"^2.2.5"}},"1.3.0":{"name":"parse-url","version":"1.3.0","keywords":["parse","url","node","git","advanced"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@1.3.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"dist":{"shasum":"f13b831a0cdba4542c6122190f0c1d23c5cc82b3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-1.3.0.tgz","integrity":"sha512-2vodUTylNf56fKTqBWvstpq8gsv1DCKw/LdPlSIouH7AXKDMRucoYn+Z64eVqV1QE6wvA+JnAa8ifv+uuLpJFw==","signatures":[{"sig":"MEUCIQCzL74gHfJLoxrcw3g0e0W/dce6+GKamyzCqVWjkHlk/gIgJNOifLpkABySiVSF4SVQ9QoZTiK/60NQC9oeJJUc8d8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"f13b831a0cdba4542c6122190f0c1d23c5cc82b3","gitHead":"f1862ce37c1d5fffafbb841c518c4ea88ceb8b49","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"2.14.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0"},"devDependencies":{"tester":"^1.3.1"}},"1.3.1":{"name":"parse-url","version":"1.3.1","keywords":["parse","url","node","git","advanced"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@1.3.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"dist":{"shasum":"e4fc5ed24f0d08f0cf2f61f938d49dc7531dd0d9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-1.3.1.tgz","integrity":"sha512-rmIjiZGEzZPG/uQrOLQsZr3xLoTL1vHP6425dEAHNRVgRoE67v0lraJtrb+TZVlZBUF8fw3baoFuAYWkApXHtg==","signatures":[{"sig":"MEYCIQC5PHSYDJO5aBP10xYFUEgLcq5XHuHQwI0kQjQLQKEfwAIhANUoJYxUDbeEEnc8b09Qfe1E5enHgLlukK1Fa1B00p3R","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","resources/","menu/","cli.js","index.js"],"_shasum":"e4fc5ed24f0d08f0cf2f61f938d49dc7531dd0d9","gitHead":"b90f87afa7693fe008e1f1bdb2db962d55205890","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"2.14.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0"},"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url-1.3.1.tgz_1461651753402_0.5988371761050075","host":"packages-16-east.internal.npmjs.com"}},"1.3.2":{"name":"parse-url","version":"1.3.2","keywords":["parse","url","node","git","advanced"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@1.3.2","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"dist":{"shasum":"ebff5f5cc81961abaa92d75d4178cca32879c8b9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-1.3.2.tgz","integrity":"sha512-89u7Y1vWrz1VrCSPMA7YxAFEVdcv10sPv/4qwTY+8/0z8mPH3sah2RC0Q2+VQwn6HxV9W0gBl0C2KEY4XbY9jA==","signatures":[{"sig":"MEUCIF8+BP+CBa5q9GFXRlYWYokgUy8f/02zvhQ4yKyNrcDGAiEA3xFgS6JXQoVpqvkSdOka9XH3kO8kEYdyPJOn9SV7vXY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","resources/","menu/","scripts/","cli.js","index.js"],"_shasum":"ebff5f5cc81961abaa92d75d4178cca32879c8b9","gitHead":"76d8584208e4156d87798e6f89cdb6cbdf3240fa","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"3.8.9","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"6.2.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0"},"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url-1.3.2.tgz_1464174616918_0.9474464764352888","host":"packages-16-east.internal.npmjs.com"}},"1.3.3":{"name":"parse-url","version":"1.3.3","keywords":["parse","url","node","git","advanced"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@1.3.3","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"dist":{"shasum":"a9ea1702e4197fe278a508e7eb3e1ce33bcb4074","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-1.3.3.tgz","integrity":"sha512-pUR8MFsNu+FAscwHfU+I4sE+/YkOINmcvaWHF71jIP2YyYlvOnODLFCH3qMUdWTD+fVAvQ3PNcKHnTpvK36BRQ==","signatures":[{"sig":"MEYCIQDyYwrt+kZ953ZCeGzpcAiwHaaulEeMACWGBU2tqrv8jwIhANvWCXlm4nv1nkMmgNr08uqTzNKHFLDsK8cutWoaFVvR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","resources/","menu/","scripts/","cli.js","index.js"],"_shasum":"a9ea1702e4197fe278a508e7eb3e1ce33bcb4074","gitHead":"4d37668f86fc4a92fb740ace05bd3ebe6f809eb0","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"2.14.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0"},"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url-1.3.3.tgz_1465979370133_0.323836917988956","host":"packages-12-west.internal.npmjs.com"}},"1.3.4":{"name":"parse-url","version":"1.3.4","keywords":["parse","url","node","git","advanced"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@1.3.4","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"dist":{"shasum":"0d5fbd705a88cb2cdc6acffeae336ccef5939c97","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-1.3.4.tgz","integrity":"sha512-uTXZobOufr4KROOmcmsOawKlQJWhXDLQDK3Y5hsSVUD1ISPFjxgoJvJZMUt42qKqYbDgZB8eAr1LrqNPQkNlrQ==","signatures":[{"sig":"MEQCIBj/+g+gwa6TQ+OPA9e/BpTCwkH52fzaL1Fp5s7X8Jf0AiArbWYQCd5fjTRCzuR+IqcMheNjhvyxy/OjhnBSL/WrNg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","resources/","menu/","scripts/","cli.js","index.js"],"_shasum":"0d5fbd705a88cb2cdc6acffeae336ccef5939c97","gitHead":"1f9e8ae6766da88404f14e1555fc209150516235","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"2.14.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0"},"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url-1.3.4.tgz_1476158248666_0.7957439040765166","host":"packages-12-west.internal.npmjs.com"}},"1.3.5":{"name":"parse-url","version":"1.3.5","keywords":["parse","url","node","git","advanced"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@1.3.5","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"dist":{"shasum":"c9f27e266bc81691927a417c77d543a11da31b35","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-1.3.5.tgz","integrity":"sha512-KWnw1VvyQohQDOnDBt2uKMp75WX+lKwPz3Nv8Nx53f0e51/Ki3VHxHjlwqdb1K7Q6n4f8vRI3PKWmbPC62tZYw==","signatures":[{"sig":"MEQCICrgjHsvl0gvmSI96ZYit9NCHf6w1jG5V+8BhYSRgQxfAiAWFVf+/6n5q3U0XBhb4HamaDh0v3TOX/nn6LKUeH24Gg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","build/","dist/","src/","resources/","menu/","scripts/","cli.js","index.js"],"_shasum":"c9f27e266bc81691927a417c77d543a11da31b35","gitHead":"ce9c0de0d7ae7edfbf352389f4858083c00f8c17","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"2.14.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0"},"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url-1.3.5.tgz_1476199395090_0.879496177425608","host":"packages-16-east.internal.npmjs.com"}},"1.3.6":{"name":"parse-url","version":"1.3.6","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@1.3.6","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"dist":{"shasum":"303b5ededc627a3b24e6fe27a11bc7fa48a5837d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-1.3.6.tgz","integrity":"sha512-n+QAAsZVsH3WRy4d0bbU+tYl0FRYQxDZ8jps7GCzX8hfp7Q0/A7hRUBCtTeFdburt3vDKONKHT7YT+9o0xAz7g==","signatures":[{"sig":"MEUCIQDZrfYxPSOLNEjt7/6s0PkGxRZUmJhEBiTSJ+b+b86qDQIgQ3WSWgVoOC83uUnRSWsmKwDsgl0CbT3GF8YW5NOLk2Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js"],"_shasum":"303b5ededc627a3b24e6fe27a11bc7fa48a5837d","gitHead":"d84e29fea3321cf345bc7ee7f5d51fe162fa68ec","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"3.10.8","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"7.0.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0"},"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url-1.3.6.tgz_1490037933178_0.36961778881959617","host":"packages-12-west.internal.npmjs.com"}},"1.3.7":{"name":"parse-url","version":"1.3.7","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@1.3.7","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"dist":{"shasum":"636cb6e32b88255c704e30ab4349676703267af8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-1.3.7.tgz","integrity":"sha512-FvD8cYgaDoYfEVqWM0Inksgkt1hFs9GJZemFWtreVJJgE0MfSXVI3fd8k/2QpWHgzdU4kdjDAiVyFDTSseGqcA==","signatures":[{"sig":"MEQCIFwgeg7fhu4CZ8bEyeTWBhT8+UcUbKuFEUESPEqAE1vfAiBH+E6tkHnj0/4qgpa4wI/kR8MdfaO4xf+ItMxEqG1Rjg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js"],"_shasum":"636cb6e32b88255c704e30ab4349676703267af8","gitHead":"5bb4ed9fd43394418d3f752eda953bc2aa37121a","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"3.10.8","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"7.0.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0"},"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url-1.3.7.tgz_1490289959010_0.9561463845893741","host":"packages-12-west.internal.npmjs.com"}},"1.3.8":{"name":"parse-url","version":"1.3.8","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@1.3.8","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"dist":{"shasum":"65d048c3de619fdd904bb9107b89e651d9bd5930","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-1.3.8.tgz","integrity":"sha512-koDHgV2f6i9XS+26mzYMtAQMzGdv28QA9yTtEWot4KldjhnBI/fWAgPB6Kj6UkJvbC/A/xVPE5Fo8lczqawZKw==","signatures":[{"sig":"MEQCIFGJZZ5EMIoG/zEpTc4DR+k1ITyx3vz7SXd7/ASpER8yAiAHTkHgl6F9h2E9G/5AKZLHlgYnE7St7ZLTAUPmVuh9PA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js"],"_shasum":"65d048c3de619fdd904bb9107b89e651d9bd5930","gitHead":"d7075fd09f0cdcd3878f2d0516772e0ec9557d68","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"3.10.8","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"7.0.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0"},"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url-1.3.8.tgz_1497248805583_0.2750167343765497","host":"s3://npm-registry-packages"}},"1.3.9":{"name":"parse-url","version":"1.3.9","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@1.3.9","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"dist":{"shasum":"c18dd1357d9a3ce34d243cd9b2c7975869d1c638","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-1.3.9.tgz","integrity":"sha512-ptrhIQeWY6nvEFg5y4OzPLjiDT1ZQI1ys7rOVOj74FQ1H/ZACnlNMbe7gO5Bf8TTH5rvQvA5jAzvAwdMxfjjmw==","signatures":[{"sig":"MEQCIEuONnh2ppZv0Y4RzeUKXivcABKexNG4pG9z8q8bF6+IAiAFbRaPznnnAcdJDDr71i6EGZWo7P6hBD7S4AkzVbDDAg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js"],"_shasum":"c18dd1357d9a3ce34d243cd9b2c7975869d1c638","gitHead":"38565ac45a6c5c734b564710ef8c3df488463ecc","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"3.10.8","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"7.0.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0"},"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url-1.3.9.tgz_1497248822367_0.9825813970528543","host":"s3://npm-registry-packages"}},"1.3.10":{"name":"parse-url","version":"1.3.10","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@1.3.10","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"dist":{"shasum":"6719aa4e4e5c56a1cedaf48a68bdec8b23290d96","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-1.3.10.tgz","integrity":"sha512-gt4BmZarVEfmddt+jNIi8G0TCvY7sAFbIe2ghagkbfyO3ZFSEbByu+Ic+HorxEIw7d+N6bzR14I3NoPb/8GSfg==","signatures":[{"sig":"MEYCIQCqUayRrMS2ldn0mjkCCI71sAMwjedkxF8wbAhZ/x54yAIhALRQZkknVl43XLxL44j6t6u0cL7ZKjwHmfvYsJ6tax7p","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js"],"_shasum":"6719aa4e4e5c56a1cedaf48a68bdec8b23290d96","gitHead":"39f47d9776f92f6f51c55158131170869aa6f5e3","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"3.10.8","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"7.0.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0"},"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url-1.3.10.tgz_1497248906691_0.6248018345795572","host":"s3://npm-registry-packages"}},"1.3.11":{"name":"parse-url","version":"1.3.11","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@1.3.11","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"dist":{"shasum":"57c15428ab8a892b1f43869645c711d0e144b554","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-1.3.11.tgz","integrity":"sha512-1wj9nkgH/5EboDxLwaTMGJh3oH3f+Gue+aGdh631oCqoSBpokzmMmOldvOeBPtB8GJBYJbaF93KPzlkU+Y1ksg==","signatures":[{"sig":"MEUCIQCjmJOfcLDhfhzI5NRFefovJdEK+DTolcyRtifFwn2MkQIgRTIaIFHVHuW+jVHpgsDJ7vayZk3Xk/1pfv1zBVpD9zE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js"],"_shasum":"57c15428ab8a892b1f43869645c711d0e144b554","gitHead":"47705b19ceafdbd7f4fbe10d8e7f2e5c7f0ef590","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"3.10.8","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"7.0.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0"},"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url-1.3.11.tgz_1497249034857_0.2491458656731993","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"parse-url","version":"3.0.0","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@3.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"47c008a9fba6b5af8c2da64dde11532f91bd781b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-3.0.0.tgz","integrity":"sha512-GjqqqFPYFMJjbf+rtRPlOB7OhHE0GQhWC7pfMz1Rq+jkUx9ONFeGZ8oSQiVPvgOpWQzhGGKC2B4N4mCfos+flA==","signatures":[{"sig":"MEUCIQCmqGTYCB0pFXx2gxdkySSW3eMFhM7UfgPrLN0BoKAs6AIgQTGhqd6TjloNAaiKDSr2+SEeWVas7fCD/YsFcGqEkDY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js"],"_shasum":"47c008a9fba6b5af8c2da64dde11532f91bd781b","gitHead":"06c3f1b4da3df03bbb06f5efbc7e4032a695b8ad","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"3.10.8","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"7.0.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0","parse-path":"^3.0.1"},"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url-3.0.0.tgz_1503306121259_0.4674668100196868","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"parse-url","version":"3.0.1","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@3.0.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"9421fcc995937573548a8af3d7a160b38d955c9d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-3.0.1.tgz","integrity":"sha512-IJrPI6HXNGS4Sa3KI+V3GTVjyRl1+o+Bs2YMowJrqnLGPn1erI7phS7ZFfZI9N5f2B+vQEO7Q+O74i5yVqIOkw==","signatures":[{"sig":"MEQCIH2Y0yC0/v9O1BiMJQ+7tvuVEkXivVONLFpY1+lsPpbCAiBMG1zRnOtaU3SPC7r1o7CmjNZ53W97qo4KuU56/5TZQQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js"],"_shasum":"9421fcc995937573548a8af3d7a160b38d955c9d","gitHead":"2e29b8175a65a3cabc741fa30468d88b14f1ea2c","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"3.10.8","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"7.0.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0","parse-path":"^3.0.1","normalize-url":"^1.9.1"},"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url-3.0.1.tgz_1503306237714_0.3226485571358353","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"parse-url","version":"3.0.2","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@3.0.2","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"602787a7063a795d72b8673197505e72f60610be","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-3.0.2.tgz","integrity":"sha512-+KQY4Eu9mGvZtagWyd4HlJfc2O4t8pIKjNN1ahahnNTUpQ/7YA/taVrJoJVmClhBM8Qq0Dwbn3MSCbl5J9rQgQ==","signatures":[{"sig":"MEUCIQDilpW6YFCASJldF49ix+d4qCTO3t4FRhs2T1/8RN+vmAIgf0pRJCOPP51a6Ffj90Vhhb4hlF89Ql5EKtxsRj5brMA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js","bloggify.js","bloggify.json","bloggify/"],"_shasum":"602787a7063a795d72b8673197505e72f60610be","gitHead":"a949fb02f878b47e3237355d15de9d9512d023b6","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"4.1.1","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"7.0.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0","parse-path":"^3.0.1","normalize-url":"^1.9.1"},"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url-3.0.2.tgz_1504876015333_0.7390705065336078","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"parse-url","version":"4.0.0","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@4.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"0cfdc013c8ce4bf7eedd9f4adbd36a4f9cd9110e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-4.0.0.tgz","fileCount":4,"integrity":"sha512-BodlqXA/u3KdUGTk6zRwosy646/qZcfSl2siSkWdAcdMvs2vWXI7oE5+PjxoOCSyhsQiNIvS4xcb3UItNrpMUg==","signatures":[{"sig":"MEUCIQD9QCypb/RY0s/0F8paNH+BgLkWNJdREiW8K5zjaoWh7QIgZrYKBCaWp4uxGhZwrXXhmqKp0hbmlQGcKtu6KLHGecM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14398,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb1egVCRA9TVsSAnZWagAAYlEQAJgt51LRe+KWdYF1koKR\n/6pBpXKlzs5mBlEu9Du/NLrlbKixR4wnF6n8oh/+7D9bw9jHlr5Z0TLWS+xd\nA5qam9Y70ViSJdhslI1jVIT9t1VrFM6D4GzhbBeJXPIt/XEcirsQAmZ+gycQ\nrCyuvDQKjwslSVFKrooaWoMY4EN4e6seQGG9DP4GTeyVXAN4FgbxgZLwqA13\nGeuWJhgWSXRPj2dT5fD9Njy/1q3lPLHGvxhkonOyUwTNZKSPcioHGR3AzYb7\n1ek3zn3/YTEL9POYtw+5mlXAmBiso4lRTpq4zrhyj+bOu9Oh8fgkVHLlpTLu\n7EBkD5wCLLTcWsiIwksugHH8jylBBlX5xLGy7QI0ajBOCH1Qsm3XIdksS7sR\nbIbO8FMB4aW8M63+a7zmHEiMOKUKbUAWkFDs8/kbtKXEGMx7/tJjut0g38Ll\nYFa177WdLbZjyMrN1dooMwT3BUCfHhHJcyK9IrgzeRYIRw0N99HTg44Yc137\nFEhgJyQ77Pd+gKKO31tZbZbHSYI63E2Px+yA8eJYgfo6Ldl8njfOJnl6bL0l\nknWTsk7AV/HxWldPkLxOlCfKcs3rmK0YAhAf2hIBndBqMjO2MQK9TR0H0Z+p\nntetwWiDValGZ9x/VYvizudAS+RGjiwsRyxE35p54xw1hn0X90TnG8WU31KW\nN1Kd\r\n=M+lA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"9caa95b60d4089da5da69ceedf1c51882650e293","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"6.4.0","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0","parse-path":"^4.0.0","normalize-url":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_4.0.0_1540745236868_0.48544767796530275","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"parse-url","version":"5.0.0","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@5.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"01538e9f2df5c612b8b5e1124f1a108787495d08","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-5.0.0.tgz","fileCount":4,"integrity":"sha512-ePfnXkes247DaA0IBTU1YE6/SxM09/Y+QJm/Ne4E9VYY4H+g5/qJ+TG0p5flEqh3qnb+XXbZuob2kqrqIBJpPA==","signatures":[{"sig":"MEUCIQCHhPSoRmZIbkP/iWnQIM81JhIpkItOODfTY8cEcxmhLwIgHaNqkNxWr0uTUXPVTJ5GliHqR8vQkk2lqqcGKLo0yqs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14399,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb1ejxCRA9TVsSAnZWagAAxMcP/iAj15a61b+XLC1yEkV5\nY77KVzluF++aLUVDBPtI2Biumuto5FvTmw6RAqDFYdFOtz6vhCaViS6jy96H\nIySrn66RKDypzRsqsBxTKEB9hyiLTrWadDhSGxnp/6bPaUOogrTOdeAowqZD\ns59DDVuYvPiSfcyb+iMnVM2zZVzhatmhtESgTcZS9pqVo9xs6jzdztI0CHMk\nma07mDyaRROZfiUmk4wADbJFAhdLq8U7c7MFSMvtaCPXSaO0yhc5JnIwjf6l\nKYRk/8nFkdduFAEj3pctPdUDl8FA+4BySDOe3vVYhsSkE0JiJa+vEs6nEKMX\nQrtG66nInUIicPvqBKKEi2fKAI6wMYA1FOFNtyspp9UTwdgedSQnXDjW9UaV\n9fpamnbiK/LawjCqI13mu5iqv2R15G44SRIamPNxw3SlyfkyMqG/l/aQ6p9Y\ndy7HM1Pyel2BJtJqgGaqK5rojkA1h83c/+PfMfYdwMgPbbKHCVQFv3BhBaQQ\nZDQuSF2mDSVSb/v1aQ192pUNCJShlRfw8asHUZPjVz0dKz8XBdqeKd9NRD+L\n+C9ZrzozaUGrB00RVEH5pbnkUX+1VQHlGuvmLDDUASEkBJlMFS28wlwf+R/X\n8MmV/Tq2K+92CNeRHz8STECougeJ/3TDcnKYkOjSTvE2i8lmmOO5FoDZFGZ2\nQWsv\r\n=Jd7S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"47f184b744f95eef3f299733d6ea096dd9bb101e","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"6.4.0","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0","parse-path":"^4.0.0","normalize-url":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_5.0.0_1540745456977_0.775538420947554","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"parse-url","version":"5.0.1","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@5.0.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"99c4084fc11be14141efa41b3d117a96fcb9527f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-5.0.1.tgz","fileCount":4,"integrity":"sha512-flNUPP27r3vJpROi0/R3/2efgKkyXqnXwyP1KQ2U0SfFRgdizOdWfvrrvJg1LuOoxs7GQhmxJlq23IpQ/BkByg==","signatures":[{"sig":"MEUCIQDNJAdYQ7xwDSMSWal7Jy7NFlIVuI7EHsKWB4DXrmJDkAIgaawHnWDupmseu7KoDwvcQfhIZXTkJTnQoPk6N927b8A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14939,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLmWiCRA9TVsSAnZWagAAEokQAKJqgwfJDyH3myOziSWe\nFAla4KFTlJC11PVglDZcmyuOOZ9xe0AWdCySDQzNFodH9pTATyCdgFa5TSeT\nXARNX01LEDeq4HlGeQaaB1Rwz23P/+sd90DevI5M7spNRroPPkgyqOXTj+CG\nmi3/2z92luEwR+R9d5xlvs0O+hI+yabvlgsCggpIPNsZyC+5R/q/oi/d3rG+\noNDxv69Dw2cKpjJujRZH5iMjtWiCSAXtSttoOA/QCefYf69sW84SUo3lnNG9\nJG9HsxkZkeHV/X0oSZGx3G0a+2MVIICQNIP562kxei49N13Kaz6uI4o4szQZ\nuow4cxH+vFuv4Hd5hJrnH5/wHOmlLpONqbnneHOsq1U4TVmy+/9TIhISTB86\nzdN3f5nLUDivHWDXS5R+fhfj9drsQQ6ZDVXQnabbCnjwqFdlBkMdF2rrep+N\ncDstqvZfz0depSYUDCor7H/T096UE6zynnfnJR8/dBuiUpi3hfHqw16nxXn4\nRuLgDRDhC3EcSmG2Jas0nqtN/51h+B2T4N2457uU3+IpgJyWUhCeT7PKXaiz\ns40pWfESKctCN8T/hkab1w+nlhqdoJGD25LTE+mvL3SP3AgsZv4O+y3IJC0k\nG4LW6vn9Q3JKTuGPHzzaC6TmL9Vt1UAwFFHzr8fT8klLT/cWNywL0fMz4+B3\nNgnS\r\n=2SL1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"0be4cd98d7ad1b82a006e1edd7dbb3bde56a7537","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"6.4.1","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"10.15.0","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0","parse-path":"^4.0.0","normalize-url":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_5.0.1_1546544545527_0.23276413432136578","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"parse-url","version":"5.0.2","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@5.0.2","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"856a3be1fcdf78dc93fc8b3791f169072d898b59","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-5.0.2.tgz","fileCount":4,"integrity":"sha512-Czj+GIit4cdWtxo3ISZCvLiUjErSo0iI3wJ+q9Oi3QuMYTI6OZu+7cewMWZ+C1YAnKhYTk6/TLuhIgCypLthPA==","signatures":[{"sig":"MEUCIAlZVnW98HHGN8x21LYKE552zEUvgTEbdvIu4uvhxfHfAiEA1ehXT2P2QXbMQqoXNroLEFvj9oTYnZEqInX02ZfDv7o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12049,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfMA47CRA9TVsSAnZWagAAZDwQAJbH/yF4M6TyKj5jPD45\nugGt49PIBLZVmzNOPSnOgMXsGwy0PyFYYgbKU9CGVKF1TcGosgmSKYgBoEtt\n748p8YJMflUXNxfrixEZ9yXQFTTcl7v+0nHh/VZt3ZKJVhP5MHk2wmcy6vQ0\nTtiS0e6lLWdAT/D0/OeIMAVfzj3T47tVv6QtAcPkA3k1MWQef3JZD4Hm1wBM\nQqfr7LhWNmhNi8PftwmZUE83laLBVEDY0OW4oDLtWlJ9hdS+pbeKorCcXeUs\nsWp/K4CuFIBlSY1nqD0mKXCc03/ftSdrq/x3oynmZYJlOU1hQeUm4YPwG5Z3\nX77c/jPCyizOoQ/upyKLQA6VH+1zObvVA1DWK0RzKjoPxUB8wIor4q4jpxiF\n6Fgm3ewOnDc3WjVI1suKLDHjsvTFpRq2u0f5exv2CI9GK65kDkkJtYRLS81G\nwGg39UDuac2u2t9W5Z3QQk3M9zrqhAup2cDgZH+C8Z3UxDU3qvr88cMJYT/d\nr2Qbzae+WM/e0xoeY7cFbjJr2AHZXnqHAeZjUi9xigAnCrY0XWwHCWsj3x9F\nVDk/+AjXcnfi3lpzjUzamBitdnV4X6allNSiV+8f1CV9TmPfqklsCJwmB/4j\nqaSRdc1Mw9Zjf5hCe/epJyToxfKprfCCWs794MpuacEE77RY+sQ9tHnuMBX8\nTt/Z\r\n=ChQt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"f272a0f748ab9c50773ecda8ee2e258c25c28ea8","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"6.14.4","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"12.16.3","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0","parse-path":"^4.0.0","normalize-url":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_5.0.2_1596984891225_0.26322791911814614","host":"s3://npm-registry-packages"}},"5.0.3":{"name":"parse-url","version":"5.0.3","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@5.0.3","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"c158560f14cb1560917e0b7fd8b01adc1e9d3cab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-5.0.3.tgz","fileCount":4,"integrity":"sha512-nrLCVMJpqo12X8uUJT4GJPd5AFaTOrGx/QpJy3HNcVtq0AZSstVIsnxS5fqNPuoqMUs3MyfBoOP6Zvu2Arok5A==","signatures":[{"sig":"MEUCIQD4aXVw7FpVgm9hmRopqgkopLnBZl3eHA7gVYUA9UkRBgIgCBF2CAMV+bqh2pe6Z8zz7WgpKI47YbL8YZB126LTdDc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12826,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgt3yVCRA9TVsSAnZWagAAAVcP/2uX90J7TnVPvXvZ+/57\n7uuYqTp7vMy+Tuw3ElQyvssnTf83sL+kuwI6xp2DwMD/DQQld5fcuRmmSnz3\nEL9Q64a9Rk6fUn4VRufbKDQSxtcDw/BWpjuo68N+f8giunWB6vMrFIzZmmod\nGUuTO8zTGS7YN2It9ojbb9WMxpEHTitrOL6BULZzUokqxE/PUExeSzfxAXnM\n6UGfipXg4ppyOY1w2Se9HG3bdeHE7fcTDn6xbxg7UISjlJE/zCCu1ebpPiQL\nYwSIXmF/cqa5+ipB7I3Iltafl/ucG2mD1/BWcGUiE2ZhBVLUkFPz5r82rpqJ\ncrlKfwlVMuRouV224W0VhNBRDEBlGnRwxgq6xUpy2EWyuiirfsFm+uhbYFKV\nDcZjjiSv6dSSENU8+3tOZ4azuV06xjgPpfx7cWpOyTdtHdd5HXDricPXeqPa\n41qAyaBwDGP+t7Lb640mA1g0W7dWQDfW4txJhfjbDM3uksu5F45CuSkowXAW\nAX6PivsPmewJVybbiHAcCvXFaXauNdSb8p8ZTcRzX71sBnwCgwenvH+sB6HK\nnkUFN1l3ryPzPJeeFgLz+XIjmdIvxpiG2YarNGhSxM6QaqIsR/hVzPsgC4o9\n+pNSHLSm+UEShTXW9lTPTq2fYZLgc2AmCnWA0yF/oWMz8kxg9jTTIH74XsvA\ntnj7\r\n=FWSA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"70effab2999bbb50453e5f8bba35d07373fb95ca","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"6.4.1","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"10.15.3","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0","parse-path":"^4.0.0","normalize-url":"^6.0.1"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_5.0.3_1622637717307_0.1501183480003303","host":"s3://npm-registry-packages"}},"5.0.4":{"name":"parse-url","version":"5.0.4","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@5.0.4","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"eaaaae1d51cb54311889604f04d5a2a79a0153a5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-5.0.4.tgz","fileCount":4,"integrity":"sha512-0mWI1+18O3R0vCGmpPCp8gXXeHTwgrvFfkAf5GGvBE0tbtoold0f85uUBX1CflnrfS8RVuxo9QpDD70FUPOp4Q==","signatures":[{"sig":"MEUCIQD9sIBBjr9U06QVb+yltrMr8tzA/IUiv5qkpGwvcxVViQIgeoAPLqqQ5VBuNiXDzxuO/88nfRNyjq5UMR7i25Na32w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12424,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg0zgUCRA9TVsSAnZWagAA7lkP/Ap1xD2WFm3gtFgmKIMH\n3ul4t1PTj3XHgRVdHu0l9fkERFY+JsVmu9avSuQmfQ3U+Qus6m7YtLiYzQfI\n2EdmsGKbpcxm/VJmG+f2h8GrQ9bDGbVrDOUBgcIo9sBeCW5FzJBATU2wAQv7\nGZNqX1ezNzQI4x2QTvmKgdpiIk137SkLjef56ovwyTGWgaZyffLWWMtWGiav\nA829FeVnF+dEWug+5L/ySgo0voUdxl1qTbDqUFgsF4rwdgy7/Kw2QW2Fd9WX\nku2sZcCsLwvIfdeHYX7Sj5bu1uRGkIRRbIuCw+Ap5aOESGHNpO3VDWJkjX3h\nVxb3y7Nsmv5KWfq+iGwqJ0uvEyjclkeAo7T9nFMisYOfiKy4TtmONIDGy7dw\nlah8bpj29u5qv7zsoy3QuLZzoagIJfNE4d0+W5NpU3PHS6QzYMFGfIjF5NPa\n3fSgzZna0SEM52YATyZ0de/50S3+JETw/S6oRt6JKsa5ZoE+NBtDPBmRcMn9\n3aVmcKPVVL0jJrLn/qEbYbAr/Gb6rahVtrLCVO2MRlevtambE22N2zNMXOqG\nFEOh/3jMjz9d6j2rwD4MeGwLRPnAN2ROUXuA74Id5t5fuCQoVK3AuwipB6o9\nmZju1F9IiGcV/08m89+JKZBFF+KqlVXlOMKz9ZKn8WrKx48xP7j/qTIcx8JV\nem7B\r\n=5DI6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"4c5548f6b740bf63a59390ad016f0e87f5bc2436","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"6.4.1","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"10.15.3","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0","parse-path":"^4.0.0","normalize-url":"4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_5.0.4_1624455188150_0.6448690167464863","host":"s3://npm-registry-packages"}},"5.0.5":{"name":"parse-url","version":"5.0.5","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@5.0.5","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"06b7f6978b65cac7851bb768bec4e0b950714e1a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-5.0.5.tgz","fileCount":4,"integrity":"sha512-AwfVhXaQrNNI6UPUJq/GJN2qoY0L9gPgxhh9VbDP0bfBAJWaC/Zh8hjQ58YKTi4AagOT70fpadkYSKPo+eFb1w==","signatures":[{"sig":"MEYCIQC8hzOLyEQGb4HkSvaMABOSiL5sxeb9laO8MqmbujE0vwIhAKoZGLq2KbwM7F1w4/xXe+jHiA2AFTK8wIzIY4qElhvY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12926,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg0ziJCRA9TVsSAnZWagAA+/oP+wcc+JZ5lwJZ8AVLyDMz\n1K2M56zY1GdwltlRYF4At0DYDWklvhVuEe+onbDUiH2BUEEEyeJBJXz2HcCv\nQA8lbWKVmY9cjJgYssmj8Wn/ZRhkwEn+c1piaqTaCekrP2De1OaIqgAFfR8S\nBTD07rFp4Gw1TnJvMSN0zw9o7xwoFqqFoD70oQaf5khmF3Kh385Su5d+ydfw\ntYzl6EmM4cAoiU1iMxiC4Pv7LFY2JstQQGuoiVUBMvSHp/JgEUcUKRIA6chb\nBpvjyU99RkdHi/k+PnDQ+pUMjvZ6YdT6fwtP7UK+QbrSfs6VvJ49oP3xicPJ\nWsQhitsjHp8cI8LzvkalfADbMR165kku7KVbfhjzgmqsbXtCYSXBRHVUuInE\n2AFRcuCuijcwIl8X3YJ+sX6/1JmhEfxMOAfM9hszXsiz0mTMAtpT9P9wS2ue\nZft/8NlvUCyAwJrNPppNjpGqGZoWpIqfmI/vVpLABq0c7iUrepsFevvpcYx5\nU5BcvwUJm1OomdKnZj+1rcvAH1kINgFtbdqgCGRXbWXqFk2dnCYHGKNziwkI\nZNUtm7zUU1l+7iUzP+FAG8AnvKyw9RhcV9HNCqh+Y6pBk/icokhZ7O/kzDqf\neP9+DSq3jOQfl8o3q9NjR/2aeK2dotikQrdXwRUAPMPytCJAa18vF3/9w2KA\nMJCe\r\n=GpVe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"e436d65e9add4c99f6258ba65622892085ccaa14","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"6.4.1","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"10.15.3","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0","parse-path":"^4.0.0","normalize-url":"4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_5.0.5_1624455304838_0.25902452679811216","host":"s3://npm-registry-packages"}},"5.0.6":{"name":"parse-url","version":"5.0.6","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@5.0.6","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"9bc508b11f8844e0b8cd9b43ac511852a4e24ec3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-5.0.6.tgz","fileCount":5,"integrity":"sha512-nZp+U7NFVTsBXTh6oGxdwvd7ncz3hJCl74q0lC0pLc3ypXJMKFUpfUEAd4r1x8zVVF5UHFik+CBNOQKN0ayByA==","signatures":[{"sig":"MEUCIQCxtoJ//G2n174u56SHwW+2NozpsK80fkzw8InCS6OonwIgeBShlU8QX2e/OorUKaLo8WCpiwFkvqHjXRbMnidZf9g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13348,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1UNgCRA9TVsSAnZWagAAF8cP/2ZCtkQSPUe0U+Gy8Akv\n6rw8E14Q8apCEe8k7Q2fRm17LhfRykeRIJfSTgDOkRN7//hvbrJSlDyo9WXh\nqKfkelBYfNkcTxqdVoT/Y4EpwYNzfNmq+hHoN4PSYwqHN0pvzl/3u9WUIujE\nADC8rF/MQw779ZDriHczNNWw81zrNM+j40X75BjjFwnYuGR6uML7KpA+PzMu\nyBiXIgKNFWSlVRt8fimT3IZKmx7k34XwaQGm45WWglI8ilXvguKVNDtYOzmS\n+EmLAin5HQQ+3zfTdnFUKZVxbSrUPMe3O6atgu5DRJUT76USL7riueay/v4B\nzkeWhUVt+hTW9IXqekTOY9hkXCTFmG5XFnwfUL9qSqeFkgHVcCBDW9meqevf\ndsUBFX+CgxU3j7rUJEd0GV+rZAKNg6OycRWCBr4NwHhXFbtYeCL4kU+gU6Fp\ntWVoAKHvUG5gzhQIhnvcYm16dKQ7P9YW4Nmyt0sf9/PEGTFD9GV3P3+c2iDN\nkg1vAr1ZeEHqb8J9fQADPhpOSbKiUmGMWt8Vf1kxQLeDUowcUSsnz58KHNR+\nFoWvu+k2LQJbatcudEcMXbKs9ZdOxrLYBOXlFWf6UMCFAh6dayuNOM2vwbjc\n2tpYrXhIDm1U4uVNA6tik6ypLMtvdA1WtY9tx5TmjjRmncth0zxFRu0sFjNW\ni/yG\r\n=22Og\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"b99cf526eea1e6281d390438e0d1fbec310e8e5b","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"6.4.1","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"10.15.3","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0","parse-path":"^4.0.0","normalize-url":"4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_5.0.6_1624589151545_0.09647418798401941","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"parse-url","version":"6.0.0","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@6.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"f5dd262a7de9ec00914939220410b66cff09107d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-6.0.0.tgz","fileCount":5,"integrity":"sha512-cYyojeX7yIIwuJzledIHeLUBVJ6COVLeT4eF+2P6aKVzwvgKQPndCBv3+yQ7pcWjqToYwaligxzSYNNmGoMAvw==","signatures":[{"sig":"MEUCIQDAV6LReIKlM0zzaqw38mxwgd8tUTJQz7/pDC41cwRC5QIgK886RsAEK3M5IQbN+dS6SZTJsDdXea9CKDAonpA+nOo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13363,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg2uL9CRA9TVsSAnZWagAAZd0P/jRHByCYyj3r8N38wtag\nz/oMtqoR0cjoFkWja6W0xdYNw7kgfrAMrRzMbKz3m4E/xH2QkfzPc+JFz848\nzMuDp61IBi9Xw3/g/O0SqzCEij4bqHAQ+RtRaVgwa1PXsohUq/gtWvEXP2p3\nfH4Q9EJBOHsGEu0w23RsFuImNeyDa4qKraes4Gi4O+ylPqP6md5HzD9f0HxD\nwl8gpj/0Zh4PpXDgBB4hfiauuXzc+PZOJ3g4fAsWT7ciuqcZe1lDzBMu8aXb\n/1DjzJQBlxPUQRiBaYt/XVYuqb3Tr6usuuqfh2YaxG5IR7H6URYdU3PjJI4/\n/uaHpqEcOWHv5CHi+SH8HujU3DD9OizUf7GQe5mo/Z2YUzhY9N1fop0GzM7P\nhSVCXNFT8Qtm0PvuTfiCgvrEtTpP7PBdyNw9VXmGKYAHZ6fJkHf64rezcBWb\nKqiFbiD+McLGZo5yb6isWPSdFoiD9rRgqO+lTOtydUyBjCP/XQoUB0A3mqXC\nvZyYdJQ2TH3bW+QgKTs4QLst7y0opLBMSkgL1BQ7ke54YoorZblGajjsQMwP\nxUyWs2yaLD8LSqDPr+OYqVTsUUFhw9IQn0WsJi3mdYjjGSaW8B4bExTRCUT1\ntAohsaxAYp42g/6N0lkPlXyl9+TPFkzexKNf3SJV54g8aoupGiIggm7x0Sjp\nc0Yi\r\n=iFEE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"e8dbac15371a798bcf2eeff3dcfa6e13f97e7abe","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"6.4.1","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"10.15.3","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0","parse-path":"^4.0.0","normalize-url":"^6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_6.0.0_1624957692581_0.6417023305312985","host":"s3://npm-registry-packages"}},"5.0.7":{"name":"parse-url","version":"5.0.7","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@5.0.7","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"2ca3c32816f1a092c35e1f2afe63bb7924dde261","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-5.0.7.tgz","fileCount":5,"integrity":"sha512-CgbjyWT6aOh2oNSUS0cioYQsGysj9hQ2IdbOfeNwq5KOaKM7dOw/yTupiI0cnJhaDHJEIGybPkQz7LF9WNIhyw==","signatures":[{"sig":"MEYCIQC/ZhT3ONrrCsRlDZ6P2rq3YQ+tALjdPRgOi9ZvOP6lJAIhAOH55xNuk5nqEmbCFFJlv3ygZnVt9+tFmr8z03BNLc6V","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12961,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg2vIECRA9TVsSAnZWagAA+LgP/Aguv+inLhEx/XeRzQDK\nEUXOrf7jVuzedGorhlVxid5QKldY/5T9uH7m+8iGghago2Ky4YS6/4qBsba5\nZHYRB0GJQsWQwkRycFnCicbrfeKhH+YJ+WeWUGMFX4hsc+6ACxDq44rEnitV\nxOmsN1Fx03Z74Xxx9Y6ZWjJLj1mT4/rM96AsuPmMSPfE/3DIck6ky32smgwn\nkS5qNziACgAaJQCHoq19XF2rkHB1+lGJx8/+92VhoFUz9QwGby87VrcoW3su\n+4FdnO7HDTdNFyLUsNRzPNIY4YAKpgNDQAPcoqLRZB5/9yskZlsXwYCdPjCD\nMvObRrHg/5hMH8IZT6eqQYktu/OftRyx5uOYwu/ccOjBT4OJuyi4ktGFpzMM\nE57IEk1fF5PvkISTS6nJiIuYGutHOqcc13EUR1SdQF68gYuGl7FZeKwKXp3T\nzKY3UNwSvqfuTcO4g2MopeM0mODrmD1rveLBVmNX5DhIasmBL0fK20hDoqUz\nemHmvKTyDnlggM/AKElN9fCcmnTr6mPqTHT2EBM3eU4G0ZLvch3xX+M3Dpvy\n4XfHEw/FrWhQgicKa3W4/8Boqc17hfvYyrrhIgADf4EDXcHfA0vpog4fFJaJ\nPvbvAsj90z84pAZXTBNN+FgaahR2S9aDJBy7pzjE4jY2dFMnoKyNlle2yx7e\nZYCu\r\n=Y1+y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"e8dbac15371a798bcf2eeff3dcfa6e13f97e7abe","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"6.4.1","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"10.15.3","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0","parse-path":"^4.0.0","normalize-url":"4.5.1"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_5.0.7_1624961540480_0.4145571154893073","host":"s3://npm-registry-packages"}},"5.0.8":{"name":"parse-url","version":"5.0.8","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@5.0.8","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"0c891de5b30bbe08f18725eb753c0ee98d48cbb2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-5.0.8.tgz","fileCount":5,"integrity":"sha512-KFg5QvyiOKJGQSwUT7c5A4ELs0TJ33gmx/NBjK0FvZUD6aonFuXHUVa3SIa2XpbYVkYU8VlDrD3oCbX1ufy0zg==","signatures":[{"sig":"MEUCIQDLUnhraTz/XeaBT8VhnbP/imjasS76J4KwLIpEC4nZ/AIgY5VT3RQJ5WpTJcjLACR1gxgQTtyon0CkQHjFiGPw0ac=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14595,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJinmDaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo1rQ/+Ou24w1UU9Y/3BUp9IgFzzGlVdqJyYJ6P7g+WCQiJE1u/vcCV\r\nb16/d86EUBswIXtMKCLoYh0iA1Mpzq/N7/jWSbRTyg3G2D/uxcEVjhOcDbnz\r\nwi4jI6kUpMuXktEsDuFrT9zyLVn0eROMCSW9rNLpxGgVCspBCHRy9P+EvlIH\r\nvmHkeNHCa5ig6JTr4w2uIiccphszXuaeVl0ieF53gA3shMx2BVpb0DUcEZl6\r\nUcVpLnc42gOkBR7n6hnCCihBf0SD0X1st8KMGhfymw/fZmNnfihRuaQyGS1R\r\nR0H8gjlKVpTO6Fzk4+S+TY2TxcAgZIw00HsTeBikJ5ZfiN9w9p68nqP7bqce\r\ndoNN9M5Qn7vZjRJaOACa7xfMwmM+bIyrg4LTYlhIfWiiNdHP/2jDf3dAyKod\r\nXcpKSw+rpHAYqxh5+1QMI33ygzwMyHGIzGJSR4OvdmV5cPeB9bxwHh8PqNCA\r\n+kvvV0JUIDpxegMDnGwhnWEgaMcNxOz94FabnA0z8aSlPze13BmLrpzSjDco\r\nWnnrf9rf2S9VWLjwuaZLR8IAs9MaNzMuwkLZzBOkCW3bv+/NqX/xTHDaiEcm\r\n2+hM0SnuBb8wCGyKo2+XuO5SC2mbpzYR/j/CtFkgWPYSvli1yy8/OS4wnHJ5\r\n/qPCvx3qsRXUbnAD819fyYJAjAjgaoneGDE=\r\n=yqTi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"./lib/index.d.ts","gitHead":"fa488b2f26715995251c30825398e6aa96a0aadf","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"8.1.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"16.13.1","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0","parse-path":"^4.0.4","normalize-url":"^6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_5.0.8_1654546650526_0.8749310214581787","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"parse-url","version":"6.0.1","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@6.0.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"5aa13fbf4240ee5c71ff8891bd470311ff78b209","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-6.0.1.tgz","fileCount":5,"integrity":"sha512-EY1/ifgf9BnizQoS09a7xbUI7LOzqUsLgmY/5xe+W3XVpsbARDZmmrjPqyDx0mdioZPBpKbeTisAHrLLndX/Qw==","signatures":[{"sig":"MEYCIQCqu/gI4CX4hL1k9bN/eqeQB06D7e/fTNWKTZhBxcB27gIhAMrAIfphk6XhLGih9o7HzMq/acYKgdOMqnuCTIabISIo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15196,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiuXdeACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrM5Q/9HCvp5O5n7m8M/ak8vzINBWTdWVoiXgBBvLqlXRwchMhdQBhG\r\nqNS1BrUetIOXa9JwUord7Fq0naJE2cAi085ytfPIVX2etLH6p1/pbbYpfHWj\r\nmI70kTMultxH+rL9j9wJSy4JTxMsc3IMIEs4Uu2slnyePEiOWprFsieuJ2NW\r\nwFDoiBa8Y4Wjy8BooczYPPryG05mmyLbETll2XYtYfruUslH+gaSxd0jATcf\r\ny7awMxC+t1ciPFwTpbfkrxvy35Am8UU7sdgztBtlLSUbcbZxuhtE2pmBRjP1\r\nCZL5DPRGSMY74IognSKgnNWlLaYkB0a/ar9+jWcJ1FDm+ge8j658rk8Z6Oe5\r\nSzrUbMmJ10ihdxPyhQhg7Il1dFmX1gu1/eAENq0tjoVKayOLG82cqGTVWKGk\r\nSrFGvV9TGtcVKmNQEIUVHAXel/LSqmtIcc2E/9lQ1b9Cg558Bj7b68AEMXRS\r\nrj8gHzgQrlBYOC3rPF/Y4+Ya+LmWxmC+qF7G1f3Af92larvfzczzPOiQWpjk\r\ngLaG+0I8Y3nXvE8Zie6L/nJDbiPniQ6M6k+95VLLNujY26ZHQMIfBalaIs8I\r\nx8G7Iw2QeEFY7jf5KfQlXoJKOfX0+crEzOikVo2oD33wrCXw3zqPvtoBBBWZ\r\nkRH0n7g+CmwJy710UMSn24rp/XhCzTUVjpY=\r\n=v8+b\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"./lib/index.d.ts","gitHead":"743a5442cf91cc8c5abdcc6062508c66ea853602","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"8.1.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"16.13.1","dependencies":{"is-ssh":"^1.4.0","protocols":"^2.0.1","parse-path":"^5.0.0","normalize-url":"^6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_6.0.1_1656321886226_0.3059107961105274","host":"s3://npm-registry-packages"}},"6.0.2":{"name":"parse-url","version":"6.0.2","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@6.0.2","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"4a30b057bfc452af64512dfb1a7755c103db3ea1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-6.0.2.tgz","fileCount":5,"integrity":"sha512-uCSjOvD3T+6B/sPWhR+QowAZcU/o4bjPrVBQBGFxcDF6J6FraCGIaDBsdoQawiaaAVdHvtqBe3w3vKlfBKySOQ==","signatures":[{"sig":"MEYCIQDBvh1A3Fio3q+Fj5at0Ahx4z9tyvfq+Pg+s2CFPaPRFgIhANx4nplaIS06VMX5d+p7l9/2EB0uT09rdRpM4tKuJ5B9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14195,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiuXg9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqukhAAkFRasPWtk7sHVaLbBIZ3mqk7GsQ4Q5HD32J5rUmXF0arkHk7\r\nL2pSdP4YxM3cSO2ip+3ZbJ+MOiaylAiU30Q7u8g1yhH0N3pyi5tdzXOK96Sl\r\nCXgYBY6tfUZ5I9FMa+n+idAMVQDktBPLvIPYdDfbOH1/vtZqMLjuX0aSkKp3\r\nXBR9bR6hbwwDsum8Yq+jHI4aGuePXAurcXaJ84WtJoUBXbjy83KB6wTwEPzm\r\neVTZZn5dWVGlynQ5OOm+KXcK2m/eNyDt98OLR/MLMGGloCnqGDIn81Jr9tGa\r\n+EqNxgcGP1LnL1giWyZF8TuyBbdMcwUr07I3s0nOBuNfJp/mTAniznO12UyN\r\nP71m6LL1upv0+pUGvjZL2eBgJIP8xuNhJ4tgFN5Ty7+6Kgu9gSKsiANbZI0R\r\nsy/f74Xm7p1euqhevoU6Q9QoRQrdxDQQaaOIMs+7MzMsj/+8oA27BY9daHMh\r\neQO5hvyGhTAXU/V6KUAjLdYq9baQeIUI4+WH/h9qV5Wi38i7u8sFHdJUu+bi\r\n3+4jf5KVST5uJn39ufEAEJC3Jc14IH5BBsJ/tRUC9l59nZ68v5SPgA9FumJa\r\nnhNrn49RdEZUM3BTv+fDpY0gEuKhviP+yZuaiKM0FLzZHshsRXzJEmMre59P\r\nfaRu5A60ng4aCvu5+kj/y6ahvPJlxK+ma9Y=\r\n=x/8k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"./lib/index.d.ts","gitHead":"fa488b2f26715995251c30825398e6aa96a0aadf","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"8.1.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"16.13.1","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0","parse-path":"^4.0.4","normalize-url":"^6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_6.0.2_1656322109124_0.6485218891538789","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"parse-url","version":"7.0.0","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@7.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"9db0690948704601d1d02df9657a3c3b3a77bcd4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-7.0.0.tgz","fileCount":5,"integrity":"sha512-wMLL6I5JLWpjC47i1sXDFRQdTBG9MdHsPNLgEEBw0mJYwO4iqHzfxg3ziC/2mk2trN33jzuDodqBvoFbdkR09Q==","signatures":[{"sig":"MEQCICsHVxxEG3qx4h6q0YN1aqakqQWF9Vfo4cOBInzlhyQSAiBxHAe47VX1nhea3jQHki0vUffT5FLN51KidI20J20tzg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15195,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiuXjHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpa6A//btSrCzpkL2r/fBm59jMkkXnVm+KbH0I8Vy8u9kalnsS3sWhF\r\nthZpA4FKDFjCA28/ngmpv/l/dZ6TBKwcdOgxD6tc9fNkGDEFOJfrUSZLAxCB\r\nmbkT69xkWyL58zyBbWRiCJS8kGgcavN6vF7ViWyt7P3J3JxucTWN2RGtE+uF\r\nTQtpp0JpSEI4vjOSd7XkAwOSDZ07F4+/mNI8za6fByDR5SEPRZtw4vrCQaeZ\r\nOb8idMZt6HIBNAdao4IGLsELl3biHI552w5EBWkdGz3h0wOqLSqL4kZoFruj\r\n6rvNwtmeLXM1FnRYha/XOmu+SnLNUMmetwtVMea/MCfEkDECUXm1mNx1XEk6\r\npWJ4btGDggfnwQGlfAgg6+ypNs/dzEH+kjaQf6/kvNmSa9Mqmqky16PrWfww\r\n2bK9hgow50ik9kebfm/U/00DjZwCJyPTc9CDUa9mL/jDcXpFP8GfIXuR72X2\r\n3c5Uq3wlOsEMyYrZaS18DV4NSaEj6EQ5aC0OxllcMatxrhMCArniVZV5lqfR\r\nUGVI6BAIZ8BRT3B/MQECCPeHP4SElAiYu9R32x+5fzN7Onf6OPAgzxYPVD2p\r\n76EcT7egKw8f9qTq/lspufaVTkgfBWyyWNAWbkx0X4EdbEokrZBpIlxCyUbv\r\nCtie3vz1DipYppnsCoDAuI9Vd5BhIOqxong=\r\n=htaK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"./lib/index.d.ts","gitHead":"e0ac69f832894f0d0c44f5f60f25fadd66416010","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"8.1.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"16.13.1","dependencies":{"is-ssh":"^1.4.0","protocols":"^2.0.1","parse-path":"^5.0.0","normalize-url":"^6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_7.0.0_1656322247596_0.37547851394273235","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"parse-url","version":"7.0.1","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@7.0.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"d574b8303578493a7b92836d3c918d769c3ce59e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-7.0.1.tgz","fileCount":5,"integrity":"sha512-hgU78/tt04jUtPhjzjBHHh0JjdOcspctMLi0pdLFPC0tPt60bL2+KfpZpMuvCSeLr0AiInD9CxvvaAgL4eIxoA==","signatures":[{"sig":"MEUCIQCwiRmteVRBQNzBOruyHteRHS64qFHeruSyB0TDoicezQIgdKUM+9DNt0swh/UdEmAhekpclNLoKwDzyT43h+DvWIY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15389,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiuXl9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpWzRAAlonbUUj0UzMu4vZwYLwpiSlvnCGBcl5Zq2GdhNuowr+nyShq\r\nq7rU+FxiFmlrcus+MVpH9/St/v2uLTQHrCM0xrFsY74LfrSASGysjea1MQzx\r\nuWamDaVAbgAoT8m7KhW8j1zezju8NQXIgWURRdGzhTcTL81rdQZ33JCN8Idp\r\nBQaowV0/1F9mt9Yoi18KzTGBbuxFI9ApMpw8Cm33sZ+VsRERpR9LWuWDZIFm\r\n99g1ofgwDLCsLuZ/Pby4Zkc++3mpF6H5EVUUzl753BnaT7uz+7aFtK9zax90\r\nYB2Apb6XfZAbihWD56Ap9080HlYhB9KQSYnjtLt16wgPvy4y6la94CyX/wBm\r\ncmu3hElY8qeIR8ThVi0IpWErlavW3nXpMNPIdUQPlqistO7WVFrsSFZsoGCE\r\niMb8KL8Z64sN7F8i8XlBVHOzj4pHuN7pzSWcNTznqWYHveHCy5S6VSY475AC\r\nlmv10FNQAxELQED009q93cDXHZZ6X1I2Z3ilNOx+G9BPVs3/QtnLs/81Om+E\r\nxU3RLk4i9PvmKkZsF4pGtu+XFJokc20Ey8nVxxo2REqS2NTqZXocxDMq2pn3\r\neLBU8u7V/noC0DGdnuD09vTFULxBM/ggUS+XlYQrdL208Yx9Y2ETsOXPAgHd\r\ngYqig9OIYy7AK+CLeB/duLdoCRjiCpgB21w=\r\n=W860\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"./lib/index.d.ts","gitHead":"468f965a888189dfb9e20ee7f0e0a8ff95490eaf","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"8.1.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"16.13.1","dependencies":{"is-ssh":"^1.4.0","protocols":"^2.0.1","parse-path":"^5.0.0","normalize-url":"^6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_7.0.1_1656322429469_0.8618818513097259","host":"s3://npm-registry-packages"}},"7.0.2":{"name":"parse-url","version":"7.0.2","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@7.0.2","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"d21232417199b8d371c6aec0cedf1406fd6393f0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-7.0.2.tgz","fileCount":5,"integrity":"sha512-PqO4Z0eCiQ08Wj6QQmrmp5YTTxpYfONdOEamrtvK63AmzXpcavIVQubGHxOEwiIoDZFb8uDOoQFS0NCcjqIYQg==","signatures":[{"sig":"MEYCIQDNjhWEVPiTPe5ZM8xEI+heNTZb/Ofm5VyyMReePsnYeAIhAKug8/2UKeADVG8jPe/5UmnizHGefDMegfFEdTfJpJAK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15443,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiuXuDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrt5A//UexfMtP6CftCLGn5Iq4jPol7VpCDdnVueXnoU7ZIqVjruFTx\r\nrcfOpnm/eCxYBi3cMIQ/VgkdoHv8LDMttkwK2MJpOnCdH3OM8ujCbk6h7CoF\r\nRcCQDreLJFZ3Vzak/i21UB9EGoS6yCYZ9KtPvp1bEeEs/W7cxEH8KcdgfS2/\r\nCPsNl3nf3q7Vn+6XhtjUzM6LgWuRwCFIaF5blifBhJb7V0dQvu01SzOUBo3R\r\nLAKgzYX3EYUUvSU2eFskAAGp6vX+KCvoX9ApBgLXmpVG7rkadAnX+ztyH41n\r\nBYrohHcnucHo7Iw/EJFxZMIhqov2HOfm85Xa8lSL3fqEt1JQbtGNPOc/QlVi\r\nMvBA7/yoBert8SO/vW+57s9hb/KGB1yE0Jnb4kWAkPZ8LrICQhyLopzSXICJ\r\nMXfl5pyiVs3e5iCqMopng1OVlE3dU4Z4YAp6ohFE/3Wb5PWPLCK976S5zp33\r\nLhgNBDjWPcSMWbcjMFsVM0nnzDH5xN71r2CgxUk+JDOORD7L/4tkDaYAAw+E\r\ndHle/XjrU5XgAui/+Qw/6ML8HOV3a3x2u1IRtaVXI8AADHeioIidBN8NFvxz\r\npLsj9iDjmCL16J49BCJJCaHpCfzGJiH1XcVuGb2yXoMo62z27WQZLuOdeK7P\r\nxtZzWz5izBBdfLb5OStGpNAq86ke9b8wLOc=\r\n=hwVO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"./lib/index.d.ts","gitHead":"64bedf6031ba3b74097997231c4aab462bc6b64f","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"8.1.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"16.13.1","dependencies":{"is-ssh":"^1.4.0","protocols":"^2.0.1","parse-path":"^5.0.0","normalize-url":"^6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_7.0.2_1656322947796_0.7910492192016159","host":"s3://npm-registry-packages"}},"6.0.3":{"name":"parse-url","version":"6.0.3","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@6.0.3","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"d8eab63c8c7e6dee850434763c4e6c5e7e57a45b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-6.0.3.tgz","fileCount":5,"integrity":"sha512-gxeYC5LVOWg1po3HjHF1JHyyI+kDp/ziEGWUv+smkonT//KRI8TM0zi+yj4e2EZWZ+WGiTPIG1WJSkWZE7isWg==","signatures":[{"sig":"MEUCIFysicqWoJpjgI0dYhGzJCkMml11JLlhaXU6Oi87KSt9AiEAhuVao1wy/wHZyaGEz43bp5fJDIAvjkYHiXnx+nfMfks=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12962,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi3mdIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqZ8g//XufZlzpJhUfo7H0/2eB/V1N9WkZjcNgOYYiTZy/FMYLiEiDV\r\nNhMK4pDBEjZc3BG3efc3UJ37ZLYdzQ3RDQSMTCg8k8s6oocYH2u7P3NzQTU5\r\nnzZgAH+jupXpKHsIQOMG8K1SD47SJUfRqYNPtr+wMG9f185j9NFfWFG9H7mh\r\nQdX/fPuWKwrRgBNdO+D6GigWbFc/uaF6sRHMwmkFRUluN2oKMe597k78+tSF\r\n+kwKGe5STbo1EQC0A1X+dWTDu8fC1zFQfRcz8dTqxmf/lDo10dBABFWHh9g2\r\n/+ZpmGaD/lSxl4OOsa2gA/ZjlOhwlw7oCP1xE+gIuFzmq2iIkoMvzf1Ff4v9\r\n/wabvImvBN/mWeSlYqWLRxj7h6bhZUQDMHAze4370R1sPSjLCAccP1YsPBcO\r\n3gkjhLorN8vM/wV8hmJFc/oBrdM4gsx783BBZ7WSoZ0LuWRNbrCzY3VQyKSn\r\nBnEwxphm2WyFHbGsxdOB/FtJDdQ909QhaYhZxP8OouEEzqKbhvFm2fw8Xwqo\r\n+vQGQk1PLh2mrpgQ3ZH7z1X41gs913mqYbpTkhExvK4+cuXmIO2AwZCgPjPA\r\n3ri7fzdEYyl50Cm3NekyGdZmXF0nJoW4Yw80agFRXbMOU1lCICHxwZPXeMX7\r\nFKXlrTuaSdS0I7P7iXX9xqT9aNWoDnRpERs=\r\n=456Y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"./lib/index.d.ts","gitHead":"e8dbac15371a798bcf2eeff3dcfa6e13f97e7abe","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"8.1.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"16.13.1","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0","parse-path":"^4.0.0","normalize-url":"^6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_6.0.3_1658742600078_0.23543838850347454","host":"s3://npm-registry-packages"}},"6.0.4":{"name":"parse-url","version":"6.0.4","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@6.0.4","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"8cd54113fdb0c6d429a38f02b92c7f322a3abb21","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-6.0.4.tgz","fileCount":5,"integrity":"sha512-WTYjsoMBLeU0RTZc7ehoniBQnvemydNdYC24aZNUb3nukYX7nCyEiPdaY52u103eu7LHF69KWIudclJrkZuw5w==","signatures":[{"sig":"MEUCIBiuyhQW9z9G6xaZS9Pn3C/veAH1aLBN+pT3XC2komgJAiEAlp6p7ndzHIePYmY5FKUza+n0l0eXPPNttB2ruUXOaZo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15196,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi3tNbACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq04Q/8D7SsSDKW7LrGJl7gF3i4DUsqcI5edWlLw9lYocPDjzY/TXOL\r\nxtQrGLvx6Z9J5A3nBOJ45VZv2kQegVE4swsaJFwTII/eyHmeUtaOUZQdtSgI\r\neFeQH7QoXibOGK1WcuCA4nxVCmo/L1MxGippD8fluB+rrmIDqEBAJXrMZsg9\r\nUpmq3L9LSLc2qXjStGwjazk3J9EWMXFfbgPvmV4nqg/AbHba9HwMi27HYkXl\r\npPwNLTbFs+KMO6OPt6kNpcX+6na9RJV80KCZAG1VGtng4/jc/XZyifRbhXy4\r\n+W6MhnuMY3b5M93tqvcSEYaQdnquIiI42dwVCLOS7TqC56y2hyZDxT5nr2hJ\r\nPkNCu1QstlsZq00knHVWyA69TntiCQ3FfCTkQB+FWMUCiaEMQO0xHrk21AMC\r\nLa0PkZ7EPEsiLcSwlCwqKngGP9abDzx+OHfb3P01ofhe++16ZtgoUYIks9RU\r\nbn8ESWHvBUoMFCq98x5pWQVoasCK7qT9W+joWRJzo9yCPPP1Pgjq1pXwS9Et\r\nNJU2jyvXh1Kv7W3MjUWXitJRZOmhBIZKIK0csraSllMVnrsiWRnWC5y2xq0c\r\npn4hck+e4J2QKCW89nbZ4nfmg0enVlmaEhzxd8G1D72DAOxTf7y6WgC7QhUV\r\nVHFHvEBQ+RnTEmNOLWVt/njhTPCGi1rELRM=\r\n=MIm0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"./lib/index.d.ts","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"8.1.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"16.13.1","dependencies":{"is-ssh":"^1.4.0","protocols":"^2.0.1","parse-path":"^5.0.0","normalize-url":"^6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_6.0.4_1658770267746_0.3889098730068059","host":"s3://npm-registry-packages"}},"6.0.5":{"name":"parse-url","version":"6.0.5","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@6.0.5","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"4acab8982cef1846a0f8675fa686cef24b2f6f9b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-6.0.5.tgz","fileCount":5,"integrity":"sha512-e35AeLTSIlkw/5GFq70IN7po8fmDUjpDPY1rIK+VubRfsUvBonjQ+PBZG+vWMACnQSmNlvl524IucoDmcioMxA==","signatures":[{"sig":"MEUCIEyLro/9Xa56d+GFrx44AxJqf/c2Vpn4hCyrvyttIMViAiEA2/R7kc7oN6k7z/uhwTcKox0QogSsTlR1zBjjgxduWHA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13363,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi3tPTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmobAQ/+KNNKBA+gjfj77y9XYAix+Bw7YjeJvDIdISWJqMgBe2lbQ0Gl\r\nZ+ZMn3GuMoA90MKvyKNLJ8Kqc07sMGrwNypFD9nbE49Kv8rzpYLfOqbeABkX\r\nElhOs+tRTRZ5FWvT9qLvQiVAucv7xCLFe2Te1gawtsethnbL8WC5UxbB+0gw\r\n1KwfnnErgPSniEIDEj0d9rQTTB/TLFLl0iI8kknahb4e3CU/LWJJgpwLWyNq\r\nyQ2hJgYBeRttcnQ2bBB98ohy9L2G02I8xJGGWA6WUX4/s2UNGUFZncj+T5Oj\r\nKj0DwoR80I64WvcLFJg7So4dQj7kVEhpYauiAkyJVf0bE2juOqYCTsicrSJh\r\nG23EQ+02Qf/vMHDVhf3j0Do1oK8SYH8ZuqERROEfpLE3P0lhmdAXZjLIJ9K4\r\nxjDPeeFBnXnBtwev99z9xkuUgpg3TrdT7GUpxfxRlM+bc9XUN74qpV2LjEsW\r\nfnx6QBWVpvEqBpwFfPqvQkEDaDalD2hdz5HPrJAvKHk0R9OHvh+kNjursMlF\r\n/FDFTmQshdk3T7bisREVA9Evv587bWHBaPPYYxA3nwvcvTKv7UgWRNvFxUxf\r\nI5VvEf0PLi6eHbCTS+2liIB09dRGWZIA6j8552BSkvQgluA+EDIxe3hsV4O5\r\ni8Z+nq5kM4ZcLTRsVDNYcbkPv7+5bBO/MjU=\r\n=ThO4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"./lib/index.d.ts","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"8.1.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"16.13.1","dependencies":{"is-ssh":"^1.3.0","protocols":"^1.4.0","parse-path":"^4.0.0","normalize-url":"^6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_6.0.5_1658770387466_0.5006898346701358","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"parse-url","version":"8.0.0","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@8.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"f811654218cc70d851645e51d1b878eb824bb4e0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-8.0.0.tgz","fileCount":6,"integrity":"sha512-0WkVLin++JQ442+TaU5c/gHnY/p0UgeIPrp+qHcD1Qk8IEwb15d+qvqLGxjLd0ZFh+I47gsRZPqmopNRhfm+Mg==","signatures":[{"sig":"MEUCIEvtkV9lqbVM8wF90VICxIT1h6urdcODNpgzulwvsmPcAiEAvrDb63+6m923q9Lhqyz0xmKyjQR/xWxabvzrgpNBIbw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22816,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi6jPXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpuoRAAmSE2/ug5mnH9DUNcJXoMUP0+VIzgAjnkvqW2unGt2tSnVpjf\r\nTNDUlAbmqIhFQ2i+eBU5jjfntNwaxj9rgPysNkUwVaErZW4jFYWILalMDOaP\r\n9NyDJw0ZahAD7E69pP2KL52zLrgv3anUlxTqYsWiLB4qwliYHpeqqq3VCcIw\r\n0evFOxSEu/Rzz5jWCbYhd3HRSPTeoadFI/kWPKUig1gnhl6zIVer+hyJ4pw4\r\nG4gZ/klQLw7mA2OOJCwGCGhExLeazHj7+94AZz+8bBEcW63mNtzeB8rSaAgW\r\nEtPMJ+Hl+8JYN2+M2+nsbn66/rmIK12VFjsoE04GrVwqa87rbSpJh608/HL6\r\n8IU/kLp3qLnQgCPmifbJEa4+WWxi0otkHbqrVY0s6zjZdXwKPg8i1EybXxuf\r\nSkL9h9ynN1hQTz6R/IEi8dN4vbh6VcNFXRvbebZ72KerQ0vF3i17iC58pAhH\r\ndWB9ti1axMtk+KTOFWTjKGGLXFqhR29yhRoaUm6B5yVqf8u8f/shiBhxmaCA\r\njmWNCsS9LVVbRER7IR3J16h7ZwQtZr2z+yVrJrw+X8fuWRn2tnKFbbK9cKxC\r\nXBLCrYddMp5dSLqgouDa+pMtzxNNneiuu1cKB/LIIOiuUzIvuzma/e4Q+yA9\r\n/pKTY7Hn73wbck188K8x+Vk44se7x6pM1eA=\r\n=3PIW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","types":"./index.d.ts","module":"./dist/index.mjs","exports":{"types":"./index.d.ts","import":"./dist/index.mjs","require":"./dist/index.js"},"gitHead":"2373f7f942a0e01288e1e4551e0c297030ea41cf","scripts":{"test":"node test/index.mjs","build":"pkgroll"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"8.13.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"18.6.0","dependencies":{"parse-path":"^7.0.0","normalize-url":"^7.0.3"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1","pkgroll":"^1.4.0","normalize-url":"^7.0.3"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_8.0.0_1659515863661_0.5032964587500397","host":"s3://npm-registry-packages"}},"8.1.0":{"name":"parse-url","version":"8.1.0","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@8.1.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"972e0827ed4b57fc85f0ea6b0d839f0d8a57a57d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-8.1.0.tgz","fileCount":7,"integrity":"sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==","signatures":[{"sig":"MEUCIQC+wLRQR1+CmCWumFQNQs+4MwQN4946G7XZCQ6xlPOHkgIgLZEhW2xyIQatUnucAmMJxNWXWaIo5dLFKFt8scLooCo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36289,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjDgvfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmppjw/9EIr439DE2+ss7i+1eCxAouMcTZDsmoqKVP5Pl2nDVkpTueL9\r\nPDaxMeolOvhgD78GxWI7D7FzeQZP3kelNgtl3v31IMCbV9T8fbFTVpHFfxTB\r\nSYOea/Z3omHGIEQ3NlLymRsDXNs0/StF7mA8fZN4wkVD4iVjlSnE55F7Ik8C\r\nRUanhTIZSxcYJxIee8Gm51Xq8dGdYWZQ5aKc9Kr21nHcgvWKmbQbYqv0yd1u\r\ncLfZ0WddVheF2mnojYnVobzJ+defnC5uKxxqD57iJuOHM5IbVMYyntxF/OUI\r\nWtgRE+cyuKTEyY3BfYwWV7hAOvGFYvQ8xBY+K8+TUxPyx79AV61OfIDfIn0c\r\nLsDoAccE5ND0YUws8I0bgjEKPc490JbOhy9appu9e/UZZxV099lk6SslWyaa\r\nSrywL3Nh0Gg4MFwBC1Z/rvaNVsfafGg5m1pTyfFdLYytAFQVKXklp8P0ID2i\r\nBV9AAapxT69AiGcgnkkGOsX991nEoTs2YcQi0MiT1nhV8Lrg7RrC6/Y40be4\r\n53uxUwnXuCj2HerRJyog5wLqAmH+YSzUBb/v9gaODVeqS4dyxinRYrWWPlEm\r\nJ/Y71DDzTrQSRDQSa9ZZNaJwFVwbmr0sVYH8T+k+Lm4E0g23U18G0tCqAkzY\r\nOGEv2AMKe01SfBzuMlYWMjf9aULg6k4htfw=\r\n=Ca9h\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","types":"./index.d.ts","module":"./dist/index.mjs","exports":{"types":"./index.d.ts","import":"./dist/index.mjs","require":"./dist/index.js"},"gitHead":"4412976f34515399f2eabe4d50cef71657e4e238","scripts":{"test":"node test/index.mjs","build":"pkgroll"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"8.13.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"18.6.0","dependencies":{"parse-path":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1","pkgroll":"^1.4.0","normalize-url":"^7.0.3"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_8.1.0_1661864927224_0.11473377813789565","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"parse-url","version":"9.0.0","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@9.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"tsd":{"directory":"test"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"b9244eeb4ac01d3e7dbfd79e271ed3b7caecbdca","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-9.0.0.tgz","fileCount":5,"integrity":"sha512-RYjf13IUrohyGiZgyeVGV4OQWnU4z51osFD1Dp0Q6KbEjWyEXrfDSqXKZfFGjJigMyMerf22ILbZVZ3lP0WCCQ==","signatures":[{"sig":"MEYCIQCDFqvJtTNyDn1sSoSx12Bi6U37pAu34RDPZcTFBX5+ugIhALvHrc0JNEN7TfSO9q0XCtNm/+C8GUJh26uR5dZUZlA3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12398},"main":"./dist/index.js","types":"./index.d.ts","module":"./dist/index.mjs","engines":{"node":">=14.13.0"},"exports":{"import":{"types":"./index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./index.d.ts","default":"./dist/index.js"}},"gitHead":"3205ea38204a103cd027ab88338d4b0ab311ebde","scripts":{"test":"node test/index.mjs && tsd","build":"pkgroll"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"8.13.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"18.6.0","dependencies":{"parse-path":"^7.0.0","@types/parse-path":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.24.1","tester":"^1.3.1","pkgroll":"^1.4.0","normalize-url":"^7.0.3"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_9.0.0_1704188315026_0.40355639341607175","host":"s3://npm-registry-packages"}},"9.0.1":{"name":"parse-url","version":"9.0.1","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@9.0.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"tsd":{"directory":"test"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"1c0c5da861e1dc74e71ce7a2d4fb3dfabd2837c5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-9.0.1.tgz","fileCount":7,"integrity":"sha512-9BTx9oCKV8f+OhbAhU44KqRUCQrKf8tEbxRq0Ld7m2TSWgoqmy+iVt7xnjEixlz28J9V6sAjVBv/wZNv4+2Jsg==","signatures":[{"sig":"MEYCIQDKZd5ydpSMcAuvhWLiA3fKcOKug95HpDe4C9vyfQzDaAIhAICeZLAhzPioTxbGpoeP9r7B5OMcd30B0PIFaN1W6eo1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32753},"main":"./dist/index.js","types":"./index.d.ts","module":"./dist/index.mjs","engines":{"node":">=14.13.0"},"exports":{"import":{"types":"./index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./index.d.ts","default":"./dist/index.js"}},"gitHead":"5af2b7c19bac86ac1f8a134bcbe6797991798022","scripts":{"test":"node test/index.mjs && tsd","build":"pkgroll"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"8.13.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"18.6.0","dependencies":{"parse-path":"^7.0.0","@types/parse-path":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.24.1","tester":"^1.3.1","pkgroll":"^1.4.0","normalize-url":"^7.0.3"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_9.0.1_1704188450485_0.26921269605005316","host":"s3://npm-registry-packages"}},"9.2.0":{"name":"parse-url","version":"9.2.0","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@9.2.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"tsd":{"directory":"test"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"d75da32b3bbade66e4eb0763fb4851d27526b97b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-9.2.0.tgz","fileCount":8,"integrity":"sha512-bCgsFI+GeGWPAvAiUv63ZorMeif3/U0zaXABGJbOWt5OH2KCaPHF6S+0ok4aqM9RuIPGyZdx9tR9l13PsW4AYQ==","signatures":[{"sig":"MEUCIBE6vKkF1WPA2VYCiK1xMcZGDBTyb8VntKaSeWzFQ/HLAiEA1wgnu9Frw29C7WxRTg7yXvDPKjsSUMed8E7liCE1teQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":47952},"main":"./dist/index.js","types":"./index.d.ts","module":"./dist/index.mjs","engines":{"node":">=14.13.0"},"exports":{"import":{"types":"./index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./index.d.ts","default":"./dist/index.js"}},"gitHead":"a58414d3c7bb26507b2eb5aa3aa9e7b84743ff8d","scripts":{"test":"node test/index.mjs && tsd","build":"pkgroll"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"10.2.4","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"21.5.0","dependencies":{"parse-path":"^7.0.0","@types/parse-path":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.24.1","tester":"^1.3.1","pkgroll":"^1.11.1","normalize-url":"^7.0.3"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_9.2.0_1712121919255_0.2387578601411673","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"parse-url","version":"10.0.0","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@10.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"tsd":{"directory":"test"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"917ff78e9bbe378916f1da93c23f4a4469bbd639","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-10.0.0.tgz","fileCount":7,"integrity":"sha512-Jwwk5yQcgRY41hJPrMZH/UFcYIxTVdyTC8vzkzIGbXSx35DD1z22jSRYBYmZWjzKqYf9GA++/mwkk6iyV6SGvg==","signatures":[{"sig":"MEUCIQCNFRUfU4yc6/Vszk1AcTfX/RSqmZaz7Kh9Y5nE9KgZZgIga4MAT3KVtPGafg2ZSfHrFdfALNlNPPvMTie9hQ8Dm5E=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":39641},"main":"./dist/index.js","types":"./index.d.ts","module":"./dist/index.mjs","engines":{"node":">=14.13.0"},"exports":{"import":{"types":"./index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./index.d.ts","default":"./dist/index.js"}},"gitHead":"0af467f4449b760e21471a1a69c1e8491ef698bd","scripts":{"test":"node test/index.mjs && tsd","build":"pkgroll"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"10.9.2","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"23.6.0","dependencies":{"parse-path":"^7.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.32.0","tester":"^1.4.6","pkgroll":"^2.12.2","normalize-url":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_10.0.0_1745916852310_0.41103550224655083","host":"s3://npm-registry-packages-npm-production"}},"10.0.2":{"name":"parse-url","version":"10.0.2","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@10.0.2","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"tsd":{"directory":"test"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."]},"dist":{"shasum":"b012cf82647216f780c4c2afdcf6cd595ec66b9b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-10.0.2.tgz","fileCount":8,"integrity":"sha512-OqNnO4kWbaCNR87pV1YfS6gxGsBT1hFFjTXvlgYz6pEgi3xCYenihyACiJl6rKiO3Kd2zLHr1YTQX/56W3Bd/A==","signatures":[{"sig":"MEYCIQCfomoWngBESZT3lXXrkwUqa9M1LwzI3cl3d2XZPYnaWQIhAPbpfvirVndQmQrtIsrPTq6keDzgolo+YxWUZjTcjGu0","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":40393},"main":"./dist/index.js","types":"./index.d.ts","module":"./dist/index.mjs","engines":{"node":">=14.13.0"},"exports":{"import":{"types":"./index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./index.d.ts","default":"./dist/index.js"}},"gitHead":"c51bc4b40cf5c671d700829fe06553323fcadca0","scripts":{"test":"node test/index.mjs && tsd","build":"pkgroll"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"11.3.0","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"24.1.0","dependencies":{"parse-path":"^7.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.32.0","tester":"^1.4.6","pkgroll":"^2.12.2","normalize-url":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_10.0.2_1754487769931_0.25000683591812844","host":"s3://npm-registry-packages-npm-production"}},"10.0.3":{"name":"parse-url","version":"10.0.3","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@10.0.3","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"tsd":{"directory":"test"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls."]},"dist":{"shasum":"e9598dc46a2f733500f3186b3945bb73d890c79d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-10.0.3.tgz","fileCount":8,"integrity":"sha512-RvldzLvNE0DtOO1loukZsYcHCzHVUnHe7GNyrKIkavp7fNWs5ueX3kUzY/hXS8uRqDWwtaRKDcAmLEVouPIxIw==","signatures":[{"sig":"MEQCIHFM9xc1gKNwvPyj18Gpt6BblkvwLz1AOrTVxohapDe8AiA4ACcKIq34TXyFflZxOXnKALqahVlbB7fTQKC423uD7g==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":44274},"main":"./dist/index.js","types":"./index.d.ts","module":"./dist/index.mjs","engines":{"node":">=14.13.0"},"exports":{"import":{"types":"./index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./index.d.ts","default":"./dist/index.js"}},"gitHead":"7a9ce570dc76d33da0bd08719f1e9d759cbd1cc8","pkgroll":{"esbuildOptions":{"legalComments":"inline"}},"scripts":{"test":"node test/index.mjs && tsd","build":"pkgroll && sed -i '' 's|/\\*!|/**|g' dist/index.js"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"11.3.0","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"24.1.0","dependencies":{"parse-path":"^7.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.32.0","tester":"^1.4.6","pkgroll":"^2.12.2","normalize-url":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_10.0.3_1755438976486_0.0422581887434641","host":"s3://npm-registry-packages-npm-production"}},"11.0.0":{"name":"parse-url","version":"11.0.0","keywords":["parse","url","node","git","advanced"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"parse-url@11.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/parse-url","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"tsd":{"directory":"test"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls."]},"dist":{"shasum":"e122dd1d820a3ad177be6b3db74af8fa7d75c34a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-11.0.0.tgz","fileCount":8,"integrity":"sha512-cM6e+IKhQ8Fy4lZ29OEYqdOn0itnOqLBy1K7W+6JUcJ0oq7UCbqmBDuPalSJTW40R5L5vmLId9cw8B/0481kXA==","signatures":[{"sig":"MEYCIQC54iVPs7kvLdvBv49okmMVWx0KclxQTvqMa313We4+wAIhAMwRsiGoyZCdVg5PRc5mZQrZmLQgGEHHw7+w2RQQl7uE","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":57052},"main":"./dist/index.js","types":"./index.d.ts","module":"./dist/index.mjs","engines":{"node":">=14.13.0"},"exports":{"import":{"types":"./index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./index.d.ts","default":"./dist/index.js"}},"gitHead":"a9bf05c3b67dd9ba4b4dc9fecd691d52a53ead0c","pkgroll":{"esbuildOptions":{"legalComments":"inline"}},"scripts":{"test":"node test/index.mjs && tsd","build":"pkgroll && sed -i '' 's|/\\*!|/**|g' dist/index.js"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+https://github.com/IonicaBizau/parse-url.git","type":"git"},"_npmVersion":"11.3.0","description":"An advanced url parser supporting git urls too.","directories":{"test":"test","example":"example"},"_nodeVersion":"24.1.0","dependencies":{"parse-path":"^7.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tsd":"^0.33.0","tester":"^2.0.0","pkgroll":"^2.12.2","normalize-url":"^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parse-url_11.0.0_1772637689587_0.19357060120165848","host":"s3://npm-registry-packages-npm-production"}},"11.1.0":{"name":"parse-url","version":"11.1.0","description":"An advanced url parser supporting git urls too.","main":"./dist/index.js","module":"./dist/index.mjs","types":"./index.d.ts","exports":{"require":{"types":"./index.d.ts","default":"./dist/index.js"},"import":{"types":"./index.d.mts","default":"./dist/index.mjs"}},"directories":{"example":"example","test":"test"},"scripts":{"test":"node test/index.mjs && tsd","build":"pkgroll && sed -i '' 's|/\\*!|/**|g' dist/index.js"},"repository":{"type":"git","url":"git+https://github.com/IonicaBizau/parse-url.git"},"keywords":["parse","url","node","git","advanced"],"author":{"name":"Ionică Bizău","email":"bizauionica@gmail.com","url":"https://ionicabizau.net"},"license":"MIT","bugs":{"url":"https://github.com/IonicaBizau/parse-url/issues"},"homepage":"https://github.com/IonicaBizau/parse-url","devDependencies":{"normalize-url":"^9.0.0","pkgroll":"^2.12.2","tester":"^2.0.0","tsd":"^0.33.0"},"dependencies":{"parse-path":"^7.1.0"},"engines":{"node":">=14.13.0"},"blah":{"description":["For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls."]},"tsd":{"directory":"test"},"pkgroll":{"esbuildOptions":{"legalComments":"inline"}},"_id":"parse-url@11.1.0","gitHead":"bc71f7e91755cb651217a61c412fb370036ef4c7","_nodeVersion":"24.1.0","_npmVersion":"11.3.0","dist":{"integrity":"sha512-UYn/lNb1bmkYiM6UaqEbHl9T/VIYreM2Vm79MGZ2soUOXOoOq7qxoTwx8C8p9V4Ko2DLcsVnEhRJzhxsF2kssg==","shasum":"0f1edd8a18c4830562721dbe452c27e11b259393","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/parse-url/-/parse-url-11.1.0.tgz","fileCount":8,"unpackedSize":58238,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIEiF71jzb7vYhuxs+VgfHFrQ1FljX+QZlWkuIVdTXa41AiBOCbDEYixzKSW04wlXn0G15M3bxMElF+UUSZ1oYo+jNQ=="}]},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/parse-url_11.1.0_1772637929063_0.6024912905069437"},"_hasShrinkwrap":false}},"name":"parse-url","time":{"created":"2013-10-28T19:18:54.827Z","modified":"2026-03-04T15:25:29.336Z","0.0.1":"2013-10-28T19:18:56.039Z","0.0.2":"2013-10-29T06:15:45.117Z","0.0.3":"2013-10-29T06:24:25.734Z","0.0.4":"2013-11-02T03:52:41.774Z","0.1.0-0":"2014-12-23T17:43:35.302Z","0.2.0":"2015-08-05T19:02:24.983Z","1.0.0":"2015-08-06T15:04:10.747Z","1.1.0":"2015-11-12T14:12:37.770Z","1.2.0":"2015-12-03T14:20:00.523Z","1.2.1":"2016-01-14T12:00:46.747Z","1.3.0":"2016-01-18T09:49:37.893Z","1.3.1":"2016-04-26T06:22:35.373Z","1.3.2":"2016-05-25T11:10:18.374Z","1.3.3":"2016-06-15T08:29:32.508Z","1.3.4":"2016-10-11T03:57:30.382Z","1.3.5":"2016-10-11T15:23:15.625Z","1.3.6":"2017-03-20T19:25:35.225Z","1.3.7":"2017-03-23T17:26:01.019Z","1.3.8":"2017-06-12T06:26:46.763Z","1.3.9":"2017-06-12T06:27:03.379Z","1.3.10":"2017-06-12T06:28:27.769Z","1.3.11":"2017-06-12T06:30:35.913Z","3.0.0":"2017-08-21T09:02:02.281Z","3.0.1":"2017-08-21T09:03:58.909Z","3.0.2":"2017-09-08T13:06:56.324Z","4.0.0":"2018-10-28T16:47:17.041Z","5.0.0":"2018-10-28T16:50:57.121Z","5.0.1":"2019-01-03T19:42:25.645Z","5.0.2":"2020-08-09T14:54:51.322Z","5.0.3":"2021-06-02T12:41:57.437Z","5.0.4":"2021-06-23T13:33:08.270Z","5.0.5":"2021-06-23T13:35:04.950Z","5.0.6":"2021-06-25T02:45:51.711Z","6.0.0":"2021-06-29T09:08:12.782Z","5.0.7":"2021-06-29T10:12:20.679Z","5.0.8":"2022-06-06T20:17:30.689Z","6.0.1":"2022-06-27T09:24:46.447Z","6.0.2":"2022-06-27T09:28:29.741Z","7.0.0":"2022-06-27T09:30:47.811Z","7.0.1":"2022-06-27T09:33:49.639Z","7.0.2":"2022-06-27T09:42:27.932Z","6.0.3":"2022-07-25T09:50:00.300Z","6.0.4":"2022-07-25T17:31:07.887Z","6.0.5":"2022-07-25T17:33:07.643Z","8.0.0":"2022-08-03T08:37:43.833Z","8.1.0":"2022-08-30T13:08:47.435Z","9.0.0":"2024-01-02T09:38:35.191Z","9.0.1":"2024-01-02T09:40:50.650Z","9.2.0":"2024-04-03T05:25:19.419Z","10.0.0":"2025-04-29T08:54:12.486Z","10.0.2":"2025-08-06T13:42:50.119Z","10.0.3":"2025-08-17T13:56:16.686Z","11.0.0":"2026-03-04T15:21:29.777Z","11.1.0":"2026-03-04T15:25:29.212Z"},"readmeFilename":"README.md","homepage":"https://github.com/IonicaBizau/parse-url"}