{"maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"keywords":["parse","git","url"],"dist-tags":{"latest":"16.1.0"},"author":{"name":"Ionică Bizău","email":"bizauionica@gmail.com","url":"https://ionicabizau.net"},"description":"A high level git url parser for common git providers.","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[![git-url-parse](http://i.imgur.com/HlfMsVf.png)](#)\n\n\n\n\n\n\n\n\n\n\n\n# git-url-parse\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) [![Travis](https://img.shields.io/travis/IonicaBizau/git-url-parse.svg)](https://travis-ci.org/IonicaBizau/git-url-parse/) [![Version](https://img.shields.io/npm/v/git-url-parse.svg)](https://www.npmjs.com/package/git-url-parse) [![Downloads](https://img.shields.io/npm/dt/git-url-parse.svg)](https://www.npmjs.com/package/git-url-parse) [![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> A high level git url parser for common git providers.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n## :cloud: Installation\n\n```sh\n# Using npm\nnpm install --save git-url-parse\n\n# Using yarn\nyarn add git-url-parse\n```\n\n\n\n\n\n\n\n\n\n\n\n\n\n## :clipboard: Example\n\n\n\n```js\n// Dependencies\nconst GitUrlParse = require(\"git-url-parse\");\n\nconsole.log(GitUrlParse(\"git@github.com:IonicaBizau/node-git-url-parse.git\"));\n// => {\n//     protocols: []\n//   , port: null\n//   , resource: \"github.com\"\n//   , user: \"git\"\n//   , pathname: \"/IonicaBizau/node-git-url-parse.git\"\n//   , hash: \"\"\n//   , search: \"\"\n//   , href: \"git@github.com:IonicaBizau/node-git-url-parse.git\"\n//   , token: \"\"\n//   , protocol: \"ssh\"\n//   , toString: [Function]\n//   , source: \"github.com\"\n//   , name: \"node-git-url-parse\"\n//   , owner: \"IonicaBizau\"\n// }\n\nconsole.log(GitUrlParse(\"https://github.com/IonicaBizau/node-git-url-parse.git\"));\n// => {\n//     protocols: [\"https\"]\n//   , port: null\n//   , resource: \"github.com\"\n//   , user: \"\"\n//   , pathname: \"/IonicaBizau/node-git-url-parse.git\"\n//   , hash: \"\"\n//   , search: \"\"\n//   , href: \"https://github.com/IonicaBizau/node-git-url-parse.git\"\n//   , token: \"\"\n//   , protocol: \"https\"\n//   , toString: [Function]\n//   , source: \"github.com\"\n//   , name: \"node-git-url-parse\"\n//   , owner: \"IonicaBizau\"\n// }\n\nconsole.log(GitUrlParse(\"https://github.com/IonicaBizau/git-url-parse/blob/master/test/index.js\"));\n// { protocols: [ 'https' ],\n//   protocol: 'https',\n//   port: null,\n//   resource: 'github.com',\n//   user: '',\n//   pathname: '/IonicaBizau/git-url-parse/blob/master/test/index.js',\n//   hash: '',\n//   search: '',\n//   href: 'https://github.com/IonicaBizau/git-url-parse/blob/master/test/index.js',\n//   token: '',\n//   toString: [Function],\n//   source: 'github.com',\n//   name: 'git-url-parse',\n//   owner: 'IonicaBizau',\n//   organization: '',\n//   ref: 'master',\n//   filepathtype: 'blob',\n//   filepath: 'test/index.js',\n//   full_name: 'IonicaBizau/git-url-parse' }\n\nconsole.log(GitUrlParse(\"https://github.com/IonicaBizau/node-git-url-parse.git\").toString(\"ssh\"));\n// => \"git@github.com:IonicaBizau/node-git-url-parse.git\"\n\nconsole.log(GitUrlParse(\"git@github.com:IonicaBizau/node-git-url-parse.git\").toString(\"https\"));\n// => \"https://github.com/IonicaBizau/node-git-url-parse.git\"\n```\n\n\n\n\n\n\n\n\n\n\n\n## :memo: Documentation\n\n\n### `gitUrlParse(url, refs)`\nParses a Git url.\n\n#### Params\n\n- **String** `url`: The Git url to parse.\n- **Array** `refs`: An array of strings representing the refs. This is  helpful in the context of the URLs that contain branches with slashes.\n If user wants to identify the branch, he should pass all branch names\n of the project as part of refs parameter\n\n#### Return\n- **GitUrl** The `GitUrl` object containing:\n - `protocols` (Array): An array with the url protocols (usually it has one element).\n - `port` (String): The domain port.\n - `resource` (String): The url domain (including subdomains).\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 - `protocol` (String): The git url protocol.\n - `token` (String): The oauth token (could appear in the https urls).\n - `source` (String): The Git provider (e.g. `\"github.com\"`).\n - `owner` (String): The repository owner.\n - `name` (String): The repository name.\n - `ref` (String): The repository ref (e.g., \"master\" or \"dev\").\n - `filepath` (String): A filepath relative to the repository root.\n - `filepathtype` (String): The type of filepath in the url (\"blob\" or \"tree\").\n - `full_name` (String): The owner and name values in the `owner/name` format.\n - `toString` (Function): A function to stringify the parsed url into another url type.\n - `organization` (String): The organization the owner belongs to. This is CloudForge specific.\n - `git_suffix` (Boolean): Whether to add the `.git` suffix or not.\n\n### `stringify(obj, type)`\nStringifies a `GitUrl` object.\n\n#### Params\n\n- **GitUrl** `obj`: The parsed Git url object.\n- **String** `type`: The type of the stringified url (default `obj.protocol`).\n\n#### Return\n- **String** The stringified url.\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 - `@0x-lerna-fork/github-client`\n - `@1coin178/github-compare`\n - `@_nomtek/react-native-shimmer-animation`\n - `@adityasinghal26/backstage-plugin-daytona`\n - `@ahmed_shaban123/react-native-currencyinput`\n - `@akemona-org/strapi-generate-new`\n - `@amiruldev/wajs`\n - `@anakz/backstage-plugin-library-check-backend`\n - `@antv/gatsby-theme-antv`\n - `@appirio/appirio`\n - `@appworks/project-utils`\n - `@arcanis/sherlock`\n - `@ashcorrguardian/cdk`\n - `@atomist/automation-client`\n - `@atomist/automation-client-ext-raven`\n - `@atomist/cli`\n - `@atomist/sdm-pack-analysis`\n - `@atomist/skill`\n - `@atomist/uhura`\n - `@axetroy/gpm`\n - `@backstage-community/plugin-github-actions`\n - `@backstage/backend-common`\n - `@backstage/backend-defaults`\n - `@backstage/cli`\n - `@backstage/integration`\n - `@backstage/plugin-catalog-backend`\n - `@backstage/plugin-catalog-backend-module-github`\n - `@backstage/plugin-catalog-import`\n - `@backstage/plugin-github-actions`\n - `@backstage/plugin-scaffolder`\n - `@backstage/plugin-scaffolder-backend-module-confluence-to-markdown`\n - `@backstage/plugin-techdocs`\n - `@backstage/plugin-techdocs-module-addons-contrib`\n - `@backstage/plugin-techdocs-node`\n - `@belt/repo`\n - `@blackglory/git-list`\n - `@brisk-docs/gatsby-generator`\n - `@brisk-docs/website`\n - `@buschtoens/documentation`\n - `@cilyn/bitbucket`\n - `@ckatzorke/renovate`\n - `@cliz/gpm`\n - `@codemod.com/workflow`\n - `@corelmax/react-native-my2c2p-sdk`\n - `@cs6/react-native-test-native-view-library`\n - `@csmith/release-it`\n - `@ctdesarrollo/pack-up`\n - `@dandean/storybook-deployer`\n - `@daytona-io/backstage-plugin-daytona`\n - `@deskbtm/workspace-tools`\n - `@dfatwork-pkgs/backstage-cli`\n - `@dougkulak/semantic-release-gh-pages-plugin`\n - `@dtwo/telemetry`\n - `@eat-fish/changelog`\n - `@emedvedev/renovate`\n - `@enkeledi/react-native-week-month-date-picker`\n - `@env0/backstage-plugin-env0`\n - `@era-ci/utils`\n - `@erquhart/lerna-github-client`\n - `@esops/publish-github-pages`\n - `@eteg/nextra-theme-docs`\n - `@facadecompany/ignition-ui`\n - `@feizheng/next-git-url`\n - `@felipesimmi/react-native-datalogic-module`\n - `@flxbl-io/sfp`\n - `@focusworkstemp/project-utils`\n - `@form8ion/lift`\n - `@gambitnash/cli-plugin-scaffold`\n - `@gasket/plugin-metrics`\n - `@geut/chan-parser`\n - `@geut/git-compare-template`\n - `@geut/git-url-parse`\n - `@git-stack/hemera-plugin`\n - `@git-stack/server-core`\n - `@guardian/cdk`\n - `@hawkingnetwork/react-native-tab-view`\n - `@hbglobal/react-native-actions-shortcuts`\n - `@hemith/react-native-tnk`\n - `@holipoly/cli`\n - `@hugomrdias/documentation`\n - `@hygiene/plugin-github-url`\n - `@iceworks/project-utils`\n - `@infinitecsolutions/storybook-deployer`\n - `@janus-idp/backstage-plugin-topology`\n - `@jaredpalmer/workspace-tools`\n - `@jswork/next-git-url`\n - `@jswork/topics2keywords`\n - `@kadira/storybook-deployer`\n - `@kevinbds/techdocs-common`\n - `@kgit/readbility`\n - `@koumoul/gh-pages-multi`\n - `@labiebhn_/react-native-multiplier`\n - `@lehuyaa/my-assets`\n - `@lerna-lite/version`\n - `@lerna-test-v1/markdown`\n - `@lerna/create`\n - `@lerna/github-client`\n - `@lerna/legacy-package-management`\n - `@log4brains/core`\n - `@madm4ttus3r/l4bcore`\n - `@merna/github-client`\n - `@micro-app/shared-utils`\n - `@microservices/cli`\n - `@mmomtchev/documentation`\n - `@mongchhi/plugin-blocks`\n - `@monokle/synchronizer`\n - `@narfeta/catalog-backend`\n - `@navabi/react-native-ssl-pinning`\n - `@nuxt/content`\n - `@nuxt/telemetry`\n - `@nuxt/ui-pro`\n - `@nuxthq/studio`\n - `@oumi/block-sdk`\n - `@oumi/cli-ui`\n - `@pageshare/cli`\n - `@parallelnft/web3modal`\n - `@pipelinedoc/cli`\n - `@plone/scripts`\n - `@pmworks/project-utils`\n - `@polearn/core`\n - `@positionex/position-sdk`\n - `@praella/localisationist`\n - `@pubbo/github-client`\n - `@pubgcorp/semantic-release-gitlabmonorepo`\n - `@pvdlg/semantic-release`\n - `@pvm/core`\n - `@qiwi/semantic-release-gh-pages-plugin`\n - `@qoopido/lerna.version`\n - `@radjs/block-sdk`\n - `@rdfrontier/plugin-mobile`\n - `@react-18-pdf/root`\n - `@rianfowler/backstage-backend-common`\n - `@rnx-kit/build`\n - `@roadiehq/backstage-plugin-github-insights`\n - `@roadiehq/backstage-plugin-github-pull-requests`\n - `@roadiehq/backstage-plugin-security-insights`\n - `@rocali/apollo`\n - `@s-ui/mono`\n - `@s-ui/ssr`\n - `@s-ui/studio`\n - `@safaricom/strapi`\n - `@safely-project/safely-ts`\n - `@salla.sa/cli`\n - `@sanity/pkg-utils`\n - `@sanv/apify-shared`\n - `@scafflater/scafflater`\n - `@secustor/backstage-plugin-renovate-common`\n - `@servable/manifest`\n - `@servable/tools`\n - `@shopgate/pwa-releaser`\n - `@sobird/actions`\n - `@speakeasy-sdks/nextra-theme-docs`\n - `@spotify/backstage-plugin-soundcheck-backend-module-gitlab`\n - `@spryker-lerna/github-client`\n - `@ssaitho/nextra-theme-docs`\n - `@stackbit/cms-git`\n - `@stackbit/dev-common`\n - `@status-im/react-native-transparent-video`\n - `@stepsec/release`\n - `@storybook/storybook-deployer`\n - `@strapi/pack-up`\n - `@strapi/sdk-plugin`\n - `@strapi/strapi`\n - `@syedt/hellosdk`\n - `@tahul/ui-fix`\n - `@taingo97/react-native-sunmi-printer`\n - `@taingo97/react-native-telpo-printer`\n - `@tasenor/common-node`\n - `@terasky/backstage-plugin-crossplane-claim-updater`\n - `@theowenyoung/gatsby-source-git`\n - `@tmplr/node`\n - `@toanz/strapi-generate-new`\n - `@umijs/block-sdk`\n - `@unibtc/release-it`\n - `@useoptic/optic`\n - `@vamsikc/plugin-catalog`\n - `@veecode-platform/plugin-github-actions`\n - `@visulima/nextra-theme-docs`\n - `@voodeng/uppacks`\n - `@vrabbi/plugin-scaffolder`\n - `@vrabbi/plugin-scaffolder-backend`\n - `@wetrial/block-sdk`\n - `@whhjdi/nextra-theme-docs`\n - `@wolfy1339/gatsby-source-git`\n - `@x-team/strapi-generate-new`\n - `@xdn/cli`\n - `@xyz/create-package`\n - `@yarnpkg/plugin-git`\n - `@zeplin/cli`\n - `anakketiga`\n - `anaklanangtea`\n - `anakwadontea`\n - `apify-shared`\n - `apollo`\n - `auto-changelog-vsts`\n - `autorelease-setup`\n - `belt-repo`\n - `biometric-st`\n - `bitbucket-pullr`\n - `changelog.md`\n - `clipped`\n - `codesandbox-theme-docs`\n - `common-boilerplate`\n - `copy-github-directory`\n - `cover-builder`\n - `create-apex-js-app`\n - `create-release-it`\n - `cz-conventional-changelog-befe`\n - `datoit-generate-new`\n - `debone`\n - `development-efficiency`\n - `docula-ui`\n - `docula-ui-express`\n - `documentation`\n - `documentation-custom-markdown`\n - `domaincomponent`\n - `dx-scanner`\n - `ewizard-cli`\n - `fluent.adflow.reactnativesdk-alpha`\n - `flutter-boot`\n - `fmsl`\n - `fotingo`\n - `framework_test_library_sixdee`\n - `fster`\n - `ftl-renovate`\n - `gatsby-source-git`\n - `gatsby-source-git-remotes`\n - `gatsby-source-npmjs`\n - `gatsby-theme-zh`\n - `gaurav-react-native-loop`\n - `gcpayz-block-sdk`\n - `generate-github-directory`\n - `generator-openapi-repo`\n - `gerimismalamsenin`\n - `ghseek`\n - `git-issues`\n - `git-origin-check`\n - `git-service-node`\n - `git-source`\n - `git-url-promise`\n - `git-yoink`\n - `gitbook-start-iaas-bbdd-alex-moi`\n - `gitbook-start-iaas-ull-es-merquililycony`\n - `gitbook-start-plugin-iaas-ull-es-noejaco2017`\n - `gitc`\n - `github-action-readme`\n - `github-publish-npm`\n - `gitlab-ci-variables-cli`\n - `gtni`\n - `harry-reporter`\n - `hzero-block-sdk`\n - `jrennsoh88-react-native-scroll-indicator`\n - `jsnix`\n - `kef-core`\n - `khaled-salem-custom-components`\n - `konfig-release-it`\n - `konitor`\n - `kuqoi-git`\n - `l-other-data`\n - `laborious`\n - `lambda-service`\n - `lcov-server`\n - `lerna`\n - `library-nuxt-ui`\n - `license-analysis`\n - `lime-cli`\n - `manage-dependency`\n - `mangudinlagirajin`\n - `mdnext-loader`\n - `mf-cta-testing`\n - `miguelcostero-ng2-toasty`\n - `native-apple-login`\n - `native-kakao-login`\n - `nextra-theme-docs-mdxcomponents`\n - `ng-apollo`\n - `npm_one_1_2_3`\n - `npm_qwerty`\n - `octokit-downloader`\n - `octopulse`\n - `omg`\n - `open-pull-request`\n - `package-health-checker`\n - `package-json-from-git`\n - `patchanon-cli`\n - `patepangdeui`\n - `pbc`\n - `pileuleuyantea`\n - `pr-changelog-gen`\n - `prep-barv11`\n - `project-wajs-dv`\n - `publish-version`\n - `pupils-generate-new`\n - `pyreswap-sdk`\n - `qts-fission`\n - `quick-release`\n - `quinntainer`\n - `rdmobile`\n - `reablocks-docs-theme`\n - `react-native-android-native-view`\n - `react-native-android-video-player-view`\n - `react-native-animate-text`\n - `react-native-arunjeyam1987`\n - `react-native-arunmeena1987`\n - `react-native-awesome-module-two`\n - `react-native-azure-communication-services`\n - `react-native-basic-app`\n - `react-native-basic-screen`\n - `react-native-biometric-authenticate`\n - `react-native-bleccs-components`\n - `react-native-bubble-chart`\n - `react-native-build-vesion-getter`\n - `react-native-check-component`\n - `react-native-components-design`\n - `react-native-contact-list`\n - `react-native-cplus`\n - `react-native-create-video-thumbnail`\n - `react-native-custom-poccomponent`\n - `react-native-datacapture-core`\n - `react-native-dhp-printer`\n - `react-native-fedlight-dsm`\n - `react-native-ghn-ekyc`\n - `react-native-ideo-rn-notifications`\n - `react-native-innity-remaster`\n - `react-native-input-library`\n - `react-native-is7`\n - `react-native-kakao-maps`\n - `react-native-klarify-ios`\n - `react-native-klc`\n - `react-native-library-testing-422522`\n - `react-native-login-demo-test`\n - `react-native-manh-test`\n - `react-native-module-for-testing`\n - `react-native-multiplier-component`\n - `react-native-multiplier-demo`\n - `react-native-multiplier2`\n - `react-native-multiselector`\n - `react-native-my-first-try-arun-ramya`\n - `react-native-nice-learning`\n - `react-native-paynow-generator`\n - `react-native-payu-payment-testing`\n - `react-native-progress-arrow`\n - `react-native-rabbitmq-all`\n - `react-native-reanimated-sortable-list`\n - `react-native-rom-components`\n - `react-native-s-airlines`\n - `react-native-sandycomponent`\n - `react-native-savczuk-feature-library`\n - `react-native-shared-gesture`\n - `react-native-test-comlibrary`\n - `react-native-ticker-tape`\n - `react-native-uvc-camera-android`\n - `react-native-withframework-check`\n - `react-native-ytximkit`\n - `redhatinsights-plugin-scaffolder-backend`\n - `refinejs-repo`\n - `release-it`\n - `release-it-http`\n - `remax-stats`\n - `renovate`\n - `renovate-csm`\n - `repom`\n - `repomix`\n - `rn-adyen-dropin`\n - `rn-check-btn`\n - `rn_unique_device_id`\n - `scaffolder-core`\n - `sedanbosok`\n - `semantic-release-github-milestones`\n - `semantic-release-gitmoji`\n - `semantic-release-squash3`\n - `sherry-utils`\n - `simple-github-release`\n - `snipx`\n - `spk`\n - `strapi-generate-new`\n - `stylelint-formatter-utils`\n - `sync-repos`\n - `tanyao`\n - `tegit`\n - `tehmusimhujan`\n - `template-typescript-node-package`\n - `test-library-123`\n - `testarmada-midway`\n - `tldw`\n - `todo2issue`\n - `tooling-personal`\n - `toxics-rpc`\n - `umi-build-dev`\n - `vision-camera-plugin-face-detector`\n - `vuepress-plugin-remote-url`\n - `wiby`\n - `winx-form-winx`\n - `workspace-tools`\n - `wsj.gatsby-source-git`\n - `zephyr-agent`\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+ssh://git@github.com/IonicaBizau/git-url-parse.git"},"users":{"usex":true,"mrgalaxy":true,"richiebres":true,"flumpus-dev":true,"groundwater":true},"bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"license":"MIT","versions":{"2.0.0":{"name":"git-url-parse","version":"2.0.0","keywords":["parse","git","url"],"author":{"name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@2.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/node-git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"93fffb867efb3f50ce190945af6d2679a1985d25","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-2.0.0.tgz","integrity":"sha512-YAYItEt2y61or8noFseti6DV9rXqywK9A+rMrDBd6VDfFHF3citAeG0DjkuXUWsnbNZ6Svw0zM0LY+q8APX6qg==","signatures":[{"sig":"MEUCIAYuZtXtPp29EEZuAA2DuwVm5bWXcOSDwOpY57tW1HOnAiEAruVH42Tefw51EZJyt5XnFR428FA5P4Mw6LhFjNwClfE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"93fffb867efb3f50ce190945af6d2679a1985d25","gitHead":"0e6582f7c54f3332135eb382872528af7d959698","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git@github.com:IonicaBizau/node-git-url-parse.git","type":"git"},"_npmVersion":"2.7.6","description":"Parses and stringifies git urls.","directories":{},"_nodeVersion":"0.12.1","devDependencies":{"mocha":"*"}},"3.0.0":{"name":"git-url-parse","version":"3.0.0","keywords":["parse","git","url"],"author":{"name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"KINDLY","_id":"git-url-parse@3.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/node-git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"7e35210d0ec4ef5d4afd18d8ce2b8c80fe839776","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-3.0.0.tgz","integrity":"sha512-fRMd+ztp3EKUPk9KMyJMCWTb/214zCKKK8Ud8QsKQXB8+gjRcSUfGFP7w02W3H8D1470WBpVnlLfCp5oBq6FKA==","signatures":[{"sig":"MEUCIQClr518RZEVjRWTX7jKtoc2TuTcmkagtll9zJDVV6FQYQIgUnVVr2I4qCykQxCkPw+63jLMGIzs5hnkXHkjTzni9R8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"7e35210d0ec4ef5d4afd18d8ce2b8c80fe839776","gitHead":"75f7766d1fe38803cf89d0785d15a0ddef1b6c99","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git@github.com:IonicaBizau/node-git-url-parse.git","type":"git"},"_npmVersion":"2.7.6","description":"Parses and stringifies git urls.","directories":{},"_nodeVersion":"0.12.1","devDependencies":{"mocha":"*"}},"4.0.0":{"name":"git-url-parse","version":"4.0.0","keywords":["parse","git","url"],"author":{"name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"KINDLY","_id":"git-url-parse@4.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/node-git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"530d1fa15322031767084a19a9402991c3b91a2d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-4.0.0.tgz","integrity":"sha512-vzcx7/I/QNcBmbqmGOwnTFWWYEGnjqdNn+um19mTMZ9l+QuEO9URuc4m6RvOD8LxzMD4rRbD2VXc35Q9dtdahw==","signatures":[{"sig":"MEQCIBBqK3N1GioPCXSvfO4FdL9sur5jLE4RO4qyQVxCCZJbAiAYuSfhQZ2jPSVhvHY+nlTjPgmx+cENmVqOW0eAEYK4uw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"530d1fa15322031767084a19a9402991c3b91a2d","gitHead":"60be3726c84a5f6a97961a884b89a9e890341b96","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git@github.com:IonicaBizau/node-git-url-parse.git","type":"git"},"_npmVersion":"2.7.6","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"0.12.1","dependencies":{"git-up":"^1.0.0"},"devDependencies":{"mocha":"^2.2.5"}},"4.1.0":{"name":"git-url-parse","version":"4.1.0","keywords":["parse","git","url"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"KINDLY","_id":"git-url-parse@4.1.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/node-git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"ff9a530322f84ddc33af9f9f11f158cc49566e6c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-4.1.0.tgz","integrity":"sha512-dOZrf2CgE7wuT49jJV7cs3MwLXJ1dU0jA75i6MQ8oJqp/BheQDPIvfnpGZLho8vKOoqLOksP0+5S/BHzM2WyBQ==","signatures":[{"sig":"MEQCIClGPiJCwxLj7UooQU6i9fGZJAgqxI1s4Vs89GigpEXbAiAi1EMqsRDQqVR5vIZGTF/qi3sEk4Q18LAgYTOeaEeJGA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"ff9a530322f84ddc33af9f9f11f158cc49566e6c","gitHead":"5fdc79426cb4ec514a5d9c5cb11d0d6f8fba7823","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/node-git-url-parse.git","type":"git"},"_npmVersion":"2.14.2","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"git-up":"^1.0.0"},"devDependencies":{"mocha":"^2.2.5"}},"4.2.0":{"name":"git-url-parse","version":"4.2.0","keywords":["parse","git","url"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@4.2.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/node-git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"c2bff03a9f4198684bc46b3b3efc9b1ba9bb9086","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-4.2.0.tgz","integrity":"sha512-6qYkjnBZ0B8Y90UTogesGe/Bi1uzHA9u3h6hVGsYF4qq0V0TqfRDR1qDNLQD/BzUYA/FVhK71OZNrIxaqfl69A==","signatures":[{"sig":"MEQCICHzKR/NQUVt4go3s5X6hpk8zJyMuqc6mQ7fh05HjtryAiBg9WfLLy5FG+bfDPTl6XaWfr5t4Mg5zNQjAbrrFVM27g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"c2bff03a9f4198684bc46b3b3efc9b1ba9bb9086","gitHead":"d2029053e0746779de0646930b488cf4822c58ff","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/node-git-url-parse.git","type":"git"},"_npmVersion":"2.14.2","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"git-up":"^1.0.0"},"devDependencies":{"mocha":"^2.2.5"}},"4.2.1":{"name":"git-url-parse","version":"4.2.1","keywords":["parse","git","url"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@4.2.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/node-git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"0409b419188e75cfba26357528a7d43bec22b517","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-4.2.1.tgz","integrity":"sha512-NVGrijTzKLAKElI2OfK0u3E8Wk62Hh6bgBOFCBFWcC8Dr6GOcou0PktbztEToLMpdE9u59bMEsZliyIVgkFz8w==","signatures":[{"sig":"MEQCIEchMlpjrqxvu/kb/pqeJMNosvVPUmzzuPPVFKFllHtbAiA91iEmiMqrUsuXdHBwehQmBM+0S7NYSs50wnUnqiazSQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"0409b419188e75cfba26357528a7d43bec22b517","gitHead":"5f4b8be62159187542b912875ab21c6cb6a57eb7","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/node-git-url-parse.git","type":"git"},"_npmVersion":"2.14.2","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"git-up":"^1.0.0"},"devDependencies":{"mocha":"^2.2.5"}},"5.0.0":{"name":"git-url-parse","version":"5.0.0","keywords":["parse","git","url"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@5.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"6200e692eafb0c203367f6379e215d4ba73e0f62","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-5.0.0.tgz","integrity":"sha512-F1m+leQ5ZB7zQhAhO2QTdVp+cPYQEGY2Nf5U9WGq0KhNME2ckUqDKhOcaK1hp0EcZcyYXk73mwUyk55fWbcSpg==","signatures":[{"sig":"MEYCIQCD0ZU4KCma+oZFZ8GeddUqvIYEq23AI4yvInfgXl41jQIhAJIYmbJ0yEFsK7nuSgykyFXQ6lSryUEohCNzJsA/n50g","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"6200e692eafb0c203367f6379e215d4ba73e0f62","gitHead":"d59992e15ab17f1dd32d4efc82ec5130ad4a1a67","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"2.14.2","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"git-up":"^1.0.0"},"devDependencies":{"tester":"^1.3.1"}},"5.0.1":{"name":"git-url-parse","version":"5.0.1","keywords":["parse","git","url"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@5.0.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"fe3d79c6746ae05048cfa508c81e79dddbba3843","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-5.0.1.tgz","integrity":"sha512-4uSiOgrryNEMBX+gTWogenYRUh2j1D+95STTSEF2RCTgLkfJikl8c7BGr0Bn274hwuxTsbS2/FQ5pVS9FoXegQ==","signatures":[{"sig":"MEUCIAjrGI8EB/Q0mmxQkGRCNr/Qj0jp8MpmAo2a1y+lAwOoAiEAoNOUwKtJvEkeD2Ki6IP5K2HFlDYjOi5qxcd6MfJCFbk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"fe3d79c6746ae05048cfa508c81e79dddbba3843","gitHead":"8b1b8c2d378636c46d36d7b3350d709b70a06be3","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"2.14.2","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"git-up":"^1.0.0"},"devDependencies":{"tester":"^1.3.1"}},"5.0.1-beta":{"name":"git-url-parse","version":"5.0.1-beta","keywords":["parse","git","url"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@5.0.1-beta","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"main":"lib/index.js","h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"fbc852f45a6379a4d106ac87db1a60c0c9686796","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-5.0.1-beta.tgz","integrity":"sha512-kBlNeFrCNDLuptlsiR+hmVn2+YJdupSmkbwN0E+ezYNwrKTC25SUUPEQgqHusaGC3LmDw1ljkAoQ+Eb8VyhuYA==","signatures":[{"sig":"MEYCIQDZlsabvVswgd1+m7fLk4otPNV1HcLAgRfQfU4aBpEFrwIhAL3ukO69JqjFtLuo2zeXVwy9XQLCDgto5ZSq30GWHRog","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","_shasum":"fbc852f45a6379a4d106ac87db1a60c0c9686796","gitHead":"1423876dc96131615cbc06a9ef8644522f536c4e","scripts":{"dist":"dist-it lib/index.js index.js","test":"node test","prepublish":"npm run dist"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"3.3.12","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"5.3.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"tester":"^1.3.1","dist-it":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-5.0.1-beta.tgz_1456044996272_0.010626890463754535","host":"packages-9-west.internal.npmjs.com"}},"6.0.0":{"name":"git-url-parse","version":"6.0.0","keywords":["parse","git","url"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@6.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"main":"lib/index.js","h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"3c033673341b3d4b00d4a80f254a740615d09373","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-6.0.0.tgz","integrity":"sha512-gX2fya2zA3fh4os1B4YdnKV56R/sdrsBsx7fGbX3hDlH+xwiAGjKo9Jz1PZ++biY+ivtBRIQ+siSqMy7TQk90A==","signatures":[{"sig":"MEYCIQD7FP3mCgZMmQXonHvI9obx26tsDMY8Ly8JQsbPy6zz9QIhANOUK2RRa+lZDtNUTbaa4Q2gVzZJddhcn0RjHa20rD47","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","_shasum":"3c033673341b3d4b00d4a80f254a740615d09373","gitHead":"d23d0faa8ef668493b7a7d4604f1bbbd400288c4","scripts":{"dist":"dist-it lib/index.js index.js","test":"node test","prepublish":"npm run dist"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"3.3.12","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"5.3.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"tester":"^1.3.1","dist-it":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-6.0.0.tgz_1456045691032_0.01675077830441296","host":"packages-9-west.internal.npmjs.com"}},"6.0.1":{"name":"git-url-parse","version":"6.0.1","keywords":["parse","git","url"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@6.0.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"main":"lib/index.js","h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"db2458dfca0b10752880e447c7ab9a1cdcd7fd93","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-6.0.1.tgz","integrity":"sha512-6W0EJVMjHpNjXtKE/XLJN2ZX1Ndqk40q7hj3gietboRiyV25AsrQmAy4Ggl5p7y6PYMEAk/7vo6oJJ4PTQZR6Q==","signatures":[{"sig":"MEUCIQCup0br3XrNj6uK4EZuEvTu4c0+OX1VYEApRXeuUw55SgIgfxl9yZM6vKqWuDP1hHubfTQI0Jb+5HQ/9kmROyk2uJY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","_shasum":"db2458dfca0b10752880e447c7ab9a1cdcd7fd93","gitHead":"d4ace7dc997706e6b059ea7d33603149477c30c3","scripts":{"dist":"dist-it lib/index.js index.js","test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"3.3.12","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"5.3.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"tester":"^1.3.1","dist-it":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-6.0.1.tgz_1456046102688_0.7119788164272904","host":"packages-6-west.internal.npmjs.com"}},"6.0.2":{"name":"git-url-parse","version":"6.0.2","keywords":["parse","git","url"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@6.0.2","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"main":"lib/index.js","h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"851a01bc359523de026b40d9692bfbd914adf2a3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-6.0.2.tgz","integrity":"sha512-frLFN0+/ZuTx3p6o5pr+8JxquuuVWhNK6hU/fMSxjDvPOAP8s7WuE0jFE6CH29UY0WhYzTrpY98tDLdsDIJiSw==","signatures":[{"sig":"MEUCIDbJtoabND/dBwjylZCeB6DTRjdZSbNejNyqPzyrSWl9AiEAlPe+MnFE+oFJzK8SZwId1FDPAIXBNL/6j+gqminwy3g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","resources/","menu/","cli.js","index.js"],"_shasum":"851a01bc359523de026b40d9692bfbd914adf2a3","gitHead":"0af9b33d6a5aee548fe5b1e9191b247379db082d","scripts":{"dist":"dist-it lib/index.js index.js","test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"2.14.2","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"tester":"^1.3.1","dist-it":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-6.0.2.tgz_1461646602853_0.4160672421567142","host":"packages-16-east.internal.npmjs.com"}},"6.0.3":{"name":"git-url-parse","version":"6.0.3","keywords":["parse","git","url"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@6.0.3","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"main":"lib/index.js","h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"315acf1009d5d9abd12cccca69a616a492fe8a5f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-6.0.3.tgz","integrity":"sha512-hwel/xbWMmOCTz7VmfG1KmZegSRDn2VgZrjui3edWscKrHx9nFd2Xg0+NLpkVpG1hNUwxrFwqpfjE+ESpou83A==","signatures":[{"sig":"MEQCICA7PeRJW4WDoDkus94cmqFJbRs4lFuFm8MR29SIpSNAAiBfxaybwoQbwTwh+jRIoK8aFsousSoy4jjWlX2bFDPUmw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","resources/","menu/","scripts/","cli.js","index.js"],"_shasum":"315acf1009d5d9abd12cccca69a616a492fe8a5f","gitHead":"ff6674e6f588f74ad5963410bee07905237f2707","scripts":{"dist":"dist-it lib/index.js index.js","test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"3.8.9","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"6.2.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"tester":"^1.3.1","dist-it":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-6.0.3.tgz_1464169749774_0.044148516142740846","host":"packages-12-west.internal.npmjs.com"}},"6.0.4":{"name":"git-url-parse","version":"6.0.4","keywords":["parse","git","url"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@6.0.4","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"219aec12e95d15fe543f8d0bda8984d6425b548a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-6.0.4.tgz","integrity":"sha512-NAR5AicdgZcXE2L8gc0LiwF8TXl1DXvOozQL4cDP6bdGOLUvUMxYLN4e8g4J4Hsio9rKgotQPxT42uTS4RMMFQ==","signatures":[{"sig":"MEYCIQCuJPAXBYevxW0OgV/wQH2pVDRZ+8QDYvLZ0GcZb5SN5wIhAIChs+UAJdt6Gfej9YhbtmTf+nT0bxE3FAXjtgtOc3VP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","resources/","menu/","scripts/","cli.js","index.js"],"_shasum":"219aec12e95d15fe543f8d0bda8984d6425b548a","gitHead":"bb4fc7c60eaa28eb713a82f4ff77f66640551a0a","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"3.8.6","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"6.1.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-6.0.4.tgz_1466410090547_0.7319281611125916","host":"packages-12-west.internal.npmjs.com"}},"6.0.5":{"name":"git-url-parse","version":"6.0.5","keywords":["parse","git","url"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@6.0.5","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"6b93aaa9811ee46f248bb85eeb68771ba360467b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-6.0.5.tgz","integrity":"sha512-c0wO1ikZauRiaVkSUZcpkYvaHy6EbbAVriYjkE7BvGViC0AwCKB/cdaijoXEOYUKjX+8pSze+LyZZFbG6urh0Q==","signatures":[{"sig":"MEUCIE7C5pT46oFxn0WTgyQdDixGdunBbIabuvCGjhWMZWpAAiEAslSkubYW+nfZVtrV3IbhvZgItW7JJW/S28NCT3Ccs2k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","resources/","menu/","scripts/","cli.js","index.js"],"_shasum":"6b93aaa9811ee46f248bb85eeb68771ba360467b","gitHead":"7c505ea61823118de5fbd9c0a1ee09d4c5382994","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"3.8.6","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"6.1.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-6.0.5.tgz_1466410205479_0.1249423308763653","host":"packages-12-west.internal.npmjs.com"}},"6.0.6":{"name":"git-url-parse","version":"6.0.6","keywords":["parse","git","url"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@6.0.6","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"5b6ecd16a4d40190f3e7ff3d0ab39a0c2a64edee","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-6.0.6.tgz","integrity":"sha512-eHgq4VKMo8iPRazwD0hFmzVc8mEZbJCvAA3/2awdYef/6IrVkCGxieOVRIwa3WRQ1tL8hp8k0kTdK29tE95MbA==","signatures":[{"sig":"MEUCIQDUp+dpvdd+zkE8bvWZbb1jSnhL0aDX8rkpEtpr6xqVXQIgaAEBdP//MrQHHaGfBe3CmwUGubD7blk20OQXYn5Bmn8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","resources/","menu/","scripts/","cli.js","index.js"],"_shasum":"5b6ecd16a4d40190f3e7ff3d0ab39a0c2a64edee","gitHead":"df8e4335d4af7d556440bb7360ec937e2ba3afa6","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"2.14.2","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-6.0.6.tgz_1476124761898_0.21612569922581315","host":"packages-12-west.internal.npmjs.com"}},"6.0.7":{"name":"git-url-parse","version":"6.0.7","keywords":["parse","git","url"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@6.0.7","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"e61dbb05ccd78921494814f5e5f0cea17275d3de","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-6.0.7.tgz","integrity":"sha512-jWTZK1vkomsEP009DPzBtfsW3X96yq6fx7W8X2nd9I2e9d986pSmod46/NhGRlzQXe+Ad5aFWk4z9cbqkUtusA==","signatures":[{"sig":"MEUCIQCjVXk7H2WPXpJhhgSgZjx8HCE+4e7fu6FfUXa6Qtp/8wIgOV7smXC2DOdYp+5nRFpTSXKycQZ6eU1akC29r12l8FI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","build/","dist/","src/","resources/","menu/","scripts/","cli.js","index.js"],"_shasum":"e61dbb05ccd78921494814f5e5f0cea17275d3de","gitHead":"92d17640c986621fc05ce6e4e1295091b44ebc70","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"2.14.2","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-6.0.7.tgz_1476192908173_0.08698619529604912","host":"packages-12-west.internal.npmjs.com"}},"6.1.0":{"name":"git-url-parse","version":"6.1.0","keywords":["parse","git","url"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@6.1.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"01a99f11ca4def4d88d9886da7f84d75d114495b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-6.1.0.tgz","integrity":"sha512-0TUvmh+gjpdRZfaWMAKRO+9d5gg4/fXnG2MhEXF1dFjxp/ikT/2Vcv2ogXccwqTLo2ol67ICzCmjaa6Met5jag==","signatures":[{"sig":"MEYCIQCDUwP4vbTdv+zP9rIkuYmAZ6DVLCUhKa3vdgYihH/ubAIhAKX3pQ7zP58CqTNr2c8LizSPleBe1VeiOFtE219Jav+Q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","build/","dist/","src/","resources/","menu/","scripts/","cli.js","index.js"],"_shasum":"01a99f11ca4def4d88d9886da7f84d75d114495b","gitHead":"28a09c2c14ed80bb0703576102f9cc1a659ade06","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"3.8.6","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"6.0.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-6.1.0.tgz_1478024025681_0.5144175246823579","host":"packages-12-west.internal.npmjs.com"}},"6.1.1":{"name":"git-url-parse","version":"6.1.1","keywords":["parse","git","url"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@6.1.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"d2d2e1838fb2c8a4248f7473d3e97a212ae81278","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-6.1.1.tgz","integrity":"sha512-NUBiO7hkR5dhBHXpl+551D45S2yFYdtZdrRHeqFKxZZpNRx9bx8UPjcjpw7pMlyyJ8su/ZjotvJHwfYHp7sGhw==","signatures":[{"sig":"MEUCIQCXJ8ZJ5skclkacxN6I6EoDkpegemV1QQmhAb/oGMs2DQIgTSX27k345KlbXhPz9s6lro3+qvyRUPMg+JZnZchMWBU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","build/","dist/","src/","resources/","menu/","scripts/","cli.js","index.js"],"_shasum":"d2d2e1838fb2c8a4248f7473d3e97a212ae81278","gitHead":"05183d23dbda5f9808ac87e1277eddc2131f3343","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"3.10.8","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"7.0.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-6.1.1.tgz_1482953775118_0.32702965242788196","host":"packages-12-west.internal.npmjs.com"}},"6.2.0":{"name":"git-url-parse","version":"6.2.0","keywords":["parse","git","url"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@6.2.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"fc0eeb0e96f8f5fdc71e1324116ecd2735cefc96","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-6.2.0.tgz","integrity":"sha512-jMjzcHZMBGRdUMg6bDilgK9JwAOrEw8f5d6+ENaI0eTuYLT8dAlj9wde3fsw6QkNSZxUQpqR95c7F0t/sSy3wQ==","signatures":[{"sig":"MEUCIQDqxYgnZkxOCl1FB8gUSwgnn4iIG9JouFHGvnYgr5m3uAIgVhNWu1kTpIv2Aa5DdyJufKriE8U1VIWNO/XQ8+XRx1k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","build/","dist/","src/","resources/","menu/","scripts/","cli.js","index.js"],"_shasum":"fc0eeb0e96f8f5fdc71e1324116ecd2735cefc96","gitHead":"bb0776a6005cfafbce2d5b1d7ae90e452ca2f64a","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"3.10.8","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"7.0.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-6.2.0.tgz_1483806925511_0.6405060070101172","host":"packages-12-west.internal.npmjs.com"}},"6.2.1":{"name":"git-url-parse","version":"6.2.1","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@6.2.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"094abaa1b97b7f39a3bf0d96d17ed50fb5ad5cc1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-6.2.1.tgz","integrity":"sha512-pkBPRqn+r3NiP5e7ykMZGzqn1IGLGaFKusGfcsUdmisdGG+IYYdGzgK2ttJ2Gr2S4b6SKIu2a3xNmZCiXg4Mow==","signatures":[{"sig":"MEUCIFP+zVltW/9zeg+Vj/RCHKWtQB3IN13ZcHraCY20z7IJAiEA/q8WpFMVrBWUnEc3dMDYKetuFeJsqQjhcfLVqnPhzgg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js"],"_shasum":"094abaa1b97b7f39a3bf0d96d17ed50fb5ad5cc1","gitHead":"2d394b84818df9c08d5b32cad14bbb240412d177","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"3.10.8","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"7.0.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-6.2.1.tgz_1490030631367_0.5609432419296354","host":"packages-18-east.internal.npmjs.com"}},"6.2.2":{"name":"git-url-parse","version":"6.2.2","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@6.2.2","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"be49024e14b8487553436b4572b8b439532fa871","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-6.2.2.tgz","integrity":"sha512-9JDB1XJiwv0a9G8hg7yNmE/QJnNxaK3xqqgeyFgKxiOh9Saw0HTcggHfyFWWqk3mIRNTTYUF95jHrf32H9+HbA==","signatures":[{"sig":"MEYCIQCkjBEkIaIT57UYtoNVFMwvpVboyEYSb+IZbz3S/l1dwQIhAIpy2D4ycauVk2tz/csfRDOaz8clLk7OxFXTSoGl/vTs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js"],"_shasum":"be49024e14b8487553436b4572b8b439532fa871","gitHead":"e6812bf5dbe5d75b09b2e5484320c24c9b115ca3","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"3.10.8","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"7.0.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-6.2.2.tgz_1490282631610_0.8889599512331188","host":"packages-18-east.internal.npmjs.com"}},"7.0.0":{"name":"git-url-parse","version":"7.0.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@7.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"2a7553f0c1e1405496f79da922e7a560895270f8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-7.0.0.tgz","integrity":"sha512-qI8kgm+s5696R4Rm1yjYgfopMMz3pd8VWFBI3z7m0UbM09JxHC/LS0ZijI+wSfL3BceJzH2ZUQYctF3DVcOzrA==","signatures":[{"sig":"MEUCIQC6CGhDJZ1XAtU0Kxhn2wr2Z1buDJsZkI4YyYH8aZWKHQIgPyuWdH5z2H5AAAM3BkqWI2K1OkyHMttWygyJIgSYD2U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js"],"_shasum":"2a7553f0c1e1405496f79da922e7a560895270f8","gitHead":"ca29c35c7dd8f5f78ee85f852c5f9d16b091c886","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"3.10.8","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"7.0.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-7.0.0.tgz_1497448806125_0.3758472728077322","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"git-url-parse","version":"7.0.1","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@7.0.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"1a3dffc6eaa9e3634deedc58e20d9e33106d3d41","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-7.0.1.tgz","integrity":"sha512-ayrBxshu19SP+FMpkBkuWp1G36GxM7bFe9qGOR6Sjz2Ksne9UrcJM6QMJAwTnK2UXDXbXgU+SUphUEXo7KBvCw==","signatures":[{"sig":"MEUCIQC2IzUOODEXljwpJhOPoBbyJnNaxN5VjR0E6n4EjmJ9lAIgcgBaiaQk4OEGRhZcbx3gaIXOv9+CjW1PBJVmccmJk04=","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":"1a3dffc6eaa9e3634deedc58e20d9e33106d3d41","gitHead":"16c73ae24fad3e24e4124eb2dfaadc833a1cf2f4","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"4.1.1","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"7.0.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-7.0.1.tgz_1504868440100_0.1313564267475158","host":"s3://npm-registry-packages"}},"7.0.2":{"name":"git-url-parse","version":"7.0.2","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@7.0.2","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"75fc7ae08e5daa90edc59043cdfa8da57c5a8715","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-7.0.2.tgz","integrity":"sha512-OQVonLdJfnGUz7Umyh9NmkZ4j9QmTB+r8ARqqSeZWlMgepn6oTrrHn7wSM5ptJQ1AcXj04xHFacpZVcXvKQAqg==","signatures":[{"sig":"MEQCIHsk0W3tI/lNcjFKqQbHhikJsBGgPNjOXNJgUbWlojoLAiBFHOB+1j7dslBSWionXlYkaxdotajn9A4etUEHz6CtXA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js","bloggify.js","bloggify.json","bloggify/"],"gitHead":"90dd54ae7dca76d7c249b8a300c26c2b1c5719df","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"5.3.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-7.0.2.tgz_1514146855278_0.9451180757023394","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"git-url-parse","version":"7.1.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@7.1.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"2d78bbd989b496be48db30870228e90a36c0d3ec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-7.1.0.tgz","integrity":"sha512-DXZRqmg3NHFVtWvyTMNOBxVbzGkpQ0Gj7ykK4hBofXYj/ePCPyIXLx7ai6ws0ZQ9c0sTezyLfDwArwplz5/nQA==","signatures":[{"sig":"MEUCIQD0i813wnxM8cgtL3QcbDAABAcpsVM3gHEDYHSZszgw9AIgFVMo/WCxbG6ayGmRd/HYF8sSl78/2d2cTu+aDGt6KbY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js","bloggify.js","bloggify.json","bloggify/"],"gitHead":"f0884e6cc91699d7983ef6acc3947a18b8c8dfba","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"5.3.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-7.1.0.tgz_1516938114413_0.34745761496014893","host":"s3://npm-registry-packages"}},"7.2.0":{"name":"git-url-parse","version":"7.2.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@7.2.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"3755e0ac037df997cfbfdb0396531087d7143aa4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-7.2.0.tgz","integrity":"sha512-dVF8edkWPnkCTdtY2OKL6hDmwghFjcXGEBnDjT5nfL0Gr2QR4yEDqbskV/KJfPhrEcn70eKpTlkHlMlaYuxjrg==","signatures":[{"sig":"MEUCIEhGkS3dY1hI8k4j6DvtjZO7RY9lS1NPwOQl+fMN8TTGAiEAn1WEIV5yqa36iRmOvAAXbUcuknf/9Eqb6vZvaE8XeRs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js","bloggify.js","bloggify.json","bloggify/"],"gitHead":"55b8792b34d64143aad5ea74e23bcb01efde11a9","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"5.3.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-7.2.0.tgz_1516940788851_0.8003082394134253","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"git-url-parse","version":"8.0.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@8.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"249430c84e6b11ebae630136f50d7993eb03e211","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-8.0.0.tgz","integrity":"sha512-7BqaSBLGji3qnJXDPqZZHHvzaIKZWVLFjtCyu2IItX9qDlEpB4LrbZqUVSBE63upZbmzj3EuHemdSvyx2ODvyA==","signatures":[{"sig":"MEYCIQDq1RYDhkKIrTXNj9PoWGhvJSCNmmDwnEJCgkdUri4Z/QIhAMCD/ikCKODkDJUovKxtJUTJxWut3VUaW+TBJPxhsE+P","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js","bloggify.js","bloggify.json","bloggify/"],"gitHead":"316e79a262dd1efc40a3163c4b729b08db15b3bd","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"5.3.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-8.0.0.tgz_1516941501918_0.004631805466488004","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"git-url-parse","version":"8.0.1","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@8.0.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"eb3fa427e294d214d9abbeb59637cc8646279c00","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-8.0.1.tgz","integrity":"sha512-YmV48kwc6+7PT0/uCMvoNTVfp80Q8qJSKLwBQaCHk2xwEoac5fYElGsWRhN9Dvex1BI7slhwQWia6VbbNUsvWA==","signatures":[{"sig":"MEQCIF0qezmvNlucgATSmPaOIUMM1cxFnQJIwuN3W5F4UWVFAiA3R05kZdXKhSZ+B/6ILEZ5hCFvfxJV1qohMYaGo8X9Ww==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js","bloggify.js","bloggify.json","bloggify/"],"gitHead":"558eb1156325cd27532dc2abaf11d7950aeda16c","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"5.3.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"git-up":"^2.0.0"},"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse-8.0.1.tgz_1517123739261_0.5763001020532101","host":"s3://npm-registry-packages"}},"8.1.0":{"name":"git-url-parse","version":"8.1.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@8.1.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"d1ee09213efce5d8dc7a21bb03f17cfe0c111122","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-8.1.0.tgz","fileCount":4,"integrity":"sha512-tSdNasqIc9cjK75DRsirb5sqVJ4V4cCmCuuOyyx2SuYeJx4o9AOx+/ZCSwRrYjZ8zavtuhGjCqXlCo9Db0YIVA==","signatures":[{"sig":"MEUCICmbVfRiVrqc5iH6WCG71BZYSeEucqgs5uJFvEUcYA8KAiEAkKcqEeGNFh1uTDg5at18LpXytJaYNEGbbpTk6IUcgoI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22034},"main":"lib/index.js","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js","bloggify.js","bloggify.json","bloggify/"],"gitHead":"481a6bc2d9a9fdece693952aa91d6ae2e98be8c5","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"5.3.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"git-up":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_8.1.0_1518054460990_0.2859681947218571","host":"s3://npm-registry-packages"}},"8.2.0":{"name":"git-url-parse","version":"8.2.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@8.2.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"74969b0105f805df58873ee5b96bc1a4dc0573b1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-8.2.0.tgz","fileCount":4,"integrity":"sha512-Jp5Jv0qZfoP5vFeDu7SGxVXYEFCZD+nvLeX3sbI/zRKg5NTRamQfAHoishk9d4kp4TrSopVtyUY57XclJdkRGA==","signatures":[{"sig":"MEUCICOLcW27hrJ7a3+w5WEKHsbC8LW2lcdjlZX0Xcc4WCkSAiEA4oMez67Gg+ZzFZMzaZVy1O41Ig/W1tDsP53oKnn4hgo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22632},"main":"lib/index.js","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js","bloggify.js","bloggify.json","bloggify/"],"gitHead":"2216375d452b472b7aa1f0830fb808a6b203e793","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"5.3.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"git-up":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_8.2.0_1521017605548_0.1902195434856253","host":"s3://npm-registry-packages"}},"8.3.0":{"name":"git-url-parse","version":"8.3.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@8.3.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"591658f2ad84e456832443ccce0531543d8934ce","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-8.3.0.tgz","fileCount":4,"integrity":"sha512-XCD69nz2sBFN9OrcUjlqKN2WDGYO31ASeeKEFIYyOmA6Gl4oiIA1TWgpCmSIery8wPCv8bm9IVKFIxanxoKDNA==","signatures":[{"sig":"MEYCIQCXweiB0gL61/0Xw/DS8lu89H3DoxhLg3POEc1qxk+2NQIhALB5TFdLzor1lhb0oz5GrVMAlR1/zNPEXdfnjildGnL/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22847},"main":"lib/index.js","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js","bloggify.js","bloggify.json","bloggify/"],"gitHead":"c6d56f6dc2faf52830e854edd526ee76a345412c","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"5.3.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"git-up":"^2.0.0","parse-domain":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_8.3.0_1522757395341_0.22879447403916764","host":"s3://npm-registry-packages"}},"8.3.1":{"name":"git-url-parse","version":"8.3.1","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@8.3.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"9d7d762993dc498aab16937c844e11afe3748817","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-8.3.1.tgz","fileCount":4,"integrity":"sha512-r/FxXIdfgdSO+V2zl4ZK1JGYkHT9nqVRSzom5WsYPLg3XzeBeKPl3R/6X9E9ZJRx/sE/dXwXtfl+Zp7YL8ktWQ==","signatures":[{"sig":"MEYCIQCbMBDheaTDk1MP/r6XD79aYDH5dQ3tBIKuR6ujbvz9tQIhAOYDiwR3FaYABrwqj/kAFepI9W5+gmOGk1A07rLwOEu7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22883},"main":"lib/index.js","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js","bloggify.js","bloggify.json","bloggify/"],"gitHead":"b09336e16a5250c43e4436eb76460f09aac33723","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"5.3.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"git-up":"^2.0.0","parse-domain":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_8.3.1_1522769898883_0.8961468143580904","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"git-url-parse","version":"9.0.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@9.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"a82a36acc3544c77ed0984d6488b37fbcfbec24d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-9.0.0.tgz","fileCount":4,"integrity":"sha512-zks1jS4ocMA/9WUx3C0nGIj/wBQjjIuktQ4KqKTyStMdEtnnFbZ4ZVKCvNeHwKh1COk/8sZaVTyvYj3paHI9Fg==","signatures":[{"sig":"MEUCIANmuzxMtqSnrn9NEp07I5U0xVh5LzkJFEuZ6M/V11loAiEAxePmJOcNh+nw3EMW51qroR6GrOw3r6tl+3pb70DqQSU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23495},"main":"lib/index.js","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js","bloggify.js","bloggify.json","bloggify/"],"gitHead":"ff3919e950fa6cb74de99487ea5578dc9e1dd633","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"5.3.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"git-up":"^2.0.0","parse-domain":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_9.0.0_1523559233270_0.5566643075860114","host":"s3://npm-registry-packages"}},"9.0.1":{"name":"git-url-parse","version":"9.0.1","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@9.0.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"2905b897a3db6e5cb9e10819f0fac2e740b4481b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-9.0.1.tgz","fileCount":4,"integrity":"sha512-HDXfw3X5PZaPBRFxELatfoYCV4EaYkAGmIApnnAaVPFCJBkpfWTB2/hhQcK0dVX+MsKnkL5uAn30Lfu2KUKLmg==","signatures":[{"sig":"MEQCIH1P6eqrF8uexy6nLwzK6QedwLmjG4Kso8HTvkguyZezAiBaCDT/i9PTCMoXFsBG6409hxexPoKQ/IlbJKxa6Ex6oA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24271,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDHMcCRA9TVsSAnZWagAAphgP/3v9lGfkVo4KJzEizYDG\ntNFxS4ZKVQ/3nO/SW1J0J3ew5YD9MvgbF8PDHexRwcqzCDTQxwtq6flSO9qM\nNWHJEH1XS9Mq1fS9/K0HfUODW0QGrL8UogYeZsGB4UQqAwn/dsa9zK8jFHky\nyvQAmvcto8VN0qtQua4dsrcHNBH7VcSOJVTwCMYVgpif2dIZ3v1HZslk8j4v\n665JHhbwcgPnLPFbDZ02LGfg0wOWPOigXTAYi1dKvDL6E2D3NF9j/qG/nEwg\n42lHW1C3oUMtN8CZO8EYmw3IBNKB0x0NH5T2hHwPl7ijHdsPBS9S1R8nvq/x\nwfAr4ja5tY2IcyJ+B1zStUdXlYcEmKw+oqqAobQPdGG2BYBHP0jPKcytkTML\nX5YglxSik6nGqKsmnXzZTIohPkhx8oxzgrL2Fpe7UfGqhGt4DmhESHemD/kC\nmWmCS7rySKWHN6av+AmTDAdueDan3DpcJazKQSwd3entqjYoYJI0xEr/IaPD\nygyfmJGB1B/Z3YgGfLca7/FQDdcNywju2xAGdUwmBb9deMyaJKUWWEzOjAq/\n4/Nd+cfp2+dwBvZlwtlBBdFf3/pp47OsqA0xwKjDWap2dMwr//2IDV+80qFn\nxVvTsTx/iaMrFUtuuQFQP7xPh2kmCJmiarjh/R8QrLWN3IktlGR2e+KN1RJH\n7eFy\r\n=2NOp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js","bloggify.js","bloggify.json","bloggify/"],"gitHead":"2f2593b22b94c0a0ebf533db3802771823394755","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"5.3.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"git-up":"^2.0.0","parse-domain":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_9.0.1_1527542555150_0.5163648438403181","host":"s3://npm-registry-packages"}},"10.0.1":{"name":"git-url-parse","version":"10.0.1","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@10.0.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"75f153b24ac7297447fc583cf9fac23a5ae687c1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-10.0.1.tgz","fileCount":4,"integrity":"sha512-Tq2u8UPXc/FawC/dO8bvh8jcck0Lkor5OhuZvmVSeyJGRucDBfw9y2zy/GNCx28lMYh1N12IzPwDexjUNFyAeg==","signatures":[{"sig":"MEQCIDmqrXrJCSO+1u+Tip+aLw6R2cscaZmVGGFTsCNStF7GAiBSvE7FnHCmpnp+MN05OfYQVkI9efZc/WxF+bOhC/U78g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24815,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTBErCRA9TVsSAnZWagAAg0QP/AvAis8dC/X4Hue5eUFZ\nnisXOnxZG77Ow7eGw31H2cflYqqcrFVLPDElHB/gsbC0eHLBhQwNdDGl/E43\nrbXsUpdnzHrFyG6kJe++nlmcvPzXNmDvHUxFUdM0XLmexqmIIqdpiKfHsTLc\nPuwaeNGuHaaYr/Kh30NeDnb3qtZfTZLFIIM6of6/kt28BCedNVnY0ZDXR7kc\n8dV03DMLZNbivDP4OofCFUmwaWVAaHSrnj0jZEC7jYxxSb7n9wt2KwjKNQNl\nv3crODWLa4Ck3zRsNdfDTdtwgwDz6S1kNEZ4V1QkOCZeW5D+KsVHIpNWGf0M\n0RNWg/vu9ZOhu1PIUuXfYjige3lL5YCvsgIVJQ5l1fgTzPvpGISjvUNDSlvG\nG9IM+HcrQl48sLvYWI16qcnz93HbLsg3JW+6qN8YjNk1F/GdvObfngovJcl6\nvTFUE4iM+Ikx5yTMX1i2fCddimG4M2tVUub6RPXNj9ebTdUaJFtzPBUxUSPI\nB3hD9BaoFKXx6+JCGBOLwX74a8lUqTLxUlKS7gag4BmgcBLXSengg126CrkZ\nLH3gGNhBVnQtBcHWNPp3Cie/s87mCe7CiHztk0X4TIIKFvrryyCaFc5p0xWy\nbaaweb7mLt7NEFd8CeKuH9O6mqUZ5lFV+alEkxj+i3DUMVJWxnZGcZHte1ZN\nZlx4\r\n=sFYp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","files":["bin/","app/","lib/","dist/","src/","scripts/","resources/","menu/","cli.js","index.js","bloggify.js","bloggify.json","bloggify/"],"gitHead":"c66bd9927e27b187a0d60b00ef770b853d7c0e3c","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"5.3.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"git-up":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_10.0.1_1531711787218_0.8038137457809555","host":"s3://npm-registry-packages"}},"10.1.0":{"name":"git-url-parse","version":"10.1.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@10.1.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"a27813218f8777e91d15f1c121b83bf14721b67e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-10.1.0.tgz","fileCount":4,"integrity":"sha512-goZOORAtFjU1iG+4zZgWq+N7It09PqS3Xsy43ZwhP5unDD0tTSmXTpqULHodMdJXGejm3COwXIhIRT6Z8DYVZQ==","signatures":[{"sig":"MEQCIAsfaFqmrhbWXUtazJAOG9w27kPhC6i8e+rvFaGUnTxEAiBH9IvK2iY1da03GsTiIO5gA7TFLpToqH04PVPfBHU2oQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25253,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbxPVmCRA9TVsSAnZWagAAV6AP/iBlj+nWRW5Sd26r/Duj\nZR0EWad4iy5mAY0dXsUwgJU9pFOCvR5CoOXDZ/hN7Sr9fwFNfSOX4pMzpXkv\nLkVpInCnNhV2B2X/em1dBOIKVG1US+HrHkG6KUS6cwVh84fKELnLckE5ERgM\n29SiMa8arqvcw7+0ZydWtP2c9KaZ/AZSDRenpWXVPaRd/ix8rxTUHmoa6qau\nL7j0IBma7r7NfRsyQJ1Pa4zbgJia/JDgYzHkawGtj5Wp5+vwVRmrlCFW4UEL\nabXu5ZcM/D6RezH1305knjqRWRStGv1iIrX6zeGASkF5xkpzl4Mo8dQiKrye\nVSygbkYAdsyaTBsw90lupDgpBogChc1wq3ajyBRvFZrFqX85QBrwzF78YggP\nfe2fc+z5XqQUh2yYQuRNkR+IFsUKp8rAXs6omD8JcNWQGEWYsPmkJB1OMWTz\nULx0wqp46zNHA5Ydkj6YxLZZ2+Wd2/0a/FATEpgzslSKBoRvjj8vtJ5JQTp2\n/WpGT9WLuKgrHnOJ9YGGQVU1YANJEMig5lqYCaKbjrjG/Pmq336/LLvs4jQc\nV1ueu52YDG9k8EjunhYywIwTwmYoL4QMYq6kB3NNl84VB0VmC5Cv6pThbJcF\nC37gX8abRaRMcNi6BfM6acMYrGo8KTPTtuOnKDjU0POcTN3hOuLz6DaeefmC\nH8/o\r\n=N67Z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"fc916a84da2537b15d17dd7804eb017af8bd9205","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"6.4.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"git-up":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"namy":"^1.2.3","tester":"^1.3.1","dist-it":"^2.0.0","browserify":"^13.0.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_10.1.0_1539634533323_0.9117296035530098","host":"s3://npm-registry-packages"}},"11.0.0":{"name":"git-url-parse","version":"11.0.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@11.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"fd36e66117104aadc0edc7ded7480a2ce3be696b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-11.0.0.tgz","fileCount":4,"integrity":"sha512-ApYtnm8FO1RJlXMp/MEUUL/dyQ8xdAVL9vNCJJl7e6i+0cxP/JghFO/w4VyACfqXF6qXbjrcr1K44yrIv1QG2A==","signatures":[{"sig":"MEUCIQDM6ReAvvjjYpWIkq+fdzT4CifW6m08coMwKrJnVaOtMQIgHVpqvbBWrZQqu51plbEncAyq5sBUU2C+Q+wSZ/7onio=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25310,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb1ez9CRA9TVsSAnZWagAAYBsQAJtqC5FqNQdSwJrlp3Ah\n/o2ONaSdMqHt5clv410LvDcpAX7m51Eh1g+ZiRGE9QQnBU525HIbevhi3YUx\nddH5u1EIW0f6o3paedhae75AWiXzmSXbWZqENb7jm22hmUCCpNZABE1/Zr9J\nqk5Y1QrWhhzuRnb9Cj4AgIBj1ECgFcwxMQAnQ0ALVgpJHRozs13IjA+AYhB7\nlTXRIbENOsQWaSuw+P0qYYW73hvMLfQZaRCkjnLGYEfmPRqgrY/dmGU9H5RW\nUbOOusvdsV19Bv8OvdjKzCTGa6JneXq2VraBYdx2ISS8SWYO6spBBhWT1vJr\ncgxVxdOoXm87ctoOieSnFoKi1KMCx6dhTT8kV8NuHPrXJaRps/w7ObiMSjM+\n7OWuFkXC/eg1UsHGqwbZVwa41/l+zpVbq4c9PK/JNa6SsT5TK5XbVvwl+Znp\n/VukQ/NSLBt0S6GR6t/Q/5p7l3CNrgViK5XhdEhVKwsQJvIcFy/nZqGmFOXr\nmtw4L2C/CfoS+uFecJaBLLaTl45jK8mlRhqtBSWt8/iwX7PMQ4qGWSKgTLbg\nkilxjnzYaE/oFuBeUsNINBYUySupF1Jr+aUWq1plXJKloNbfcxIQVHZbUtYI\ndwrFQVjKM0Jg1a2yiToqi3HLKiO8ttaF0pWRqsomboOjDwmunRObQyTQJ1L9\njqFa\r\n=+Gdq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"6e2d22ea6dfb3998c0d2514badc467c017dd7dc8","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"6.4.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"git-up":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_11.0.0_1540746491973_0.6250868955658442","host":"s3://npm-registry-packages"}},"11.0.1":{"name":"git-url-parse","version":"11.0.1","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@11.0.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"3fc0b462d1b29ce2cbe19768673938d4845eda0b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-11.0.1.tgz","fileCount":4,"integrity":"sha512-+Ebfi/DWdVyj8gxrSqYlXS2G/Mdywm7LLV5MNC8sa6EAhXOMNzgTKlOq2mxBiGuHAx47rYvpzTjvS0XFuIvDWA==","signatures":[{"sig":"MEQCIF1ZwN7dA0A8DTsQMWjLlSABoE8m1YIbU3IqGfdJkIphAiBtpqmsXtU1ctoq5HwC9LzGFdhrQtIzg6KjJ0NLJpdi/A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25296,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb1fVVCRA9TVsSAnZWagAAfVMQAJUdGkFwb2IcQTzbepmu\n83UxqkVzc5m7Qh4KuJkzvYFkze+KnqcS5QJisDcErACpiZvLYB7baM0ehc0V\nyZN+PYA/FcXocWCzU57myIawit1knpDsYU7oUQbF1N9bzIZj0qyNgJk/2ZMp\nGUKglF0XHhv2HTKUqAZMBpXJVqGIHIaPjRcgKbbAyTJ6GI4MjYp2AbBgBJKW\nk4lmiC626HftJpEEViupuo0+sKzQiWaVtUUmSOmzrK4+gGnmlBy8MGsH/LKs\nK3MjEOBoFBDe4CFVtjvY05rs6hb1gA/x2OwqZY9aN8RmTE99FYpIzC1wY9LV\nNwOkTIhQzuHtKvTAH/PJ2kv6ZPuHubcaBWLBQQGHANytZpgxXwDSMHO/hXsq\n2hc/2jvmDLnM9P5lE0nau23Z6S/Xv54MzmtGxeZ7WQ4fJHxIDhSAQ0zjhrWz\nsOZNobD1dWYgWv0+ml93HqyDuhVpUdgzMsNC/xhz3cu8cwj2mGymfwhCWIgQ\n4cHQgEr5SZPKqKI0a+sj/4MRusSIjHel1TJKJQyhOiLL+/5vDRLfcM2+7clc\nrZFpU2iYl2PaUVAhFit2GgXRlMBowpzIPe8qfS1wPGgRDQ9ReKtX6yEAOjlv\n5vD2cLdjk2JLyEcOVg0J7G6cUCN+Ow8JCXHEy7/jfrPW/t0KrD0V6ThAqaz0\n4RUs\r\n=dK4R\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"131b1586b544c2571429b78e3c0c9fa9ba48ac64","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"6.4.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"git-up":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_11.0.1_1540748628845_0.12180931048954236","host":"s3://npm-registry-packages"}},"11.1.0":{"name":"git-url-parse","version":"11.1.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@11.1.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"a39c719dc7b193d371f337f469aa06ae7d4bf9f8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-11.1.0.tgz","fileCount":4,"integrity":"sha512-0kw7zOlTJgGD6HQ+JKsPLu9Q0hVqYBpNxn9JNl2A30sRx+51r2vtLZtN84GSJ97ItC6VSo9Oz9M7GQt1WUTmKw==","signatures":[{"sig":"MEUCIQC3uAqfjl5gS9pJWXWBJNUMgMGZ1byF/sbz2Cmd8XTogAIgSm3XjdJlrQskn9+2iAd7naMwxgtocsAe+Fw67rKCiE4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27564,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4gbpCRA9TVsSAnZWagAAlVUQAIxNpgqluToyEaYjQfz1\nzXYVKCv6jTZ/KPy3PMQwn6F+tK8EBQuPEGbsLgN8ZqvFS9XlX4U0NJD5z+tt\npy9pmxpkHZAEZZJel2Sr4fmGyTnw3hLiKvAfTlNIx5x841U5QtPC1OT9ccfe\nNWjxb51mK5RqYq2CAmV4auB4qdNNqfjCBSlsODlnE/1V2RQr2U2V1M5L0fpQ\nvUTatNHdexsldIrKlWzjrN5D0AFf/08vpOoYitS+bKvqVyBK4J+BhJGJXpAi\nwjYXWEn+f42IlwOojk9XeTChVfSBssBwNYwM5HSUy6uERpgegax1F5WtS4xx\nqLcGaAecyjH0OmktkrQSbhJHl9nEJgeJVl+RujRU4G59V1qdF5IVBd1TKFOF\nDZwsG23yWRphcemTjbXkphTgpagnJKwEqM7JhvltMapoMRA7h5ieqBAcU7LG\nyJhWGxuoSOQNiuhH4BnSoxtwozRFHf71iSAGAHFlEh+7lXlnE9uf0tqE224u\ntlPXJ5UsK0jEL0tvD2ll9DEXLDIa2XscfEXR9O4Wsr2+biIuV2nSYqXUKJ5z\n9Xi+otPRpsTMSYJhpu32/hITRXtU9nuNSKpXSD27VRRGszMwR9QaQleYQfsg\nSMlwSq3MjqzGWpsCi6jtxiGR1DfyoUaxjmD98yElps9JYa+13ibGGh++xwNo\nrvO+\r\n=bsmu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"6fd324c7930f2b668b6e57626b2d07137e3977a8","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"6.4.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"git-up":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_11.1.0_1541539560547_0.2813867736160929","host":"s3://npm-registry-packages"}},"11.1.1":{"name":"git-url-parse","version":"11.1.1","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@11.1.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"e5aa48f6c22c01711531b321f86d70e57f4707a8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-11.1.1.tgz","fileCount":4,"integrity":"sha512-xeGuOVB9RLovbmXeX9Dhq0v7bL1bX+mKnpBgpM9ZmTlMWGHyjqjcupxrEL33w6enAMMDRb3O+qncgq+BWlgb4Q==","signatures":[{"sig":"MEUCIQDAxbcEVPDEOWg0qiDLMSU+TF7e2TzOkZ3Tv2QaOFGrpgIgQEBkKNZ08E6R1bCO7DtyPC1SzNa7QFd1Cb862p3YdLs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27564,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4ggHCRA9TVsSAnZWagAAME8P+wcbkJCAhhF80LtjwVCV\ndwVxiBaONKnMC47CIhXcaPplpQMMBh2Vw4dker6PfOLMlOhNLxe5RXPtcXx+\n4nwZbqgGlomR5pTaXb0VzRLGZGNw1/t1o2hN2OX56pNMUXGjNCbX4zc/2vbA\np2lgzCUn5eEBW61hAsEYm/BYF8UQOtzxBDly9N0dm/H0I3NE5QDP0pbJnIJj\nZkyEZdQuoqVqJTbiBiwE9us05WNQIeV5PyDlVFtY71562bsen/j8VBLwglGv\nJ2FhaUeR6es/jPv4uJXWQpreC8Me3wKTuEVzIXlkxvyehORPZj8jgs+Rg9HC\nfSWEi00+0++W5SapKtYNI1JscizBV+AVG/hhzHQCnOF4BSAMkgUpox5PE1Yr\nArYDuqtaZlStscPUm03CdKfO5Rcv0tiQlUsablbGVb8VB0y/AypphOKTkw8W\nwyI4k7HErDN4Xhjm4gncPxKDuL38sxORLIR8aSbFRWOsRazAWuty+fDnx5Oa\naTud183gtHc4S5PsRreRAxIzapmSTe/a9z9jI/pYp8un6LyOLHyUEpIVBETw\nQv/6QlETEihbrZoCpYVu0CEUYMS4ttIG3eFcfN7s25PWYXHTfmWEtACC4y8i\nY1pEuLbnvY2A+dAc+d2RXA/PcaDJ4fbe+dIetQ6GuwOblaFt9cRRROguKNrP\nni+B\r\n=bUIT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"646d7205278896ea3f8d40ace1c5f5dd6c4377d5","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"6.4.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"8.6.0","dependencies":{"git-up":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_11.1.1_1541539846599_0.9768445833364181","host":"s3://npm-registry-packages"}},"11.1.2":{"name":"git-url-parse","version":"11.1.2","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@11.1.2","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"aff1a897c36cc93699270587bea3dbcbbb95de67","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-11.1.2.tgz","fileCount":4,"integrity":"sha512-gZeLVGY8QVKMIkckncX+iCq2/L8PlwncvDFKiWkBn9EtCfYDbliRTTp6qzyQ1VMdITUfq7293zDzfpjdiGASSQ==","signatures":[{"sig":"MEYCIQDZzCd5qT9BkFskFCmk7vRe2/qop7r0uBArgA7pK5o1KQIhALNE7cMbBd69CrXr/05o/j6bMH6YB9e+YXG/Qgmbq6Om","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29255,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLjyQCRA9TVsSAnZWagAACLYP/j6mhlBbU6NdmCWUdCpV\nyHejSM9iSGgwGziohYdzj1823688v9SYKUq/nsVNNfvleGwizykzVYLJSQ0p\nEkd04W/PBqeej2KPKPo1XEIx3KEjuJtbs6qy1PJ7UcImoZol1o1og9aQCPF3\nHo28my/RdbyBeNQ7yCFSGHyFnXdWBGGWSsiE5n421tPJigNxsnCiUlBVZACb\n9KvVxjkgw1MD1favfN2fh8P2ENT1FgN00u2vhDiiNNlQxWxyNZWY6rhygbtt\nn6ghtIEHzxBgBBbN3JghhIeIg88Rf3OeX3PO2tL/48+C3JWezI9fG2LIxJeh\n68PYvSP/4mSswA3AW/fVYV2zY9NOyjA3j5swQABi3dBAqs7VyMX3FOOXtob5\n93ihicFcfq9S9UnKrj3zRRHYn1oePUeA5RSl0xortfncULmiOilfn+mmu2HC\nx5gJTgwF+1IdE2MZhDBxJRyajWBL95brGnVwg9XFAQpjNDpGmGeiR214otVE\n78ob6Iz3IcfpEgZioVddjG/vJzY/k0m4DjS+nXlOUIfJ4AsDvfQU0n2nNcp0\nyECZum9kfw7sFmMZ4qUVyf0LalGycrWxpscN/tnRkaBQbgZi6z+y9mwKbkfM\nSIJWGnd+m+7OEEY6gj6mEGhqXV4zXzx12aMJ+Zy2pXN0+yy6cjLhLSr6W3Eh\n8ItU\r\n=xjLo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"0b362b3e3b91a23ae58355fd2160523f0abde5d9","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"6.4.1","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"10.15.0","dependencies":{"git-up":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_11.1.2_1546534031489_0.608156198422972","host":"s3://npm-registry-packages"}},"11.1.3":{"name":"git-url-parse","version":"11.1.3","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@11.1.3","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"03625b6fc09905e9ad1da7bb2b84be1bf9123143","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-11.1.3.tgz","fileCount":4,"integrity":"sha512-GPsfwticcu52WQ+eHp0IYkAyaOASgYdtsQDIt4rUp6GbiNt1P9ddrh3O0kQB0eD4UJZszVqNT3+9Zwcg40fywA==","signatures":[{"sig":"MEYCIQCOoxCv2wKVVzpOARC/dd69Bm3hcHOMnl9Czce3S1sLQQIhAKsVZ6BnzlsXX4cFr37rBxKYxSAIe6CF7u0ioHaNkv7a","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24125,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfL+azCRA9TVsSAnZWagAA2l8P/jKQg51kCuDhrAzsfMu9\n85k39T80dojhz+kgGmSDFrECXv1th7V6+QbcqtsdeBk0y4Y4gscQhY7i+IcO\ngw+9oZJBZON+rFlySUsZYyj46WJxzTzQx1sGhI3EKvW1p/xHtXIQMwqkH4ct\nmQJVzXZzxdxBtXu9BUt6zPGjTvT2h2fE+L2So76Tkd7h/535j4xtaskqvzB5\nLs58Sp+uVeflpegn8/XuxwoL7oXpaGaR4V3026EUX55BF/lkhyohnM6t7gTW\n6JPLaVwANlOrcfAhL+UhPuNVUYCaFu4/BZth9dOZrRKroTvsmnog5xPhlL5F\nTOUEExDRcGkowdS44lVa508NQSlQrIZjLfIHFg26eAwjrsvvrUqcGgS2iFzB\npnIbsosnKUULz0a93da9QzjThCzBHgrFHK3Ldnlhk2u5ra3oGWb0LYq4JZQG\nVym0TE1JzWrHEyHS2RhXgca3XRcUmNTr2aL2FYtFylFtuDJKHOOEWhTgk16b\nuVvDSDB57QtdI89UqJlPPPID7QTkAQ58SMY9182VjsKWVxi+kyK1grsaccRP\nM0yn8aZ38tTOwS2kb4cD8ZEHJXHF9AJg8SivB35IjNBUpNDHZceUkQ6NJ0cc\njC9lReVhsPXDrOr0pWR5/mpwUvrzkyVMC1ta3OGyxiZldHPQ5FDFuOaIOEas\n0w3R\r\n=eYtl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"b7dd2a44b4c3b3cfeb88ac6c1f9ff7ab0eb551b7","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"6.14.4","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"12.16.3","dependencies":{"git-up":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_11.1.3_1596974770466_0.9741613937438565","host":"s3://npm-registry-packages"}},"11.2.0":{"name":"git-url-parse","version":"11.2.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@11.2.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"2955fd51befd6d96ea1389bbe2ef57e8e6042b04","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-11.2.0.tgz","fileCount":4,"integrity":"sha512-KPoHZg8v+plarZvto4ruIzzJLFQoRx+sUs5DQSr07By9IBKguVd+e6jwrFR6/TP6xrCJlNV1tPqLO1aREc7O2g==","signatures":[{"sig":"MEYCIQCpv0tICwJk1aU6ewCI+GyQfy9NC0NHaCC4tdR16atP9QIhANuk9ODduz/vkhq5getQ6ZrknKyVC9NgJEfoQcdQygeo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24604,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfUirICRA9TVsSAnZWagAAvKQP+wazfeDEnTF0nNXd0BWd\ncKz0YgnNAydm0SllLrTyGLhvsOf2wUeo4ZBZKWRE3tOtFc/5nb0JMw2b/qDJ\ncwSgQvI7Q1/hbr6p/myegeNIOqXJAUzw+SQS+w/nTrI3tX4GggoZRsSFvuBC\nELSW/17X8TDN3ShTp1eqeZeWHSztOiF0AxZvN6T29XRmBDgyxYwIE6KAFLKY\nuU/BCsCa8ekyDawN9QBQqHP/HUNEGuz2qjmwUxHe5+IZOpRVwgyDJEVp/G7c\nxJfTA/bb9hO19yDz5HhUi78TtmGSLvPhrvPXE+jvBWZJikTqhlkYJjMrwO0H\n7eqyqT7KH/ijjxXz66FaQTIRO5/i3OZqHF2f9R6lbamiRbQ87UbpM5r8iVSN\nf83K5YRPjhFCxTOVAJLQsjtsKEJhXQzlEEnTgIXVmazgkbQBmwU9GTNT+CfT\nerwTFQN+7+amO++XILACe3UQ/NqzX4782KgiQrL+IrfkhznogHbSS16U83PQ\nAAwfv03g2cCmt7uCjZCd8QHAqrRECIulHz0ml7xShyhFcrc1MKkTSTorcqNB\nr+3AoMGdaYYkkDaVnKGjeisIIh3fnQfIF1FQp29716b4F0iSQREG7HWAuzHO\nQ5LVu5mmnNoyuABugbyXh3cGNClcJnzhVjPlTuF/NCSAkaY8FzKNlqoyjAAW\nrgcy\r\n=ziND\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"7d9511ed30a0650c42314a4117d03cb450ee9a77","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"6.14.4","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"12.16.3","dependencies":{"git-up":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_11.2.0_1599220423938_0.08874068708664118","host":"s3://npm-registry-packages"}},"11.3.0":{"name":"git-url-parse","version":"11.3.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@11.3.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"1515b4574c4eb2efda7d25cc50b29ce8beaefaae","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-11.3.0.tgz","fileCount":4,"integrity":"sha512-i3XNa8IKmqnUqWBcdWBjOcnyZYfN3C1WRvnKI6ouFWwsXCZEnlgbwbm55ZpJ3OJMhfEP/ryFhqW8bBhej3C5Ug==","signatures":[{"sig":"MEUCIQDuqrc7oA7Jt6vbwJJQOr32cDeImzcthxkZyY0Gjmf3XQIgRZs3Z4fy9uiESwj4cqKg17CncQccAD4BwyvGCg74bJg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25057,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfdEO1CRA9TVsSAnZWagAAFjQP/i5Ry21cqXO+wvPYRGHh\nI0HUpWbSn6n9To471BK/Fo7yMhIaTEHOTndegiIEVECFzN6hzkLfz+42nWeX\nUPLlUTwUywgwr29OlRwSzwwfccnsuN1A9gik8HEv7WHBHDF43CX9Yn2dX7Ug\nbd50Iu+gJOGwgxgEzaODeKiQ8CteXne00Qbf96BPGGGncwZdfZa7GKyKaId3\nkutnLkpTe8VVgI9X/StxCAdoM8ETYVao2YVRD9sxJNAwqCwnCa8pjQabDwLf\niENNihJGuvUfvzbMGfxPzruFnIuLqgQSUAkdWhzg1Ujn0ne2ifmRGBIW4AVz\n9uPCRO10v+U9XVQ46xJBsxY4T2Z6bN1F0CoP8TTIcN9fN5cxBdnRVCCg4ble\nx7ulyYZeijYHx24uq0QjzjP61wG4DSmfCzW/j3ZNKpMM0eM3ukWn3TyoMveu\nfuWjx4s44ROYMTiBRhZwoTh/GTMFQ97BmIgdkOlkJ6x526SPFltSR0aHlKMN\nY7AhOYx1G5SopAkpDRovZyDLpod8B4sWHH+W9imJkK3H/Pbolgsi3xYeCI7+\n+leO2RQEC+MLu5BPjZqN8v3XcS1aXgMnfHHhVhZdAKtAkY2ySmd1vqsyzxSc\nXTIyVirfoPMvx+Bm1NVLrSj/o4mPHelz1hsnPSrWzLpM47BlWGHkFgR3rR32\nDvUs\r\n=pmL8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"8652a93d0feb01a2b4a42e1418480d9a837a0855","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"6.14.4","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"12.16.3","dependencies":{"git-up":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_11.3.0_1601455028577_0.2300250050859054","host":"s3://npm-registry-packages"}},"11.4.0":{"name":"git-url-parse","version":"11.4.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@11.4.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"f2bb1f2b00f05552540e95a62e31399a639a6aa6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-11.4.0.tgz","fileCount":4,"integrity":"sha512-KlIa5jvMYLjXMQXkqpFzobsyD/V2K5DRHl5OAf+6oDFPlPLxrGDVQlIdI63c4/Kt6kai4kALENSALlzTGST3GQ==","signatures":[{"sig":"MEUCIQCvWJwdNT0b7ZrKu8XcX/9IQp6/raRkzw2lhLWKRKUrrwIgTJv5zQwJ0iBhGemNiTCJMAbL+5OAIfGYcbPio9L1jeM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26214,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfkdqzCRA9TVsSAnZWagAA4HMP/ipIMsW4/VW9Ng1lBsNc\nG3IOukeISwnTk42SFTAkLiio6NijeRaCRePm50DAgb2gKyn0oHOC/kWLZZQs\n5zMv9YYEg3bXVEeuhL0lk2dkCb3K5B9ItL11YbyoDoFAAxbgTbYwNmPNxr0u\nqwUVYVy6jEUzPOqNGF9GSSO5utZlRX2hGDJCES24aUyVcNBqI5jI7rk4CBdu\nOqDJFd+EcrsIgezNZFRMShQKmDgDJILbugGsDFpHy+sejGGzbkYo1oSTs0gM\nFs9q7O2W42vV1v/g9BUsh8pYu3QMm7+iHePEj7N7WfLzR/LU20hxClkHkTKE\nIinMR0tPuMwG1vDqDLRaFJaBpRWQUHnc7KzXZ7FdWN6iF27zjyUy0d9MtCOC\nHDwDmvXvARCqfBv/ZKQIm0LVP8uAf4KZiiQEbGOCzj0wudjjdM/MJTDWOz5N\n+/Z3DWhlS/nRA5uAYX7FAMUwOBq74m1KfO5wBp/YDgi0SXeZ3XMt2PoV6Pwn\n/0UkmAhKyNnS89mN+ZC2D4uyVJAVOX0Dy4d3Amg3GBKAIHj/ZYYPHLlftFsH\nR00h+c3ZWfj+N9Y4L/Ue5sm5CstUDHpadSWoS8dYtHlEvqQqEtqEzSeQEZa9\n7vlu6ghndbxcPqLesjHDBQ7Xlgl0ARDKWhfFhqsuJEs61luxNZim4vYbLTCo\nwyLw\r\n=kVhy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"1b0350605d52c4040b11bee653d8ddff6dc8efaa","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"6.14.6","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"12.18.4","dependencies":{"git-up":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_11.4.0_1603394226494_0.29527439934896726","host":"s3://npm-registry-packages"}},"11.4.1":{"name":"git-url-parse","version":"11.4.1","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@11.4.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"524471ffd88aac23e48a04ababee8bf4f8c576f0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-11.4.1.tgz","fileCount":4,"integrity":"sha512-a9K2hbukIcCsZYqVE5L9dm7qdkOzyvMfhbCdhN4FelH63V4hBlmlxCLUS1VL8Qu6v7SeeqT5A2vuj26OWNAz8Q==","signatures":[{"sig":"MEUCIAmUV0P59eLrIiAuqRafIZ+Bq2dtsoCvhSPVn9m+1wxpAiEA1bd94++QkMcGScbvOzSnTue2LxWhCkg8z2jsEdDJV3o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26654,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf2FaTCRA9TVsSAnZWagAA6qsQAJ+3FBlrXs3+mHbGJY6w\nGVDmPaD05bwoY6P4vJHKWyppCeK5+hdjSYq4Uh8gihOElRiONQSx19NpMCaC\nzdSNG6ng4j3IkrNBbpocyKBM7c7TwhGVUap/rmNidgdHBrIGLVdiO1vDpldN\nvdJod43iH0MGsvy6HLim+BYB1CV+4WWS4Tv0IdxpcP04mmjvPtD5klGcdMDJ\nabvngw6o/jTMiVZEDXu5u6YcKMI91LS8JiuIK0Q+jokeZFyvIP0gLOUDNcRP\nqn9LRM0iTNM3ZhoPhNg/m04mgsqtlRsO+CNewjOLC5wl+cVT1FSqoOwcurtO\nw5w/qrCS7ZxekTieNChJpGJCsK6WeAN7wKlLmKQSU3Ffz5nCqS/7qE8A5vFg\nU/Hw3KUZNZLXGDBwFpf/E5nao9F+WhETdVUL6FKJ8WTRHNRz1D/cQz6nY225\nu1jP045IbBzA3Sw7njMUGruNMsaLcH7nmVBgMyj36CUxBGSjK8UDuLo9zEjS\nhXazb0F2cKG1ObGU74955S8HpxAX+jnP6GLF6lKFFE05FjHqqAlHRa/O3I1s\nc7AuEKhmTnPEresDhJkH0ScNyKG20XIOuA6pn/5qOYBSe58Mcqko5gO/BoZJ\nAqxcHTR3JGZJ10m+b6Sr6Hh+6xTmNIQYepoljIcZrxYrN4+9HrWOzPhSgD01\nBO+7\r\n=/bqY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"a7fda5efbf6aab4cca42a90697d8da8ea5ad8895","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"6.14.6","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"12.18.4","dependencies":{"git-up":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_11.4.1_1608013458820_0.796782216344273","host":"s3://npm-registry-packages"}},"11.4.3":{"name":"git-url-parse","version":"11.4.3","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@11.4.3","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"1610284edf1f14964180f5b3399ec68b692cfd87","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-11.4.3.tgz","fileCount":4,"integrity":"sha512-LZTTk0nqJnKN48YRtOpR8H5SEfp1oM2tls90NuZmBxN95PnCvmuXGzqQ4QmVirBgKx2KPYfPGteX3/raWjKenQ==","signatures":[{"sig":"MEQCIGxKWZG9u6tF+VrsxtiRrWgKOTqbFqs1GfNtAeMtlDYpAiA1sfYyGvPaCXOAItsitOeJIuVccZe6TnURQBGDRVP4cg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27067,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf2FpFCRA9TVsSAnZWagAAj+0QAJei3dm/h7xgd4WbawQ2\nZLtPjlLynw9Hg71GT5rexzB/hHskzpRAtK7wRQh4JdPI0wh56+BQNAFcKfyZ\nGmPrse5lC8Xh6cJlH0gW5b6hsHl+yHEElQtXhio04O33c9/Y9gS4c66idTbJ\n5SaQkcf99f14LBZoeooVWOLktytVpTJzUVPo/qm2WsB9O2eSuUMFGbPkc3bs\nSer5WRgU/wv/G6KeaQjW0TbrKtULDa6DVEkP2JCeBJ5VqiwCgrBwkMvA5QT8\nmecX8+2ECnoC3E56AgEJtbH5YNACBurSmyMWdiM9hL8Lxw0M9EQZENGXc1pO\n48EcsedGTVoIgfyr1akJC7ZuEiNBnxCBKF00yaoLdAOtd8S+Qy5OoBCzXluJ\nktbe6uBawFSHMYyWvX2Kh75dIvvdTpEj7JDphlm7RbEGzsWmc6H6NjO0pV5h\n98OukK6LaemGYA7Bn5C85ym5BN/A819AFidg+69IG0FosPStk193Xy7TGXFy\nK/VIZUrGP/wSZAiS778Q49dgExPAQzKjBSwBhIFpNViuMY4xytIatXv+L8bm\nwbiYUzaCAUEJFBw9BWl7W4A1DIcz9izlTE5BJgDwNfZW49nnLoPvosIl5btj\nw8AdkhqHTssFDvuFY7l2d/HwrN1RDsWa4v7IV35YzeeYGIEvXDqdpKZuToYf\ngrqU\r\n=/eB9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"e994c8721a8b604e9d9773523af5c6d5f7a068be","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"6.14.6","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"12.18.4","dependencies":{"git-up":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_11.4.3_1608014404669_0.11949135961487167","host":"s3://npm-registry-packages"}},"11.4.4":{"name":"git-url-parse","version":"11.4.4","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@11.4.4","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"5d747debc2469c17bc385719f7d0427802d83d77","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-11.4.4.tgz","fileCount":4,"integrity":"sha512-Y4o9o7vQngQDIU9IjyCmRJBin5iYjI5u9ZITnddRZpD7dcCFQj2sL2XuMNbLRE4b4B/4ENPsp2Q8P44fjAZ0Pw==","signatures":[{"sig":"MEUCIAjsdZc1JTlMCqmWr87C5qsKSuzcCM+tlzgr+0jyEmMFAiEAxkKZWH5Tyip35iXSjs2urVd8PurUNSx+oE4WZohVXdc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27687,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgERmaCRA9TVsSAnZWagAASvsP/jRWBF/E5eA4vChNil+U\n5giHb2YYshCYfMuikyWvRXGi4lJeQdc8gcob3HC7/d+iQsyr60EKN4+cEitu\nd+kivOLGLf+YR87GRuwkWcrV1WUxdmi8yA7HueesYRFTn8WDr0X+CFEZGzLR\n8WmHI/bPsdc84xpSYSHAkOda/hG4DNdvRYgE9I6fbE1SsHMXqD1zkYH+/DPe\ndfdqzq59sLyxemIDooStovsWgHt39+RNl+e/CJu2NDEZdDOgqkXH1KBacq5L\nNJAqjoQpHtZoIAx56XBOwyV5Ntu4CvMFgkUzbiTpXBL6NRqAu+irz70e15cX\nw11Z4fVSyhpvTaW1RYqUpL7sPwMIGrCaCnvIs0VbouRn/bGCf5ye34neCf9J\nhzCiwNs4E/mSNTQZYuTOVqHa6dB2iRntufSd5xqTYi3CyjArun30IWJ/6XWg\na5DH1DI7NKzAjpnUFzfrP7o0zWF311RtniwaYmpLLJZoy3CUQZPcoxU3VD6n\nAyJhfJlmUQIAIWk/32CHE3x67n63XpKqTqNjr/Bcwc2xsJOZj251ShuyDiqf\nlT+yrLElgEM4AEYp/D/ccjsm++qEQigvxOeILn716IVnMDWEfqub/wLLK0Ts\ns8PqzXivgOgS5rPwGFXTrgP5kcKsGvmhZBgncA+HHmx2n1gM96Hi6kxt0oee\nxi5O\r\n=Ez/v\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"71c7298bff814af8d3d5ca60583ccad42236b734","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"6.4.1","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"10.15.3","dependencies":{"git-up":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_11.4.4_1611733401347_0.49555887017709077","host":"s3://npm-registry-packages"}},"11.5.0":{"name":"git-url-parse","version":"11.5.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@11.5.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"acaaf65239cb1536185b19165a24bbc754b3f764","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-11.5.0.tgz","fileCount":4,"integrity":"sha512-TZYSMDeM37r71Lqg1mbnMlOqlHd7BSij9qN7XwTkRqSAYFMihGLGhfHwgqQob3GUhEneKnV4nskN9rbQw2KGxA==","signatures":[{"sig":"MEUCIEbnPFwdpnxxR6Blhn698QIK3zuI3jrUCl4A4vr4x5cWAiEAsyfsiLqpAlsWveyteUDqG4jQXKFSv0KALbWgrrJVT+s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29197,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg2uS2CRA9TVsSAnZWagAAu30P/RCfu9a2nxREfkTCjP07\n0hZmg/oTQyxtdf69zGQArBfS8Z50CyMEoR0UefwDHtf87rM99rOia2ogYink\nSMEwX5oGuhLAvkzdQEGh0Yd2CqjdCn6Ll71/tpQklo8086mxL0dmSorZK1iV\nDAUspChZorx1wyxwaIBDSVpcMoncRLgA/IzvXjknW2KC9F2tWkZI7nHXwavi\nxu+ScOl34rx/9ZZkPM/w92ICkd+2Vj2X3iZRNdhy4Ks1GSLxhXgubI7b9Gnj\nUfFXrLZDn4mhgyO/ImskOgG61uS+LcCRnZy40jwNlwst3JeZx0F8c7S9m53k\nUIcjsIUee1td3J3xxTav1vwi/UA62GQH0Ad5qfBNZ2r7FJSvHdSQ/yN1/xuy\nEfpGZqtJIYBHWzAPaDdWkRVLQ41FryZtqlluYEMraZtpXfEggD84O+kvFdxQ\np4KPUpqLf+xnJOh4W41YbGNSyCWqRuAUsvzai5oz1Z4ZdRJ3Z5wbOMdPS2j4\n+pdeMelq5J9O29frifWBc9sSPe512jM0/HE84yKnnzKSk5rx4zS+dRRs6zeb\n2AceKogkio7UjevvTZ0PBBkNMsc/DA6bHdE0u3RuTN7gM8ptrnRWySRKr1CK\njv8oY4mG8Cr1HvgiS/2uBVLO+K7M+EySdQDirWbSvS7BL4kFwzUqqedUP4AX\nIZ+R\r\n=QPLN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"f56cbc1f1585b0672092b749512776cbef79d667","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"6.4.1","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"10.15.3","dependencies":{"git-up":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_11.5.0_1624958133960_0.49563717423923137","host":"s3://npm-registry-packages"}},"11.6.0":{"name":"git-url-parse","version":"11.6.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@11.6.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"c634b8de7faa66498a2b88932df31702c67df605","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-11.6.0.tgz","fileCount":4,"integrity":"sha512-WWUxvJs5HsyHL6L08wOusa/IXYtMuCAhrMmnTjQPpBU0TTHyDhnOATNH3xNQz7YOQUsqIIPTGr4xiVti1Hsk5g==","signatures":[{"sig":"MEYCIQDvZooJQkXKcwFGOMmaUY9X/BSw2bcGhqjTkanoGnpqigIhAIoAksY3KfZI4KZqSzmNZJg8lS1N/qR1/VIgqEstg8VS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29564,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhNeMiCRA9TVsSAnZWagAALkQP/3cY3/I/Z8piHCxWvken\n3zOMWBTNsEkeaUvPfUvlX6gPAe8WF2mxEA1SzRQc8jDl25xruj8YOW6Q7Cmx\n7XTL+pAP9IMN9EdX6/AL8SGwmJQatIYnzjYuU7g0tbtJBfk1AV0haYlSkLqL\nDFHMuUeNyUmi2o9Wl6k8dr6lan4yCIxBWKs8ACOe9t2DJQXMvKoGa2wOD5VD\nImbPLQyNQlywS0VnuhD9XfnOfVkwqGHONeh8lamBmhNI905yC1IrxF+BbWJL\n6cpaSRHMXYJtVB8gJzobFVHrXzAoAaRp9ZYVSscPFFdceGstwqDnu+AHNkU3\nyIsbHROhEqre0rqSgrMJjZWmoo53+9wy92jWfnexQyNwsEn/Q86N/vZD7iWq\n7JDP3dTuUyuI+y2P5vMUB3T3+LWAsastugIM7OjnH5qhOvXLN9k5BRlikbyL\n9TeuLRafDyRrwTCO18xS+uVl5BBKamwgGlux6ra1Dx99lp4lS13pUoFpbpiY\nfK5ELb7tLi2NBrjW0M9rI9JTOf5laMskXD/nbe73jHyWkAI+VxVxMxVNznVb\nKsq8M9UStN1ZaoSAwREn5kh06jiFmzdEoQZNGPClrpGqjmZ3oguxpyqBL8iC\nkTeD21WErPkXKYZTMuSA3EGVkLVmchI/Gvn3aWah7li6kBNZGC+GbMr3rdFW\nynaE\r\n=IS1C\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"246c9119fb42c2ea1c280028fe77c53eb34c190c","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"6.4.1","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"10.15.3","dependencies":{"git-up":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_11.6.0_1630921506829_0.42462799246490546","host":"s3://npm-registry-packages"}},"12.0.0":{"name":"git-url-parse","version":"12.0.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@12.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"4ba70bc1e99138321c57e3765aaf7428e5abb793","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-12.0.0.tgz","fileCount":4,"integrity":"sha512-I6LMWsxV87vysX1WfsoglXsXg6GjQRKq7+Dgiseo+h0skmp5Hp2rzmcEIRQot9CPA+uzU7x1x7jZdqvTFGnB+Q==","signatures":[{"sig":"MEYCIQD6Lktfb+EtUzkCAyVN26SLhgiODJt+cFGaeLfEyDl7XwIhANuyUrX0b7255ciP7cDZKngf0cR2DLe9hhmKOB/jCGu5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30754,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiuayLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoJwxAAjTXVqc75TcA69ge/9aAlr8gQyPawV+/KR2QvnLFiDc/f/OqB\r\n+DpxmRZH6lR3O8fDsene1//sOWSA/ZGPT6AwosSviGdQgRy+p4/3QlqRt80H\r\nlVCnBYI2kUoHCv5BIxrKM8JGSmCs/muOVHkjl9PEXlJIBBQp/8iu3GSOxPp4\r\nWIPPQhxkjIzbTbVoGUa/24xcSBNjB9xFHx/eoatAeSHsP9M/Gsmk72p+Giri\r\nbEdt6ZGMdHJJNaJlBUYc7Bg/+6HP1FeJnX3ufBcfgcwzY7kgRano/tOenyPr\r\nF3+mZV/MfpG0p/tYK3vfg7YTTtV8MjeUAGeXthl5odAGTQc3yMu8QDmzRWWk\r\ncGPSA77aC3Quj5T/PVNSmxrhKJGv9gOzmvmjy1SEornAvoRDkuhdv4hXLSwh\r\nPN1qT6Qj0Odx69gQ8whr7ugIaZtWIVHKeb5rGqWcBSVk1/5pVCrq1p0Yaflu\r\n1oCNIcsXf1aXbH0xL6vMG8kiBhkm3ywl2lMT9CWVc2euqeu7hBl03Ovh5Orf\r\n5qdWIKps7QEq1p7zP75HPtaSRTInSUjlhaxt3WhyF3zRLu71RFZxXYLLA2g2\r\nVjKamKVXD+Y/46C2GDeYvGxs1aRYWgiT74PsNo65gUDEtKD0P4Fj7ZWaIMN5\r\nVY/VlTRiZKeoT8d3notx4mbmzWqCtoNS+P4=\r\n=xXsC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"6c0ca07cf3b45582e4ba4abacfdaad2e41f30323","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"8.1.2","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"16.13.1","dependencies":{"git-up":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_12.0.0_1656335499663_0.32920750275300703","host":"s3://npm-registry-packages"}},"13.0.0":{"name":"git-url-parse","version":"13.0.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@13.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"9a18d0eaec579fb6379c368aecb09f00b544669c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-13.0.0.tgz","fileCount":4,"integrity":"sha512-X1kozCqKL82dMrCLi4vie9SHDC+QugKskAMs4VUbIkhURKg5yDwxDmf6Ixg73J+/xVgK5TXKhzn8a94nHJHpnA==","signatures":[{"sig":"MEQCIEEV1Xud0eO4+4ZNcinvQh5bT5Qy1V6mqUMuepb0eaZSAiA5TpcC0XONNPRBg+AYjYEbiVM1OABSAiF81x3kKtyxAQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31419,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjDhcWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo73xAAlpCMHFgSZ7EVd1LHvo+QQngKXjy406fdAA307GQFpsolaQ1n\r\nWjXaE4kx3twdd+EPNUxobWloywIN9XVTf+eM0dvyCggeTSuSRsCh6YRZUytS\r\nV5wheTUP/DX+QdtotwOB/4bHyhnDLnloymswyr2hKPR7gwjIJyIiK7fIUgnJ\r\nAn0ikBSxf3uy7wSpBidVMcTpkIbyT2RjNQ+/HUFvM8WKe19WNiDMLw9OK+UI\r\nb4RV/4vK3NAOSE1kMkgq4nFOrGejKUAn1t6eKq6v5hzhWy2UhL23Po72wn3K\r\npiIw9ZSzVE0I3+k2k2/jxvwUAQl+svZElArUGgxtYSgmNTqOwJc2RhQ1CFJc\r\ntEqApIFRuAq/SsCyx5EVnTDcFNavUnOPDR3YU62qUvl0ZIc2rltZyHpO0BE6\r\nbTkmad67ZpHMXcvBPs59iFkS1yhbsaJMujXC+kPty6mL8He9F5qfvFZ5Utqw\r\n42jcOx/y6f3SIBT6FJJHr3fCsK5X4YjM2bG7StGQXBZWWLN1gOJ+IeSRzfzH\r\neY/zFxGEKMHLEKqVyvQfgba7/j3Y9ZyAxR+trhFIhbDX3y8yPWt2NtorIfrN\r\n5WVzECul7xyymIraffRTXUfbCM3m06BYljMjguCpUUgqM0NuZaLHJcxDO0Tr\r\n0FVfs5xdJjpm+mFVz3SOXDW7CR7rvoNhuoY=\r\n=Wy0b\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"129677caac1d4e40285fae0c4a04e5ec7b0e4d00","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"8.13.2","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"18.6.0","dependencies":{"git-up":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_13.0.0_1661867798063_0.7691600881500924","host":"s3://npm-registry-packages"}},"13.1.0":{"name":"git-url-parse","version":"13.1.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@13.1.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"07e136b5baa08d59fabdf0e33170de425adf07b4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-13.1.0.tgz","fileCount":4,"integrity":"sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==","signatures":[{"sig":"MEQCICzyPReCfmMqm6Ce0UKR2ADi3lP+Zk7ZEVPUP/ndTp4hAiBXip5nOR8e7ODAGxjrG7b3UTPATLabdjxrRvrc81AQLA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31045,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjJB+tACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmogmg/9GOErT8aA2abfekNoNliqxwcvp9Us5/CfrY1dI108lZqVfwm9\r\nCLqfj0lMNnZ0k4HN4wkeNfjkCgHqrT4hO+sxJiqZ85/bWTHkeXhkPstYj260\r\nQJ/ktyyc2aZiWGFhcQd7p5O4xGZ7TBWW7WKgsYIzGc5qHFuEL34T3AgVVDJJ\r\njIMJ7xO0yrcUc2YDnz81QAAJ+oCUtwAc9no9k8w7HghP6xncuQ/JauooACUv\r\nKB88+jHW2OtHUWSSVxxd0lKkI7KIFPTDD1ftz6452DJ96lWZ1EVNkgcKXtmt\r\nXw32wh+QTkZ8XGWmp/RNmHAlR2mAqtCcR2CXZX9az+YWL6CzaO0qcPU/j/Xf\r\nHGbu0X8yXAv+PnCk4DS2LbBg3qcdz3DY4OfJX5g2jbNWv1ArzT+Fm+RPlrBN\r\nHzP5f+yTXt3au+1TPYwdnfXNcqmzN+pO5OZvOK7W5XivPLKo6pwEiOZ2AsFA\r\nPr6772pgDR6Mcdf4E/9inMYQL2WZwNBQZlbXUmvDYmDGhn1fLsdFjI069VOC\r\nCHCFG5zpkjwRB6JzDzNYrzAuW7mknv4W7LnEVAoOHiTJRYYiq6GNsMY1MDNY\r\nns1mPK6G/5WN5ZA6DBR8rx4aPSHI5WtJPNA26RCsoFJdc4wD0jyCoQLe7YVK\r\nc9Gikgcdlf/CQrlHYrduMXuNNS4Sb3Lgyx8=\r\n=QD6g\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"4f0dd57c822a220a13913a9aaabfb0cb59051a30","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"8.13.2","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"18.6.0","dependencies":{"git-up":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_13.1.0_1663311789019_0.036488441663006466","host":"s3://npm-registry-packages"}},"13.1.1":{"name":"git-url-parse","version":"13.1.1","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@13.1.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"664bddf0857c6a75b3c1f0ae6239abb08a1486d4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-13.1.1.tgz","fileCount":4,"integrity":"sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==","signatures":[{"sig":"MEUCIF0rPsKI/r4zEGIlOanWXeunuvA4FJer8r4b3NNmGcZoAiEAkVsAwV8o2BC6x2HOcCEnD5UQz48YpxK3f3atDFiVd5g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31045},"main":"lib/index.js","gitHead":"9873728d381a67aa60ef684844aae608ae61ff0b","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"8.13.2","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"18.6.0","dependencies":{"git-up":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_13.1.1_1697707570552_0.673885434640509","host":"s3://npm-registry-packages"}},"14.0.0":{"name":"git-url-parse","version":"14.0.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@14.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"18ce834726d5fbca0c25a4555101aa277017418f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-14.0.0.tgz","fileCount":4,"integrity":"sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==","signatures":[{"sig":"MEYCIQDaedZdNsNyqry7mZ6BRnzaNzqWji7a8Xw6HMtq1hGDZgIhAPZQbsQUhRxFskiKTyRAk9M+Ni1G1l+IQmV/EQqRnQY9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31519},"main":"lib/index.js","gitHead":"28828546c148d58bbcff61409915a4e1e8f7eb11","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"8.13.2","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"18.6.0","dependencies":{"git-up":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_14.0.0_1704188627228_0.5436632794823124","host":"s3://npm-registry-packages"}},"14.1.0":{"name":"git-url-parse","version":"14.1.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@14.1.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"01cb70000666c11a7230aceec1fd518c416c224c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-14.1.0.tgz","fileCount":4,"integrity":"sha512-8xg65dTxGHST3+zGpycMMFZcoTzAdZ2dOtu4vmgIfkTFnVHBxHMzBC2L1k8To7EmrSiHesT8JgPLT91VKw1B5g==","signatures":[{"sig":"MEUCIBTDAnAosLlWR70gCK+hs/VyxfPoZJH1f/zFzW4zZJNzAiEAqeMIK/mWZ0Ats571IqDtb4q+W0ILNdN9rlkfY0PG7A4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32771},"main":"lib/index.js","gitHead":"9ac59d8c94d87524c0eeaefa31bcefb8679103a1","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"10.2.4","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"21.5.0","dependencies":{"git-up":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_14.1.0_1721039534864_0.7329453889211384","host":"s3://npm-registry-packages"}},"15.0.0":{"name":"git-url-parse","version":"15.0.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@15.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"207b74d8eb888955b1aaf5dfc5f5778084fa9fa9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-15.0.0.tgz","fileCount":4,"integrity":"sha512-5reeBufLi+i4QD3ZFftcJs9jC26aULFLBU23FeKM/b1rI0K6ofIeAblmDVO7Ht22zTDE9+CkJ3ZVb0CgJmz3UQ==","signatures":[{"sig":"MEUCIQC8/YZ9K2NGFzd4p7zz1b6Qc93taDT3GKY7qdAyTgTMzwIgPukDSu3YVDeikNI14NL6qZFF4Ny4zqY7+1WThssQl7M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33988},"main":"lib/index.js","gitHead":"252b71647de31a0e42bf383ee0303a85decf1bed","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"10.2.4","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"21.5.0","dependencies":{"git-up":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_15.0.0_1724315913759_0.4437822699024758","host":"s3://npm-registry-packages"}},"16.0.0":{"name":"git-url-parse","version":"16.0.0","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@16.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"04dcc54197ad9aa2c92795b32be541d217c11f70","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-16.0.0.tgz","fileCount":4,"integrity":"sha512-Y8iAF0AmCaqXc6a5GYgPQW9ESbncNLOL+CeQAJRhmWUOmnPkKpBYeWYp4mFd3LA5j53CdGDdslzX12yEBVHQQg==","signatures":[{"sig":"MEYCIQDzYJZiP6bO5SB3LZGhm+1YkLq7dwwd4R+Z/81UTYGpdgIhAOycJEZwfAgHVWGfaNYw+l2Ic8Dxq2I2bALjumjqFXJa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34112},"main":"lib/index.js","gitHead":"fd344afd723ee61cf57b32d0d4f5c5e732a80efe","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"10.9.0","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"22.10.0","dependencies":{"git-up":"^8.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_16.0.0_1731837830566_0.2842208731421907","host":"s3://npm-registry-packages"}},"16.0.1":{"name":"git-url-parse","version":"16.0.1","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@16.0.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"8a2b15ceafd29342e42a3d056a771fb9007bf5ae","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-16.0.1.tgz","fileCount":4,"integrity":"sha512-mcD36GrhAzX5JVOsIO52qNpgRyFzYWRbU1VSRFCvJt1IJvqfvH427wWw/CFqkWvjVPtdG5VTx4MKUeC5GeFPDQ==","signatures":[{"sig":"MEQCIFUJAvLEF0WMo4PiM63ThvC7q3jkX9MCQkZE2NAq27mYAiBjsFjRDSi3IppwuoNz9RVS/SYfUvSluAfxc0dQYxZHzA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":34160},"main":"lib/index.js","gitHead":"d18a12c10204f42cb4feb1f90c0351cbe83637c2","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"10.9.2","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"23.6.0","dependencies":{"git-up":"^8.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_16.0.1_1739475862979_0.8761441848768399","host":"s3://npm-registry-packages-npm-production"}},"16.0.2":{"name":"git-url-parse","version":"16.0.2","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@16.0.2","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"27f3478d0c4ef46aeb31f9a6307dfbc9984556ae","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-16.0.2.tgz","fileCount":5,"integrity":"sha512-Q+G3aB2nqvnM30BS+fR/fLNOK79k03+ii/UIS33F0ScHVTLWV+OKc/Yl9w+8o6V2Hf1xfhaYldh1y0M6cFY1YQ==","signatures":[{"sig":"MEUCIDinpxF4a2YxJAp5LNYAelIOJTVvY8PxhKYpLKhfStVmAiEAvG9ZeTAzJgRSPJDpruxIeLr2wMNy47FrxjsEr8UJUac=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":35191},"main":"lib/index.js","types":"./lib/index.d.ts","gitHead":"36268a01a8905ac2af37a2f0b888a7c9af58f236","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"10.9.2","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"23.6.0","dependencies":{"git-up":"^8.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_16.0.2_1744633569169_0.12746221281458925","host":"s3://npm-registry-packages-npm-production"}},"16.0.3":{"name":"git-url-parse","version":"16.0.3","keywords":["parse","git","url"],"author":{"url":"https://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"git-url-parse@16.0.3","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/git-url-parse","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"dist":{"shasum":"be271cee93ae660fde45eca090fa123bf3f88e4e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-16.0.3.tgz","fileCount":5,"integrity":"sha512-g/G9eCpCKMMlCIUspMrOmVchyhQouJEGFS/5ngeYcVhBhHVm9drycdvyTtw2o9QP6oN6EXCn89SOJKrz+3jn6w==","signatures":[{"sig":"MEQCIA32yTQ39IlyTx/RU1XnCtWlAZiciHi/uTOg0MfhP/8UAiAw1nrwaW477E9yitIGtI/idIkLCx7/SGvNL/OQ4Uqs1Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":35239},"main":"lib/index.js","types":"./lib/index.d.ts","gitHead":"e7b008b71b892933b49e959fee2e5c3cbb3f18b2","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git","type":"git"},"_npmVersion":"10.9.2","description":"A high level git url parser for common git providers.","directories":{"test":"test","example":"example"},"_nodeVersion":"23.6.0","dependencies":{"git-up":"^8.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/git-url-parse_16.0.3_1744639931620_0.49691212041971644","host":"s3://npm-registry-packages-npm-production"}},"16.1.0":{"name":"git-url-parse","version":"16.1.0","description":"A high level git url parser for common git providers.","main":"lib/index.js","scripts":{"test":"node test"},"repository":{"type":"git","url":"git+ssh://git@github.com/IonicaBizau/git-url-parse.git"},"keywords":["parse","git","url"],"author":{"name":"Ionică Bizău","email":"bizauionica@gmail.com","url":"https://ionicabizau.net"},"license":"MIT","bugs":{"url":"https://github.com/IonicaBizau/git-url-parse/issues"},"homepage":"https://github.com/IonicaBizau/git-url-parse","blah":{"h_img":"http://i.imgur.com/HlfMsVf.png"},"directories":{"example":"example","test":"test"},"dependencies":{"git-up":"^8.1.0"},"devDependencies":{"tester":"^1.3.1"},"_id":"git-url-parse@16.1.0","gitHead":"87a5324fe86898a3eb8de850eee99eca09c3e7a4","types":"./lib/index.d.ts","_nodeVersion":"23.6.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-cPLz4HuK86wClEW7iDdeAKcCVlWXmrLpb2L+G9goW0Z1dtpNS6BXXSOckUTlJT/LDQViE1QZKstNORzHsLnobw==","shasum":"3bb6f378a2ba2903c4d8b1cdec004aa85a7ab66f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/git-url-parse/-/git-url-parse-16.1.0.tgz","fileCount":5,"unpackedSize":35273,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIA0FY4I6pK2Zt650OSGY8dO0eWNMaOIV6fWwQoHiVSSaAiAKZnpXYQQP7pravOnNg+as5KOusez8KoTT9dvNn/8f/Q=="}]},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/git-url-parse_16.1.0_1744700577993_0.5625420966849599"},"_hasShrinkwrap":false}},"name":"git-url-parse","time":{"created":"2015-06-14T06:58:51.758Z","modified":"2025-04-15T07:02:58.410Z","2.0.0":"2015-06-14T06:58:51.758Z","3.0.0":"2015-06-14T07:01:00.550Z","4.0.0":"2015-08-08T18:34:40.284Z","4.1.0":"2015-11-12T14:02:13.607Z","4.2.0":"2015-12-03T13:58:12.655Z","4.2.1":"2016-01-14T08:50:12.101Z","5.0.0":"2016-01-31T09:19:35.693Z","5.0.1":"2016-01-31T09:24:14.395Z","5.0.1-beta":"2016-02-21T08:56:40.866Z","6.0.0":"2016-02-21T09:08:15.765Z","6.0.1":"2016-02-21T09:15:07.471Z","6.0.2":"2016-04-26T04:56:44.768Z","6.0.3":"2016-05-25T09:49:12.215Z","6.0.4":"2016-06-20T08:08:12.940Z","6.0.5":"2016-06-20T08:10:08.055Z","6.0.6":"2016-10-10T18:39:23.827Z","6.0.7":"2016-10-11T13:35:10.077Z","6.1.0":"2016-11-01T18:13:47.511Z","6.1.1":"2016-12-28T19:36:17.401Z","6.2.0":"2017-01-07T16:35:27.623Z","6.2.1":"2017-03-20T17:23:52.083Z","6.2.2":"2017-03-23T15:23:52.428Z","7.0.0":"2017-06-14T14:00:07.139Z","7.0.1":"2017-09-08T11:00:41.091Z","7.0.2":"2017-12-24T20:20:56.254Z","7.1.0":"2018-01-26T03:41:54.730Z","7.2.0":"2018-01-26T04:26:29.773Z","8.0.0":"2018-01-26T04:38:21.994Z","8.0.1":"2018-01-28T07:15:40.318Z","8.1.0":"2018-02-08T01:47:41.644Z","8.2.0":"2018-03-14T08:53:25.661Z","8.3.0":"2018-04-03T12:09:55.386Z","8.3.1":"2018-04-03T15:38:19.028Z","9.0.0":"2018-04-12T18:53:53.358Z","9.0.1":"2018-05-28T21:22:35.265Z","10.0.1":"2018-07-16T03:29:47.294Z","10.1.0":"2018-10-15T20:15:33.430Z","11.0.0":"2018-10-28T17:08:12.111Z","11.0.1":"2018-10-28T17:43:48.971Z","11.1.0":"2018-11-06T21:26:00.800Z","11.1.1":"2018-11-06T21:30:46.788Z","11.1.2":"2019-01-03T16:47:11.693Z","11.1.3":"2020-08-09T12:06:10.634Z","11.2.0":"2020-09-04T11:53:44.133Z","11.3.0":"2020-09-30T08:37:08.741Z","11.4.0":"2020-10-22T19:17:06.640Z","11.4.1":"2020-12-15T06:24:18.927Z","11.4.3":"2020-12-15T06:40:04.771Z","11.4.4":"2021-01-27T07:43:21.491Z","11.5.0":"2021-06-29T09:15:34.122Z","11.6.0":"2021-09-06T09:45:06.973Z","12.0.0":"2022-06-27T13:11:39.868Z","13.0.0":"2022-08-30T13:56:38.233Z","13.1.0":"2022-09-16T07:03:09.220Z","13.1.1":"2023-10-19T09:26:10.819Z","14.0.0":"2024-01-02T09:43:47.416Z","14.1.0":"2024-07-15T10:32:15.020Z","15.0.0":"2024-08-22T08:38:33.887Z","16.0.0":"2024-11-17T10:03:50.730Z","16.0.1":"2025-02-13T19:44:23.196Z","16.0.2":"2025-04-14T12:26:09.355Z","16.0.3":"2025-04-14T14:12:11.843Z","16.1.0":"2025-04-15T07:02:58.203Z"},"readmeFilename":"README.md","homepage":"https://github.com/IonicaBizau/git-url-parse"}