{"maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"keywords":["ssh","url","check","parser"],"dist-tags":{"latest":"1.4.1"},"author":{"name":"Ionică Bizău","email":"bizauionica@gmail.com","url":"https://ionicabizau.net"},"description":"Check if an input value is a ssh url or not.","readme":"<!-- Please do not edit this file. Edit the `blah` field in the `package.json` instead. If in doubt, open an issue. -->\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n# is-ssh\n\n [![Support me on Patreon][badge_patreon]][patreon] [![Buy me a book][badge_amazon]][amazon] [![PayPal][badge_paypal_donate]][paypal-donations] [![Ask me anything](https://img.shields.io/badge/ask%20me-anything-1abc9c.svg)](https://github.com/IonicaBizau/ama) [![Version](https://img.shields.io/npm/v/is-ssh.svg)](https://www.npmjs.com/package/is-ssh) [![Downloads](https://img.shields.io/npm/dt/is-ssh.svg)](https://www.npmjs.com/package/is-ssh) [![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> Check if an input value is a ssh url or not.\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 is-ssh\n\n# Using yarn\nyarn add is-ssh\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 isSsh = require(\"is-ssh\");\n\n// Secure Shell Transport Protocol (SSH)\nconsole.log(isSsh(\"ssh://user@host.xz:port/path/to/repo.git/\"));\n// true\n\nconsole.log(isSsh(\"ssh://user@host.xz/path/to/repo.git/\"));\n// true\n\nconsole.log(isSsh(\"ssh://host.xz:port/path/to/repo.git/\"));\n// true\n\nconsole.log(isSsh(\"ssh://host.xz/path/to/repo.git/\"));\n// true\n\nconsole.log(isSsh(\"ssh://user@host.xz/path/to/repo.git/\"));\n// true\n\nconsole.log(isSsh(\"ssh://host.xz/path/to/repo.git/\"));\n// true\n\nconsole.log(isSsh(\"ssh://user@host.xz/~user/path/to/repo.git/\"));\n// true\n\nconsole.log(isSsh(\"ssh://host.xz/~user/path/to/repo.git/\"));\n// true\n\nconsole.log(isSsh(\"ssh://user@host.xz/~/path/to/repo.git\"));\n// true\n\nconsole.log(isSsh(\"ssh://host.xz/~/path/to/repo.git\"));\n// true\n\n\nconsole.log(isSsh(\"user@host.xz:/path/to/repo.git/\"));\n// true\n\nconsole.log(isSsh(\"user@host.xz:~user/path/to/repo.git/\"));\n// true\n\nconsole.log(isSsh(\"user@host.xz:path/to/repo.git\"));\n// true\n\n\nconsole.log(isSsh(\"host.xz:/path/to/repo.git/\"));\n// true\n\nconsole.log(isSsh(\"host.xz:path/to/repo.git\"));\n// true\n\nconsole.log(isSsh(\"host.xz:~user/path/to/repo.git/\"));\n// true\n\n\nconsole.log(isSsh(\"rsync://host.xz/path/to/repo.git/\"));\n// true\n\n\n// Git Transport Protocol\nconsole.log(isSsh(\"git://host.xz/path/to/repo.git/\"));\n// false\n\nconsole.log(isSsh(\"git://host.xz/~user/path/to/repo.git/\"));\n// false\n\n// HTTP/S Transport Protocol\nconsole.log(isSsh(\"http://host.xz/path/to/repo.git/\"));\n// false\n\nconsole.log(isSsh(\"https://host.xz/path/to/repo.git/\"));\n// false\n\nconsole.log(isSsh(\"http://host.xz:8000/path/to/repo.git/\"))\n// false\n\nconsole.log(isSsh(\"https://host.xz:8000/path/to/repo.git/\"))\n// false\n\n// Local (Filesystem) Transport Protocol\nconsole.log(isSsh(\"/path/to/repo.git/\"));\n// false\n\nconsole.log(isSsh(\"path/to/repo.git/\"));\n// false\n\nconsole.log(isSsh(\"~/path/to/repo.git\"));\n// false\n\nconsole.log(isSsh(\"file:///path/to/repo.git/\"));\n// false\n\nconsole.log(isSsh(\"file://~/path/to/repo.git/\"));\n// false\n```\n\n\n\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## :memo: Documentation\n\n\n### `isSsh(input)`\nChecks if an input value is a ssh url or not.\n\n#### Params\n\n- **String|Array** `input`: The input url or an array of protocols.\n\n#### Return\n- **Boolean** `true` if the input is a ssh url, `false` otherwise.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n## :yum: How to contribute\nHave an idea? Found a bug? See [how to contribute][contributing].\n\n\n## :sparkling_heart: Support my projects\nI open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously,\nthis takes time. You can integrate and use these projects in your applications *for free*! You can even change the source code and redistribute (even resell it).\n\nHowever, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:\n\n\n - Starring and sharing the projects you like :rocket:\n - [![Buy me a book][badge_amazon]][amazon]—I love books! I will remember you after years if you buy me one. :grin: :book:\n - [![PayPal][badge_paypal]][paypal-donations]—You can make one-time donations via PayPal. I'll probably buy a ~~coffee~~ tea. :tea:\n - [![Support me on Patreon][badge_patreon]][patreon]—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).\n - **Bitcoin**—You can send me bitcoins at this address (or scanning the code below): `1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6`\n\n    ![](https://i.imgur.com/z6OQI95.png)\n\n\nThanks! :heart:\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n## :dizzy: Where is this library used?\nIf you are using this library in one of your projects, add it in this list. :sparkles:\n\n - `@_nomtek/react-native-shimmer-animation`\n - `@aabelmann/ui-layer`\n - `@abhinavoneuipoc/stencil-test`\n - `@adatechnology/react-native-android-getnet-pos`\n - `@adembacaj/react-native-google-pay`\n - `@ali5049/react-native-buttons`\n - `@amirdiafi/react-native-ios-haptics`\n - `@amiruldev/wajs`\n - `@apardellass/react-native-audio-stream`\n - `@aruntestpayment/react-native-payu-payment`\n - `@aviinash_jha/react-native-test_multiply`\n - `@aysea/react-native-ui-library`\n - `@azalpacir/react-native-dhp-printer`\n - `@brantalikp/rn-resize`\n - `@buganto/client`\n - `@con-test/react-native-concent-common`\n - `@corelmax/react-native-my2c2p-sdk`\n - `@cs6/react-native-test-native-view-library`\n - `@damruravihara/react-native-testing-package`\n - `@drakedeatonuk/rschedule`\n - `@enkeledi/react-native-week-month-date-picker`\n - `@extrieve_technologies/quickcapture_react_native`\n - `@felipesimmi/react-native-datalogic-module`\n - `@flareapp/ignition-ui`\n - `@geeky-apo/react-native-advanced-clipboard`\n - `@happy-gastro/react-native-printer-module`\n - `@hawkingnetwork/react-native-tab-view`\n - `@hbglobal/react-native-actions-shortcuts`\n - `@hemith/react-native-tnk`\n - `@hieuquang2212/form`\n - `@idas1/ui-component-lib`\n - `@jfilipe-sparta/react-native-module_2`\n - `@kgit/readability`\n - `@kgit/readbility`\n - `@labiebhn_/react-native-multiplier`\n - `@lakutata/core`\n - `@lehuyaa/my-assets`\n - `@logisticinfotech/react-native-geocoding-reversegeocoding`\n - `@navabi/react-native-ssl-pinning`\n - `@oiti/rn-liveness2d`\n - `@orgbluetooth/react-native-arunpayupayment`\n - `@parallelnft/web3modal`\n - `@ponchodien/react-native-printer-imin`\n - `@positionex/position-sdk`\n - `@praella/localisationist`\n - `@react-18-pdf/root`\n - `@react-native-ui-design/button`\n - `@saad27/react-native-bottom-tab-tour`\n - `@safely-project/safely-ts`\n - `@sephriot/react-native-persistable-uri`\n - `@sidghimire/react-native-mapbox-navigation`\n - `@sridharetikala/react-native-rn-lib-custom-components`\n - `@status-im/react-native-transparent-video`\n - `@taingo97/react-native-awesome-module`\n - `@taingo97/react-native-bluetooth-xprinter`\n - `@taingo97/react-native-expo-key-rsa-kt`\n - `@taingo97/react-native-expo-rsa`\n - `@taingo97/react-native-generate-key-rsa`\n - `@taingo97/react-native-key-rsa`\n - `@taingo97/react-native-print-xprinter`\n - `@taingo97/react-native-printer-imin`\n - `@taingo97/react-native-rsa`\n - `@taingo97/react-native-rsa-expo`\n - `@taingo97/react-native-sunmi-printer`\n - `@taingo97/react-native-telpo-printer`\n - `@thinxviewx/core-rn`\n - `@tlgeo/react-native-gdal`\n - `@tomw2w/my-nuxt-layer`\n - `@wecraftapps/react-native-use-keyboard`\n - `@yplabs-ltd/react-native-detector`\n - `@zotasys/native`\n - `agent-get-agent`\n - `anakketiga`\n - `anaklanangtea`\n - `anakwadontea`\n - `angularvezba`\n - `archlibrary`\n - `arifbudixz`\n - `astra-ufo-sdk`\n - `awesome-module-kd`\n - `bb-git-up`\n - `bb-parse-url`\n - `biometric-st`\n - `birken-react-native-community-image-editor`\n - `candlelabssdk`\n - `checkbox-component`\n - `clonit`\n - `connex-kakilang`\n - `connex_ram00nez`\n - `demo-test-scrn`\n - `design-system-trial-milyasbpa`\n - `dogandev-simple-toast`\n - `expo-renavigate`\n - `fawaterak-online-payment`\n - `fawatrak-online-payment`\n - `fixed_form_builder`\n - `fluent.adflow.reactnativesdk`\n - `fluent.adflow.reactnativesdk-alpha`\n - `fmsl`\n - `framework_test_library_sixdee`\n - `framework_test_library_sixdee_new`\n - `framework_test_library_sixdee_new_new`\n - `gamification-integration-new`\n - `gaurav-react-native-loop`\n - `genz-native-elements`\n - `gerimismalamsenin`\n - `gh-monoproject-cli`\n - `git-up`\n - `hong1-utils`\n - `iiif-manifest-editor`\n - `install-is`\n - `jamuskalim`\n - `jesh-calculation`\n - `jnf-accesscontrol-rnttl`\n - `jordy-frijters-test-lib`\n - `jrennsoh88-react-native-scroll-indicator`\n - `khaled-salem-custom-components`\n - `knex-paginate-transaction`\n - `l2forlerna`\n - `luojia-cli-dev`\n - `mangudinlagirajin`\n - `markdownalint-cli2`\n - `miguelcostero-ng2-toasty`\n - `mili`\n - `native-apple-login`\n - `native-date-picker-module`\n - `native-google-login`\n - `native-kakao-login`\n - `native-modal-damage-vehicle`\n - `new-awesome-4321`\n - `nodegit-clone`\n - `normalize-ssh`\n - `npm_one_12_34_1_`\n - `npm_one_1_2_3`\n - `npm_one_2_2`\n - `npm_qwerty`\n - `nuxtpaginations`\n - `ori-bot-react-native`\n - `patepangdeui`\n - `payutesting`\n - `pileuleuyantea`\n - `pnm-yph-react-native-custom-components`\n - `project-wajs-dv`\n - `pyreswap-sdk`\n - `raact-native-arunramya151`\n - `reac-native-arun-ramya-test`\n - `react-native-adarsh_react_native_video_player`\n - `react-native-addition`\n - `react-native-android-native-view`\n - `react-native-android-video-player-view`\n - `react-native-android-view`\n - `react-native-animate-text`\n - `react-native-app-bubble`\n - `react-native-app-integrity-checksum`\n - `react-native-arps-authorize-net`\n - `react-native-arun-ramya-test`\n - `react-native-arunjeyam1987`\n - `react-native-arunmeena1987`\n - `react-native-arunramya151`\n - `react-native-auth-service-client`\n - `react-native-aventonfacetec-aventon`\n - `react-native-awesome-android-123`\n - `react-native-awesome-android-123-zeotap`\n - `react-native-awesome-module-dharmesh`\n - `react-native-awesome-module-latest`\n - `react-native-awesome-module-two`\n - `react-native-azure-communication-services`\n - `react-native-badge-control`\n - `react-native-basic-app`\n - `react-native-basic-screen`\n - `react-native-biometric-authenticate`\n - `react-native-bleccs-components`\n - `react-native-bluetooth-device-detect`\n - `react-native-bottom-tab-designs`\n - `react-native-bridge-package`\n - `react-native-bubble-chart`\n - `react-native-build-vesion-getter`\n - `react-native-check-component`\n - `react-native-chenaar`\n - `react-native-components-design`\n - `react-native-conekta-card-tokenizer`\n - `react-native-contact-list`\n - `react-native-cplus`\n - `react-native-create-video-thumbnail`\n - `react-native-ctp-odp`\n - `react-native-custom-image-carousel`\n - `react-native-custom-poccomponent`\n - `react-native-custom-poccomponent-next`\n - `react-native-custome-component-demo`\n - `react-native-datacapture-core`\n - `react-native-dff-components-demo`\n - `react-native-dhp-printer`\n - `react-native-dimensions-layout`\n - `react-native-dsphoto-module`\n - `react-native-dummy-view`\n - `react-native-escape`\n - `react-native-fedlight-dsm`\n - `react-native-flyy`\n - `react-native-geo-locator`\n - `react-native-get-countries`\n - `react-native-ghn-ekyc`\n - `react-native-innity-2`\n - `react-native-innity-remaster`\n - `react-native-input-library`\n - `react-native-is7`\n - `react-native-jsi-device-info`\n - `react-native-kakao-maps`\n - `react-native-klarify-ios`\n - `react-native-klarify-ui`\n - `react-native-klc`\n - `react-native-lazp-device-info`\n - `react-native-lib-test-rn-1`\n - `react-native-library-testing-422522`\n - `react-native-line-login-android`\n - `react-native-login-demo-test`\n - `react-native-lowlatency`\n - `react-native-loyalty-platforms`\n - `react-native-manh-test`\n - `react-native-manual-ios-sdk`\n - `react-native-modal-progress-bar`\n - `react-native-module-arge`\n - `react-native-module-for-testing`\n - `react-native-moosa-lib-for-test`\n - `react-native-multi-bluetooth-printer`\n - `react-native-multiplier-altroncoso`\n - `react-native-multiplier-component`\n - `react-native-multiplier-demo`\n - `react-native-multiplier2`\n - `react-native-multiply`\n - `react-native-multiply-component`\n - `react-native-multiselector`\n - `react-native-mun-kit`\n - `react-native-my-first-try-arun-ramya`\n - `react-native-native-audio-engine`\n - `react-native-native-ios-test1`\n - `react-native-nativewind`\n - `react-native-nghia-sharering`\n - `react-native-nice-learning`\n - `react-native-nyx-printer`\n - `react-native-offline-notice`\n - `react-native-onramp`\n - `react-native-otp-custom-library`\n - `react-native-paynow-generator`\n - `react-native-payu-payment`\n - `react-native-payu-payment-testing`\n - `react-native-plugpag-wrapper`\n - `react-native-progress-arrow`\n - `react-native-pulsator-native`\n - `react-native-rabbitmq-all`\n - `react-native-radio-bic-group-lib`\n - `react-native-reanimated-sortable-list`\n - `react-native-recent-framework-update`\n - `react-native-remote-update`\n - `react-native-responsive-helper`\n - `react-native-responsive-size`\n - `react-native-return-usb-data`\n - `react-native-rn-app`\n - `react-native-rn-common-components-example`\n - `react-native-rn-icons-library`\n - `react-native-rn-lib-custom-components`\n - `react-native-rn-tolkaplayer`\n - `react-native-rn-tolkaplayer-dharmesh`\n - `react-native-rom-components`\n - `react-native-rtn-ips-poslin-test`\n - `react-native-s-airlines`\n - `react-native-sandycomponent`\n - `react-native-savczuk-feature-library`\n - `react-native-sayhello-module`\n - `react-native-screen-idle-timer`\n - `react-native-scroll-tab-to-index`\n - `react-native-shared-gesture`\n - `react-native-sharing-intent`\n - `react-native-sherpa-onnx-offline-tts`\n - `react-native-simple-timeline`\n - `react-native-sp-test-common`\n - `react-native-sunmi-printer-hk`\n - `react-native-superapis-transbank-pos`\n - `react-native-syan-photo-picker`\n - `react-native-teads-sdk-module`\n - `react-native-tejab41097-sample-library`\n - `react-native-teknoctrl-components`\n - `react-native-test-comlibrary`\n - `react-native-test-module-hhh`\n - `react-native-test-multiplier-library`\n - `react-native-test-tooltip`\n - `react-native-test-view`\n - `react-native-ticker-tape`\n - `react-native-tilt-ble`\n - `react-native-tone-framework`\n - `react-native-tone-test`\n - `react-native-tones`\n - `react-native-transtracker-library`\n - `react-native-uart-connection`\n - `react-native-ui-components-library`\n - `react-native-uvc-camera-android`\n - `react-native-version-app`\n - `react-native-volume-phisical`\n - `react-native-withframework-check`\n - `react-native-wtf`\n - `react-native-xprinter-thermal-ble`\n - `react-native-ytximkit`\n - `reactnatively`\n - `reat-native-multiplierkpr`\n - `refinejs-repo`\n - `rn-adyen-dropin`\n - `rn-check-btn`\n - `rn-circular-chart`\n - `rn-counter-demo`\n - `rn-currency-formatter`\n - `rn-session-multiplier-demo`\n - `rn-tm-notify`\n - `rn_unique_device_id`\n - `rnttlock`\n - `scout-chatbot-widget`\n - `sedanbosok`\n - `semantic-release-gitmoji-action`\n - `smart_one_connect`\n - `tehmusimhujan`\n - `test-haptik-lib`\n - `test-library-123`\n - `test-zeo-collect`\n - `tools_may_24`\n - `vantiq-react`\n - `vision-camera-base64-resized`\n - `vision-camera-plugin-face-detector`\n - `vision-camera-plugin-scan-faces`\n - `wifi_configuration_package`\n - `winx-form-winx`\n - `xl-git-up`\n - `yangtao-js`\n - `yarn-react-hook-form`\n - `zzzxxxyyy321123`\n\n\n\n\n\n\n\n\n\n\n\n## :scroll: License\n\n[MIT][license] © [Ionică Bizău][website]\n\n\n\n\n\n\n[license]: /LICENSE\n[website]: https://ionicabizau.net\n[contributing]: /CONTRIBUTING.md\n[docs]: /DOCUMENTATION.md\n[badge_patreon]: https://ionicabizau.github.io/badges/patreon.svg\n[badge_amazon]: https://ionicabizau.github.io/badges/amazon.svg\n[badge_paypal]: https://ionicabizau.github.io/badges/paypal.svg\n[badge_paypal_donate]: https://ionicabizau.github.io/badges/paypal_donate.svg\n[patreon]: https://www.patreon.com/ionicabizau\n[amazon]: http://amzn.eu/hRo9sIZ\n[paypal-donations]: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RVXDDLKKLQRJW\n","repository":{"type":"git","url":"git+ssh://git@github.com/IonicaBizau/node-is-ssh.git"},"users":{"rocket0191":true},"bugs":{"url":"https://github.com/IonicaBizau/node-is-ssh/issues"},"license":"MIT","versions":{"1.0.0":{"name":"is-ssh","version":"1.0.0","keywords":["ssh","url","check","parser"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"KINDLY","_id":"is-ssh@1.0.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-is-ssh","bugs":{"url":"https://github.com/IonicaBizau/node-is-ssh/issues"},"dist":{"shasum":"eb69cf3d6e9d5979bd93caa6adc820c2008dd299","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/is-ssh/-/is-ssh-1.0.0.tgz","integrity":"sha512-/TDY9IaU1EwqQG9V5sjAZrcAzWpb5MTeinHYade85sF+w7v4mM8ht3J9vkzVuVPMFfqCMy0sZSOiOOcLpOe3yg==","signatures":[{"sig":"MEQCIF1mZMBXkum/kfWjPX3Nie2IcQ2Ys4lJaq6+awb6wzaMAiBX3Ps07PwO1hSR9bgtGJ7tuMHnhIIjFg71B2xCVdAx7w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"eb69cf3d6e9d5979bd93caa6adc820c2008dd299","gitHead":"c571b2ea56cf4d8a0eebbc7a5fbfbbc2a6faa818","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git@github.com:IonicaBizau/node-is-ssh.git","type":"git"},"_npmVersion":"1.4.28","description":"Check if an input value is a ssh url or not.","directories":{"test":"test","example":"example"},"dependencies":{"protocols":"^1.1.0"},"devDependencies":{"mocha":"^2.2.5"}},"1.1.0":{"name":"is-ssh","version":"1.1.0","keywords":["ssh","url","check","parser"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"KINDLY","_id":"is-ssh@1.1.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-is-ssh","bugs":{"url":"https://github.com/IonicaBizau/node-is-ssh/issues"},"dist":{"shasum":"58d13aed2ce7aa5a04165a3e91611b7a5ca91f9e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/is-ssh/-/is-ssh-1.1.0.tgz","integrity":"sha512-8UVGkMC8utqbTTsYv7AIaX+JcuJc5413Xw6I0/rwl3R5924C+TwKCTWG9CiUPDLJ0M4+RpehS+lbMJ/D+v/GyQ==","signatures":[{"sig":"MEUCIE3OZgBGt66l4Htth70ynGWRjVPM/T96jS3ij8BCYjLzAiEAxDW6tAVgoHBs862QujoOfu5PsugLYTOBPzIo8oPFm/U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"58d13aed2ce7aa5a04165a3e91611b7a5ca91f9e","gitHead":"3e62ac8f4cdfef988d7de740835121da355b70bc","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/node-is-ssh.git","type":"git"},"_npmVersion":"2.14.2","description":"Check if an input value is a ssh url or not.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"protocols":"^1.1.0"},"devDependencies":{"mocha":"^2.2.5"}},"1.2.0":{"name":"is-ssh","version":"1.2.0","keywords":["ssh","url","check","parser"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"is-ssh@1.2.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-is-ssh","bugs":{"url":"https://github.com/IonicaBizau/node-is-ssh/issues"},"dist":{"shasum":"3f4e8ead07e151f8db26980c25cfebb38a5e8ab2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/is-ssh/-/is-ssh-1.2.0.tgz","integrity":"sha512-P0x5Y3VkoJt1V3+52GjNWJQhv/HXo6kBf3vYAc55FZ0NknjxI+6VdsEehE0cWBPRfKjhYnB8LsFg2ovBGB1QNw==","signatures":[{"sig":"MEUCIFtab5ZvTkeAX4U5dCJ3ZQzmuxa+tE9/MmyybBTlhqR5AiEAyq4+PL/oZWJia/4+fYwixPaW9DOJhIjBqr0d5Wx/3DM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"3f4e8ead07e151f8db26980c25cfebb38a5e8ab2","gitHead":"61d2dcc40c4df20cb9de8c3fa89ea413f36e11d8","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/node-is-ssh.git","type":"git"},"_npmVersion":"2.14.2","description":"Check if an input value is a ssh url or not.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"protocols":"^1.1.0"},"devDependencies":{"mocha":"^2.2.5"}},"1.2.1":{"name":"is-ssh","version":"1.2.1","keywords":["ssh","url","check","parser"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"is-ssh@1.2.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-is-ssh","bugs":{"url":"https://github.com/IonicaBizau/node-is-ssh/issues"},"dist":{"shasum":"d50aba4c065a148de2f63f5e16b0b592fe6c7f3b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/is-ssh/-/is-ssh-1.2.1.tgz","integrity":"sha512-POdMJkQJD13qD9lzFv+Fh1jQYaL9nj6/+Jh8nV3Keh63Iaz84Exb3HYoVEX7qai9m5KmtFH2bzb4c01vY89eyg==","signatures":[{"sig":"MEQCIE2DtCXAAOrfpVdLsHQcAJPjED4Zv29tLIhMo10wBkLlAiBBpgZzTxI4hC6at+SbSfjPSsMxLZoXBpGR9nejbsQGiw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"d50aba4c065a148de2f63f5e16b0b592fe6c7f3b","gitHead":"97bb84d12910eaeaa9b034607c1c7eff5314c887","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/node-is-ssh.git","type":"git"},"_npmVersion":"2.14.2","description":"Check if an input value is a ssh url or not.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"protocols":"^1.1.0"},"devDependencies":{"mocha":"^2.2.5"}},"1.3.0":{"name":"is-ssh","version":"1.3.0","keywords":["ssh","url","check","parser"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"is-ssh@1.3.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-is-ssh","bugs":{"url":"https://github.com/IonicaBizau/node-is-ssh/issues"},"dist":{"shasum":"ebea1169a2614da392a63740366c3ce049d8dff6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/is-ssh/-/is-ssh-1.3.0.tgz","integrity":"sha512-mBkq8BKR7iYOGkZCh4QbNugakZl+sbNOJwqEl1iU6xzTcekQ4KOWzGOqBOX02nP3WqhRrE7yFcEhvxdlK2DU7g==","signatures":[{"sig":"MEUCIHBvNxZiBWs/4vRV15gwljOmeQsXxBv6PJ7PnjJYkYShAiEApyjq9gObDbHnHxpO6ao9jDWQuLWWG2fOgVTvuKe++gw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"ebea1169a2614da392a63740366c3ce049d8dff6","gitHead":"4d0e9b742fc3a4820d7b7c1e8c9003195913a345","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/node-is-ssh.git","type":"git"},"_npmVersion":"2.14.2","description":"Check if an input value is a ssh url or not.","directories":{"test":"test","example":"example"},"_nodeVersion":"4.0.0","dependencies":{"protocols":"^1.1.0"},"devDependencies":{"tester":"^1.3.1"}},"1.3.1":{"name":"is-ssh","version":"1.3.1","keywords":["ssh","url","check","parser"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"is-ssh@1.3.1","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-is-ssh","bugs":{"url":"https://github.com/IonicaBizau/node-is-ssh/issues"},"dist":{"shasum":"f349a8cadd24e65298037a522cf7520f2e81a0f3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/is-ssh/-/is-ssh-1.3.1.tgz","fileCount":8,"integrity":"sha512-0eRIASHZt1E68/ixClI8bp2YK2wmBPVWEismTs6M+M099jKgrzl/3E976zIbImSIob48N2/XGe9y7ZiYdImSlg==","signatures":[{"sig":"MEQCIHt61r/pBrUuLpBKrA5gdIWUeSYqn2oEQGPAXulBgAKCAiAp0+mxLs3/wmwymoz+G4sAJH/wmBn+2eq/lP+hV30nBA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15855,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLkMuCRA9TVsSAnZWagAA/aQP/1mL8vHC/KLXCjeQuYyR\n30uWDAQwnGNf0qz5qVpMMNUApJ0mzDGAN7kSphjODOt9M2gHasvLbQ3J872d\nUFR5bieGNUnNdNYLk21UjXc3zc4C5nLZKLlmC97zaH6BbXmjq50eFhs/qd12\nVBVLbIBXfLKFpUsmcegvf/PfP22toWd1g76xK/aH+Hk+qbsCAx/d13Z0t1Fy\ndyXspbmAumJR6dllkTDn3ku5zFKKC8PnJ2QqUG00Z9ouehUriTMQVcJ8qvWx\ndzh2kTPumxDhklZdt7xRWMLtydnOjw0BOoPpoZHRGKtJ1z1fB4/1JaYS2tF6\nG7xE7PQC1B9uNuF8/4PJezD70lVQmlLi8eYAuOi4h/TfrDVPu25jtU5CfV79\nOPELMhstp++VbygwV2Ofm7x2gfoTAToi2UdbMmOlQlcSIT18lXW/GF/C5bIj\nxl4ZrEPUlEcnCDIt8fKPxg6xN0KMNDSt8eaJid3dGbe1NURMJzgaXiV1XoXe\nuuELifqr3uEhpG6h5vqHzp/6cXR0yhS+3xCNR0oS9EXQpDjfNGtC8Tg+ataX\nr1b4SKcvjxdBfmDa1Kf8WUrtpkk1ieeYiTTuFnkg0e4jAaOPlYvRaF+gnh5c\nBNG8pMUS7svfrLLczyu/NZndhuhTAm+vnjC9DvBE1EK0jnCxY1l8ChtGwy/Z\nse5Z\r\n=E47J\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"09abffdd142c4f81274e8698d75e74d2079f7976","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/node-is-ssh.git","type":"git"},"_npmVersion":"6.4.1","description":"Check if an input value is a ssh url or not.","directories":{"test":"test","example":"example"},"_nodeVersion":"10.15.0","dependencies":{"protocols":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/is-ssh_1.3.1_1546535725509_0.6619978265060806","host":"s3://npm-registry-packages"}},"1.3.2":{"name":"is-ssh","version":"1.3.2","keywords":["ssh","url","check","parser"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"is-ssh@1.3.2","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-is-ssh","bugs":{"url":"https://github.com/IonicaBizau/node-is-ssh/issues"},"dist":{"shasum":"a4b82ab63d73976fd8263cceee27f99a88bdae2b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/is-ssh/-/is-ssh-1.3.2.tgz","fileCount":8,"integrity":"sha512-elEw0/0c2UscLrNG+OAorbP539E3rhliKPg+hDMWN9VwrDXfYK+4PBEykDPfxlYYtQvl84TascnQyobfQLHEhQ==","signatures":[{"sig":"MEUCIQCjGU+pd1KdGHOSTuTRI7BBCjCM6K7LgM9nf+E51xBhswIgfzxrlk7zulQgwPZRqO/th0nPPxAUkv6bfxRTBMwMdIc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15219,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfL+1RCRA9TVsSAnZWagAAKh0P/iTsbydb+vF1Y/soP8BD\nmLlNCpPIx0mByRkMHq+ctnG1pl3hEUN2nw2acmM+yWLXbhPUe9xi3Ay3H6AB\n4Fhum6NAgEcYOUBYsYmKM8mYMbSjTYrVuTMAm5BsCIGJdpmuQFNw5YFHGV00\nXCzt0dpzfsORsNW7SQtyVBgYj3r3HaKN+fjc7EM/qGRH0N8uCVXnDLUXm8nr\nr6dobKuHcMNq6JCmW/gUJqU9t2qDaAscotRe3iVUvFeq4dSKpH7eGqYnjTIi\nPxF/BpijbzpwEvMpGz0l3/BEIuXfb/hNrv8M1E5OYxjxaTy1Kc5QL2/L54Ft\nFg2yYDHfN2Dxqct2gIQ63Shyn32344LlISC/DMrJBreclNsh3FseT20XjXaD\nFpT6dRY6riCF+Z+qAj3KloZ0HBlnPzFhUsF3PGZA+gjmIMmhXTlBtaMVTaXO\ncTngYJMoEu2XDJJ269TVcBFklVI4nuWYTFK1nNKqj59rMjsMbt8WTkkdqemv\nvP9Xox55Jk68+xxMj3Yg3YXMvUkDgRUgie+chAuygvvAKcNqQ1XkOz9zcgqa\npypLJAigcslHWjRKo043TZats8jzCQf8pl6F3V/G2BZOKw9n1nz4oW/ZunG0\nOHO6CrCexo4fBxXxKWfh18RX+Qzvrz55CoXs+WHInt/mu0slUsg7ibCOrPlo\ndjj2\r\n=UHAO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"7818fcbd054d8c551c06d0cdcf2b07d039e2ccf6","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/node-is-ssh.git","type":"git"},"_npmVersion":"6.14.4","description":"Check if an input value is a ssh url or not.","directories":{"test":"test","example":"example"},"_nodeVersion":"12.16.3","dependencies":{"protocols":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/is-ssh_1.3.2_1596976464596_0.24050965513442257","host":"s3://npm-registry-packages"}},"1.3.3":{"name":"is-ssh","version":"1.3.3","keywords":["ssh","url","check","parser"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"is-ssh@1.3.3","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-is-ssh","bugs":{"url":"https://github.com/IonicaBizau/node-is-ssh/issues"},"dist":{"shasum":"7f133285ccd7f2c2c7fc897b771b53d95a2b2c7e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/is-ssh/-/is-ssh-1.3.3.tgz","fileCount":8,"integrity":"sha512-NKzJmQzJfEEma3w5cJNcUMxoXfDjz0Zj0eyCalHn2E6VOwlzjZo0yuO2fcBSf8zhFuVCL/82/r5gRcoi6aEPVQ==","signatures":[{"sig":"MEYCIQDlA0BkD+SzAZ0I8ytdIsRC8qJlctiATFNCTP3RlcwbFgIhAI++h0IsJvbGUwUEMWEVVNd9gI4xwrsWG8xTK0Pxju/U","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16245,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnhxkCRA9TVsSAnZWagAAtGoP/ijLsV+q2S/k+CDHaehl\nkp1WLa0kcm5Ll1bTlQ49KJaEhIcx97HL9Uaol1JlUG0pFNGKALEHCTrSzCYq\nDqLCz/E/0zvWQMb5gk2eOCQvIL6EWsbgGxjNLLGQRuWUcTcu0G0DaPY5q3IQ\n9xr9d/cnbON2rwwIizZNnL+GcuVV7KBWnK2GqERuW5JwVVsMAsX0t4GaZUNh\nXCdi1U+yqXDeFpPBlbakN9wecwahVD5hfXeuadJN3LZufzxkU9DuJeLTmnuo\nd+Uyqg4+ERL40GC4KoLeQ2rzrWsb0JH8Ftyi6Lr6PO0PbZMVCzm90EWQP3gN\nUMgvf7Z9uHk2iewOyuAJqWAjU0DDPNv2UR1RH25/hFfIDnzjHryKwJhe/Jib\nAAkIhFeqdFBkEV1EvkiOvJwjZHlx5jRqpyBEJi7qYXSbH+nczkKd2nGg9AOO\nBXuUjUsAb7uZibruvN1mK//98ThYKbvd4K08v7epCYlvSPuqpW3wd7z47arz\niffJxhqBIKCz/LrcLPvu7696C+5580iegqT/Nn9P9tnO+V/njx/TeuLUoZy9\ntqcYcscUYrQ2jIlhxH7WUq8FxQmx4WBmh+wA4hmBwM/smhHK0haoi48ixPnX\nje5lr1O738ffZFmoocFCRHujGPAt85RR4KK6ThiL3kxWEsyWO9OBR+L2duqK\naivW\r\n=Jklo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"eff1edd4a688566a0655dbfe3fc31a7096991a7e","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/node-is-ssh.git","type":"git"},"_npmVersion":"6.14.9","description":"Check if an input value is a ssh url or not.","directories":{"test":"test","example":"example"},"_nodeVersion":"14.15.3","dependencies":{"protocols":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/is-ssh_1.3.3_1620974692233_0.3179046565079653","host":"s3://npm-registry-packages"}},"1.4.0":{"name":"is-ssh","version":"1.4.0","keywords":["ssh","url","check","parser"],"author":{"url":"http://ionicabizau.net","name":"Ionică Bizău","email":"bizauionica@gmail.com"},"license":"MIT","_id":"is-ssh@1.4.0","maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"homepage":"https://github.com/IonicaBizau/node-is-ssh","bugs":{"url":"https://github.com/IonicaBizau/node-is-ssh/issues"},"dist":{"shasum":"4f8220601d2839d8fa624b3106f8e8884f01b8b2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/is-ssh/-/is-ssh-1.4.0.tgz","fileCount":8,"integrity":"sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==","signatures":[{"sig":"MEUCIQDb5zIn03J2pKdDDoGjSHWTwV9owztkH1zKgkheFK/MPwIgEVX3JkK/G/cXnQwQqtUGEOvQic1aIf5zChhfzwQ1XBI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17467,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiuXToACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqoYw/6ArbNrvhrD0v3tQPnOu8GTCFoHAGe44x4CfKd0OdhXOzlflxF\r\nsdzP5dea7UU4q+V+UDDDV3CYPcGCfpfn9r1RcteBirkilPhMvDKV9GBsupZA\r\nGvMrdCMRmw++G8ZPJpET3uONbFss4UwN2X385L0NCPL1FGc5Tuvun/IHwdI+\r\nTb01hcabZc+b/TBCXKg4DlYvHykkUtLhG1idxNONFQc54Xk56mNUfzaV64++\r\nrQIw/vwpvO3WXTDWa2Idd3jQbWO/8fi4YUXBoZBMXrei1sRQXAwJ9tmi4THq\r\nmcVaoLD7hNBt/M2FoTIsu5chDbxg0apnoNJuJ+fU4SMJ6OLVXyb6r2CPhvNU\r\n4D8gT0xn8C7vhv2RDcw7YR9asncmGtdNeUKsutF1vv9pIya911MTXmYoL78x\r\nVXo1jVQ9mA492A8NypuTnXZeaWZ7Bur1KQidR6chYVtlQXC/FvfjZi5yqytB\r\neiJBbwqmBQjpts8SV6VO4UOIrQ5omI1JMQnRHCMBgcI5JfLtz5m7Kv1tfz4F\r\nM1mGVf67AjsjFmEgd90S3GyhlEu6S36lkIoCeT1Ru5/CjrbICVHrJC230kgj\r\nrvTUjy33sM7h1lBuTCajo1uwcyeTqrmPQLJvp+4T7pZ1vRFnhc5W+lsunJK2\r\nwtJh7qAP4mBbppw60kbc90NlLSCQvW6m/5k=\r\n=1vH+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"aec94749b20e219165998dcfb1461df087f5d18f","scripts":{"test":"node test"},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"repository":{"url":"git+ssh://git@github.com/IonicaBizau/node-is-ssh.git","type":"git"},"_npmVersion":"8.1.2","description":"Check if an input value is a ssh url or not.","directories":{"test":"test","example":"example"},"_nodeVersion":"16.13.1","dependencies":{"protocols":"^2.0.1"},"_hasShrinkwrap":false,"devDependencies":{"tester":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/is-ssh_1.4.0_1656321256602_0.5244729876533736","host":"s3://npm-registry-packages"}},"1.4.1":{"name":"is-ssh","version":"1.4.1","description":"Check if an input value is a ssh url or not.","main":"lib/index.js","directories":{"example":"example","test":"test"},"scripts":{"test":"node test"},"repository":{"type":"git","url":"git+ssh://git@github.com/IonicaBizau/node-is-ssh.git"},"keywords":["ssh","url","check","parser"],"author":{"name":"Ionică Bizău","email":"bizauionica@gmail.com","url":"https://ionicabizau.net"},"license":"MIT","bugs":{"url":"https://github.com/IonicaBizau/node-is-ssh/issues"},"homepage":"https://github.com/IonicaBizau/node-is-ssh","dependencies":{"protocols":"^2.0.1"},"devDependencies":{"tester":"^1.3.1"},"_id":"is-ssh@1.4.1","gitHead":"e0d3814beb525370b3dadcec9d6a145c02deea74","_nodeVersion":"23.6.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==","shasum":"76de1cdbe8f92a8b905d1a172b6bc09704c20396","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/is-ssh/-/is-ssh-1.4.1.tgz","fileCount":4,"unpackedSize":19507,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIH+UdOzuoTNJDYhJ4Qz9ZvOQAvMzu0mTJaUdRutj4sqzAiBeTMA5R/RxjMfSBlF1Sfj50OwzErCUvAFaIm1cwwVpsg=="}]},"_npmUser":{"name":"anonymous","email":"bizauionica@gmail.com"},"maintainers":[{"name":"anonymous","email":"bizauionica@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/is-ssh_1.4.1_1739477813207_0.11552137425192566"},"_hasShrinkwrap":false}},"name":"is-ssh","time":{"created":"2015-08-06T07:07:00.323Z","modified":"2025-02-13T20:16:53.576Z","1.0.0":"2015-08-06T07:07:00.323Z","1.1.0":"2015-11-12T14:04:07.879Z","1.2.0":"2015-12-03T14:02:50.220Z","1.2.1":"2016-01-14T11:39:48.028Z","1.3.0":"2016-01-18T09:28:32.016Z","1.3.1":"2019-01-03T17:15:25.611Z","1.3.2":"2020-08-09T12:34:24.682Z","1.3.3":"2021-05-14T06:44:52.361Z","1.4.0":"2022-06-27T09:14:16.755Z","1.4.1":"2025-02-13T20:16:53.384Z"},"readmeFilename":"README.md","homepage":"https://github.com/IonicaBizau/node-is-ssh"}