{"maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"dist-tags":{"latest":"5.1.0"},"author":{"name":"Chen Yangjian","url":"https://www.cyj.me"},"description":"SSH config parser and stringifier","readme":"# SSH Config Parser & Stringifier\n\n[![NPM Downloads](https://img.shields.io/npm/dm/ssh-config.svg?style=flat)](https://www.npmjs.com/package/ssh-config)\n[![NPM Version](http://img.shields.io/npm/v/ssh-config.svg?style=flat)](https://www.npmjs.com/package/ssh-config)\n![JSR Version](https://img.shields.io/jsr/v/%40cyjake/ssh-config)\n[![Build Status](https://travis-ci.org/cyjake/ssh-config.svg)](https://travis-ci.org/cyjake/ssh-config)\n[![Deno CI](https://github.com/cyjake/ssh-config/actions/workflows/deno.yml/badge.svg)](https://github.com/cyjake/ssh-config/actions/workflows/deno.yml)\n[![Node CI](https://github.com/cyjake/ssh-config/actions/workflows/nodejs.yml/badge.svg)](https://github.com/cyjake/ssh-config/actions/workflows/nodejs.yml)\n[![codecov](https://codecov.io/gh/cyjake/ssh-config/branch/master/graph/badge.svg?token=RMyTgcL8Kg)](https://codecov.io/gh/cyjake/ssh-config)\n\n## Usage\n\n```js\nconst SSHConfig = require('ssh-config')\n\nconst config = SSHConfig.parse(`\n  IdentityFile ~/.ssh/id_rsa\n\n  Host tahoe\n    HostName tahoe.com\n\n  Host walden\n    HostName waldenlake.org\n\n  Host *\n    User keanu\n    ForwardAgent true\n`)\n\nexpect(config).to.eql(\n  [ { \"param\": \"IdentityFile\",\n      \"value\": \"~/.ssh/id_rsa\" },\n    { \"param\": \"Host\",\n      \"value\": \"tahoe\",\n      \"config\":\n        [ { \"param\": \"HostName\",\n            \"value\": \"tahoe.com\" } ] },\n    { \"param\": \"Host\",\n      \"value\": \"walden\",\n      \"config\":\n        [ { \"param\": \"HostName\",\n            \"value\": \"waldenlake.org\" } ] },\n    { \"param\": \"Host\",\n      \"value\": \"*\",\n      \"config\":\n        [ { \"param\": \"User\",\n            \"value\": \"keanu\" },\n          { \"param\": \"ForwardAgent\",\n            \"value\": \"true\" } ] } ]\n)\n\n// Change the HostName in the Host walden section\nconst section = config.find({ Host: 'walden' })\n\nfor (const line of section.config) {\n  if (line.param === 'HostName') {\n    line.value = 'waldenlake.org'\n    break\n  }\n}\n\n// The original whitespaces and comments are preserved.\nconsole.log(SSHConfig.stringify(config))\n// console.log(config.toString())\n```\n\n### Iterating over Sections\n\nOne needs to iterate over ssh configs mostly because of two reasons.\n\n- to `.find` the corresponding section and modify it, or\n- to `.compute` the ssh config about certain `Host`.\n\n\n### `.compute` Parameters by Host\n\nYou can use `config.compute` method to compute applied parameters of certain host.\n\n```js\nexpect(config.compute('walden')).to.eql({\n  IdentityFile: [\n    '~/.ssh/id_rsa'\n  ],\n  Host: 'walden',\n  HostName: 'waldenlake.org',\n  User: 'nil',\n  ForwardAgent: 'true'\n})\n```\n\n**NOTICE** According to [ssh_config(5)][ssh_config], the first obtained\nparameter value will be used. So we cannot override existing parameters. It is\nsuggested that the general settings shall be at the end of your config file.\n\nThe `IdentityFile` parameter always contain an array to make possible multiple\n`IdentityFile` settings to be able to coexist.\n\n#### Case-Insensitive Matching\n\nOpenSSH treats configuration directives case-insensitively. By default, `compute()`\npreserves the original case from the config file. To normalize directive names to\nlowercase (matching OpenSSH behavior), use the `ignoreCase` option:\n\n```js\nconst config = SSHConfig.parse(`\n  Host example\n    hOsTnaME 1.2.3.4\n    USER admin\n`)\n\n// Default - preserves original case\nconfig.compute('example')\n// => { hOsTnaME: '1.2.3.4', USER: 'admin' }\n\n// With ignoreCase - lowercase to match OpenSSH\nconfig.compute('example', { ignoreCase: true })\n// => { hostname: '1.2.3.4', user: 'admin' }\n```\n\n### `.find` sections by Host or Match\n\n**NOTICE**: This method is provided to find the corresponding section in the\nparsed config for config manipulation. It is NOT intended to compute config\nof certain Host. For latter case, use `.compute(host)` instead.\n\nTo ditch boilerplate codes like the for loop shown earlier, we can use the\n`.find(opts)` available in the parsed config object.\n\n```js\nconfig.find({ Host: 'example1' })\n// or the ES2015 Array.prototype.find\nconfig.find(line => line.param == 'Host' && line.value == 'example1')\n```\n\n### `.remove` sections by Host / Match or function\n\nTo remove sections, we can pass the section to `.remove(opts)`.\n\n```js\nconfig.remove({ Host: 'example1' })\n// or the ES2015 Array.prototype.find\nconfig.remove(line => line.param == 'Host' && line.value == 'example1')\n```\n\n### `.append` sections\n\nSince the parsed config is a sub class of Array, you can append new sections with methods like `.push` or `.concat`.\n\n```js\nconfig.push(...SSHConfig.parse(`\nHost ness\n  HostName lochness.com\n  User dinosaur\n`))\n\nexpect(config.find({ Host: '*' })).to.eql(\n  { \"param\": \"Host\",\n    \"value\": \"ness\",\n    \"config\":\n     [ { \"param\": \"HostName\",\n         \"value\": \"lochness.com\" } ] }\n)\n```\n\nIf the section to append is vanilla JSON, `.append` is what you need.\n\n```js\nconst config = new SSHConfig()\n\nconfig.append({\n  Host: 'ness',\n  HostName: 'lochness.com',\n  User: 'dinosaur'\n})\n\nSSHConfig.stringify(config)\n// =>\n// Host ness\n//   HostName lochness.com\n//   User dinosaur\n```\n\n### `.prepend` sections\n\nBut appending options to the end of the config isn't very effective if your config is organizated per the recommendations of ssh_config(5) that the generic options are at at the end of the config, such as:\n\n```\nHost ness\n  HostName lochness.com\n  User dinosaur\n\nIdentityFile ~/.ssh/id_rsa\n```\n\nThe config could get messy if you put new options after the line of `IdentityFile`. To work around this issue, it is recommended that `.prepend` should be used instead. For the example above, we can prepend new options at the beginning of the config:\n\n```js\nconfig.prepend({\n  Host: 'tahoe',\n  HostName 'tahoe.com',\n})\n```\n\nThe result would be:\n\n```\nHost tahoe\n  HostName tahoe.com\n\nHost ness\n  HostName lochness.com\n  User dinosaur\n\nIdentityFile ~/.ssh/id_rsa\n```\n\nIf there are generic options at the beginning of the config, and you'd like the prepended section put before the first existing section, please turn on the second argument of `.prepend`:\n\n```js\nconfig.prepend({\n  Host: 'tahoe',\n  HostName 'tahoe.com',\n}, true)\n```\n\nThe result would be like:\n\n```\nIdentityFile ~/.ssh/id_rsa\n\nHost tahoe\n  HostName tahoe.com\n\nHost ness\n  HostName lochness.com\n  User dinosaur\n```\n\n## References\n\n- [ssh_config(5)][ssh_config]\n- [ssh_config(5)][ssh_config_die]\n- [ssh_config(5) OpenBSD][ssh_config_openbsd]\n- http://en.wikibooks.org/wiki/OpenSSH/Client_Configuration_Files#.7E.2F.ssh.2Fconfig\n- http://stackoverflow.com/questions/10197559/ssh-configuration-override-the-default-username\n\n\n[ssh_config]: https://www.freebsd.org/cgi/man.cgi?query=ssh_config&sektion=5\n[ssh_config_die]: http://linux.die.net/man/5/ssh_config\n[ssh_config_openbsd]: http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man5/ssh_config.5?query=ssh_config&arch=i386\n","repository":{"type":"git","url":"git+ssh://git@github.com/cyjake/ssh-config.git"},"bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"license":"MIT","versions":{"0.1.0":{"name":"ssh-config","version":"0.1.0","author":{"name":"dotnil","email":"jakeplus@gmail.com"},"_id":"ssh-config@0.1.0","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/dotnil/ssh-config","bugs":{"url":"https://github.com/dotnil/ssh-config/issues"},"dist":{"shasum":"23c2b7f0e8977a07667726c824fe6eb6e78c156f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-0.1.0.tgz","integrity":"sha512-XkQ+sJTF/540/JmOwPzBWJ7HT6kkN2cjrGumKfPiVmC4yabUZ8z6GA48n6NFWOWJbqjED1gkeSQyecj0rBCqGg==","signatures":[{"sig":"MEUCIQDC4/e4QKKjCFgq4TcnkmtVOeAQYcLqze+TWsv1votnjgIgfxepSPDOMAVmssd6q3lJXkKr4CK0TnmDOBnEJZ36ywA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"23c2b7f0e8977a07667726c824fe6eb6e78c156f","gitHead":"aa75c1e2cdb8526e900fa296536325dd4c1d8698","scripts":{"test":"mocha test/**/*.js"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git@github.com:dotnil/ssh-config.git","type":"git"},"_npmVersion":"1.4.23","description":"SSH config parser and stringifier","directories":{},"devDependencies":{"mocha":"~2.1.0","expect.js":"~0.3.1"}},"0.2.0":{"name":"ssh-config","version":"0.2.0","author":{"name":"dotnil","email":"jakeplus@gmail.com"},"license":"MIT","_id":"ssh-config@0.2.0","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/dotnil/ssh-config","bugs":{"url":"https://github.com/dotnil/ssh-config/issues"},"dist":{"shasum":"9d617b2121365670cbda48ea13da4ebd001e0deb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-0.2.0.tgz","integrity":"sha512-/Ybe5Q5Ne8V+oyHUbTtvHe7vJttGtzRwMB31VOFAPOJY5UySJqr6JF5BJimQlmAdzFYmj56d/GIHjnuwIJ3N2Q==","signatures":[{"sig":"MEUCIQDkpQWokksm4hAhlOu7c8wpzhVV+tiZIwHrPOg6KZKJTwIgW+Z5P8XSUM0OgrzBF4P3WZMqjcZMQ4fWHOId0RmbYhE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"9d617b2121365670cbda48ea13da4ebd001e0deb","gitHead":"e911f4e3c60ba30c4c0d9f226df40da25541f07c","scripts":{"test":"mocha test/**/*.js","cover":"istanbul cover _mocha -- test/test.*.js -R spec"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git@github.com:dotnil/ssh-config.git","type":"git"},"_npmVersion":"2.7.4","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"0.12.2","devDependencies":{"mocha":"~2.1.0","heredoc":"~1.3.1","istanbul":"^0.3.17","expect.js":"~0.3.1"}},"0.2.1":{"name":"ssh-config","version":"0.2.1","author":{"name":"dotnil","email":"jakeplus@gmail.com"},"license":"MIT","_id":"ssh-config@0.2.1","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/dotnil/ssh-config","bugs":{"url":"https://github.com/dotnil/ssh-config/issues"},"dist":{"shasum":"6caa5257db7302c3f1dc4c9ffac0f0b7c0fdcfad","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-0.2.1.tgz","integrity":"sha512-erDFgRYIMLsu4oz2VYAtSn2x579qkpMk6DQa3nbpIJS0M9htyzR63Ugn2lVJ6DBeHMketZmvueEXu80CyVKo+A==","signatures":[{"sig":"MEUCIQCbu9DM+t1aMvrxQ8P/3BYZrnunhx/xjeS54dYZVEbvdAIgM4bDk+10txardzavcJ4gCYYPAMiTW4aOkrju2VFwMK8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"6caa5257db7302c3f1dc4c9ffac0f0b7c0fdcfad","gitHead":"141ecfd45a0666e3898d8b8f172e1bbade3bc852","scripts":{"test":"mocha test/**/*.js","cover":"istanbul cover _mocha -- test/test.*.js -R spec"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git@github.com:dotnil/ssh-config.git","type":"git"},"_npmVersion":"2.11.3","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"0.12.7","devDependencies":{"mocha":"~2.1.0","heredoc":"~1.3.1","istanbul":"^0.3.17","expect.js":"~0.3.1"}},"1.0.0":{"name":"ssh-config","version":"1.0.0","author":{"name":"dotnil","email":"jakeplus@gmail.com"},"license":"MIT","_id":"ssh-config@1.0.0","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/dotnil/ssh-config#readme","bugs":{"url":"https://github.com/dotnil/ssh-config/issues"},"dist":{"shasum":"00a3dfa86d1d148755203c02b1d4b52bbe9be8c6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-1.0.0.tgz","integrity":"sha512-QMVrwG9dNRoxVHL8VVPRTrVgEjDodnVdNDpOu6zcp2sFB6W4NjsCGVrFET7qL5vU5kvcXPMp8ENHESVeF41vgg==","signatures":[{"sig":"MEYCIQC/zD2DS1S1zOnr44ij8/0yv4jtzB8x1KKCKVkm0UsnYgIhAJpQczC8R7POoox8WAZXCYSUlr0iVPvDKd5fYIv26ZQH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","engine":{"node":">= 4.0.0"},"_shasum":"00a3dfa86d1d148755203c02b1d4b52bbe9be8c6","gitHead":"6e0e29027617980bbf00d18ef27f8298cc5cc140","scripts":{"test":"mocha test/**/*.js","cover":"istanbul cover _mocha -- test/test.*.js -R spec"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/dotnil/ssh-config.git","type":"git"},"_npmVersion":"2.15.1","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"4.4.3","devDependencies":{"mocha":"~2.1.0","heredoc":"~1.3.1","istanbul":"^0.3.17","expect.js":"~0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config-1.0.0.tgz_1462434058413_0.9828964697662741","host":"packages-16-east.internal.npmjs.com"}},"1.0.1":{"name":"ssh-config","version":"1.0.1","author":{"name":"dotnil","email":"jakeplus@gmail.com"},"license":"MIT","_id":"ssh-config@1.0.1","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/dotnil/ssh-config#readme","bugs":{"url":"https://github.com/dotnil/ssh-config/issues"},"dist":{"shasum":"38742116dced7d45f5362ca86af77130ccbebc8b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-1.0.1.tgz","integrity":"sha512-x48+2tuhd6t+KyZPCNOlmv6RN7smffdCr0kbv1tJm0EH8uqZHWUgu6jhiv0dRpdMd1uqeGCvjS5z6AOL7A+yFQ==","signatures":[{"sig":"MEUCIDcZQeodB3p7kI6oVVO/4jR1eDuJEON5zFGti0F4P2rOAiEAw/SfCZOSnKc3CEdepPw5tvKorcN92Xn1AxEFoClTeCY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","engine":{"node":">= 4.0.0"},"_shasum":"38742116dced7d45f5362ca86af77130ccbebc8b","gitHead":"d8b250b4987c70d7480f019475430300c1c0ad7e","scripts":{"test":"mocha test/**/*.js","cover":"istanbul cover _mocha -- test/test.*.js -R spec"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/dotnil/ssh-config.git","type":"git"},"_npmVersion":"3.10.8","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"6.9.1","devDependencies":{"mocha":"~2.1.0","heredoc":"~1.3.1","istanbul":"^0.3.17","expect.js":"~0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config-1.0.1.tgz_1486369840388_0.8063528868369758","host":"packages-18-east.internal.npmjs.com"}},"1.1.0":{"name":"ssh-config","version":"1.1.0","author":{"name":"dotnil","email":"jakeplus@gmail.com"},"license":"MIT","_id":"ssh-config@1.1.0","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/dotnil/ssh-config#readme","bugs":{"url":"https://github.com/dotnil/ssh-config/issues"},"dist":{"shasum":"bbc7f92204a385b5dececec8f8b63be9c125079b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-1.1.0.tgz","integrity":"sha512-sOOKWMMjgi0palcneB8wt8G9B7xPnefaVsfG3WNsVL6XyU9bn4xvi3I2L0IwkVRXrlOon3YPlZz6dEz6tIMo2A==","signatures":[{"sig":"MEUCIQDUEmpU24P0FoOfjDJ/ms5jeZASGzjkVWNR70UNvRXKRQIgalmUKPBaEvpWQaWHGdW/6zAEJHqDPibEf8vFZS51dGY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","engine":{"node":">= 6.0.0"},"_shasum":"bbc7f92204a385b5dececec8f8b63be9c125079b","gitHead":"a529618c18794d2765bbf54d9f21eb3bf52c25c5","scripts":{"test":"mocha test/**/*.js","cover":"istanbul cover _mocha -- test/test.*.js -R spec"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/dotnil/ssh-config.git","type":"git"},"_npmVersion":"3.10.10","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"6.9.5","devDependencies":{"mocha":"^3.5.0","heredoc":"^1.3.1","istanbul":"^0.4.5","expect.js":"^0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config-1.1.0.tgz_1504751244543_0.6355244000442326","host":"s3://npm-registry-packages"}},"1.1.1":{"name":"ssh-config","version":"1.1.1","author":{"name":"dotnil","email":"jakeplus@gmail.com"},"license":"MIT","_id":"ssh-config@1.1.1","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/dotnil/ssh-config#readme","bugs":{"url":"https://github.com/dotnil/ssh-config/issues"},"dist":{"shasum":"fee0d7b50cbd04d7726085e32f26c81dab8e6acb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-1.1.1.tgz","integrity":"sha512-ZKqLWbqUrMRFZPL6TAXWbRhY6yG64xh18OzfhOyOpJYrMVq4S0WTxGcer4KRf1c1vFKOc+4kO0bXzgpZsS6kyA==","signatures":[{"sig":"MEUCIQDdkpQtTDhkpgl+mRBOSrsC+7S9vO+pn4X4iipk86wjGAIgUBo4bJlB6Kg9rwtSpYoG2c0e3j5hph0qIQ1tX9N1Vec=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"engine":{"node":">= 6.0.0"},"gitHead":"1d61f65086b3ae1feae9206d4b6080ae854ee491","scripts":{"test":"mocha test/**/*.js","cover":"istanbul cover _mocha -- test/test.*.js -R spec"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/dotnil/ssh-config.git","type":"git"},"_npmVersion":"5.3.0","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"8.4.0","devDependencies":{"mocha":"^3.5.0","heredoc":"^1.3.1","istanbul":"^0.4.5","expect.js":"^0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config-1.1.1.tgz_1505271380183_0.5128075242973864","host":"s3://npm-registry-packages"}},"1.1.2":{"name":"ssh-config","version":"1.1.2","author":{"name":"dotnil","email":"jakeplus@gmail.com"},"license":"MIT","_id":"ssh-config@1.1.2","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/dotnil/ssh-config#readme","bugs":{"url":"https://github.com/dotnil/ssh-config/issues"},"dist":{"shasum":"ae65590f276b8e259ec814551f7667c141f817e9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-1.1.2.tgz","integrity":"sha512-/fX1bDPo1DHHGhBAl6yIAsMHLzyAgRyLzMqd0BG4DN6WUQhVsbuMiL0moYUi3Z4mdr8RffQRJhlAaN1EuHaW7A==","signatures":[{"sig":"MEUCIB6eWwuOGK1eFLulFbDMgHAPeY6/qIIX+AzO5o5ycRKpAiEAge2o2gnpSEf28g0dqfIgM24ewcgt7Z9OLFbZZgabP50=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","engine":{"node":">= 6.0.0"},"_shasum":"ae65590f276b8e259ec814551f7667c141f817e9","gitHead":"7cbbaa6c46e442501853f26da824623195a0fa42","scripts":{"test":"mocha test/**/*.js","cover":"istanbul cover _mocha -- test/test.*.js -R spec"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/dotnil/ssh-config.git","type":"git"},"_npmVersion":"3.10.10","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"6.11.3","devDependencies":{"mocha":"^3.5.0","heredoc":"^1.3.1","istanbul":"^0.4.5","expect.js":"^0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config-1.1.2.tgz_1506077787226_0.3079284504055977","host":"s3://npm-registry-packages"}},"1.1.3":{"name":"ssh-config","version":"1.1.3","author":{"name":"dotnil","email":"jakeplus@gmail.com"},"license":"MIT","_id":"ssh-config@1.1.3","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/dotnil/ssh-config#readme","bugs":{"url":"https://github.com/dotnil/ssh-config/issues"},"dist":{"shasum":"2b19630af85b1666688b9d68f6e4218900f81f8c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-1.1.3.tgz","integrity":"sha512-mj24GZsBRuzfu4uGqhWvCf1hWowL1IRgVicHPfZGZIqtC5Sh/E+567Qi5GqQNAaLMP9Oszm0mE5jIT2Iye8g3Q==","signatures":[{"sig":"MEYCIQCG+ieC0YVQaKtRJa2Uur+kLI6keolKcZF3Fibe+AA/pwIhAJR96xvRdcT9uop/p9WAwHANmrH/pXtNKoha5sTBJlX3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","engine":{"node":">= 6.0.0"},"_shasum":"2b19630af85b1666688b9d68f6e4218900f81f8c","gitHead":"fae217eef0575f503559dc71d1fafec43b9091a7","scripts":{"test":"mocha test/**/*.js","cover":"istanbul cover _mocha -- test/test.*.js -R spec"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/dotnil/ssh-config.git","type":"git"},"_npmVersion":"3.10.10","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"6.11.3","devDependencies":{"mocha":"^3.5.0","heredoc":"^1.3.1","istanbul":"^0.4.5","expect.js":"^0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config-1.1.3.tgz_1506310336823_0.9356912262737751","host":"s3://npm-registry-packages"}},"1.1.5":{"name":"ssh-config","version":"1.1.5","author":{"name":"dotnil","email":"jakeplus@gmail.com"},"license":"MIT","_id":"ssh-config@1.1.5","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/dotnil/ssh-config#readme","bugs":{"url":"https://github.com/dotnil/ssh-config/issues"},"dist":{"shasum":"a2d398c611a65c60d101e5b0f976c01f4739a28e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-1.1.5.tgz","fileCount":6,"integrity":"sha512-j3Yo++WWfc+2eFrSFclQZ79RRyMF2BOkDLboaUxyysYNomrLjIoOWanFbulHH5fLErRuW8YrO31p7MKpI4XrZw==","signatures":[{"sig":"MEUCIG+3vBOcD82UvCPyT4pNr+5S/r8VDaT2SBaeogtgxbhFAiEA/qiQ1R0t5Jb5ZgoRWv7+wVOOUol9kH7NqYrtYTlnkU0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14999,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCL9KCRA9TVsSAnZWagAAWO0QAKMO/yrFzbIEQ4xdXCFc\nrcrounbcihe+Wi2MUDRJbzXIrK4lUxNxviGkGA0rs0el6tGYgQYUP6fahcQ0\n33OQ+OnkMKFhbYkiHnInTjYQZt6yZhNRiQC5c/CJA3ujNel1y41ePT0zKcSv\nH2+gV+GT4LutIBg9SJH5hAiXr8iktko17uabujX5t9Df3k6WgX9lGWR4YQiX\nMqaKVLKEjUzSBA/XouOP3AWKeBusxxVXa818iXSbULOE3ZqyOJUGQRdYNsx6\nuWtyZwJehrlNN/4x67I5sAAzWraU3qNbiDXtfI8fYAopvs0FkMCGol3XjU30\nLW4RtfiOq0AoHad2mJelfVxy8kCggy+5WwWYfixniGJsS9wD/UpkbFj2Y62B\niTePANSfU+RosEivxS6M4Ny6wqR1TXQOLt7vRyav/FZW/NsvjMWw7cI7TFJX\nd81pEd+4/BPUAPsUQuX/padPu3b8tgKdjrJpkirqVl6oFLWkUmyBe+VpE74x\nfkRdy+NHfz3m8Dbp93BfjJahmmJKqnjM7LI1wozH6MHXYhm0NtZ5fI7GUxlg\n99eEDPLLzMy2RXOl0PEz4HqGf28yyoypplelr22c+wvRtvoSYK98HkueMp6p\nAMDwu9fqdWN4j1z2+3BWm/zLcmUJlVVuecB3DKLcBn+TNz07ioJD+WtPxt52\n7apB\r\n=wigT\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 6.0.0"},"gitHead":"87f476b48c9235e120a886ed31a5f6c79ca80651","scripts":{"test":"mocha --exit","coveralls":"nyc mocha --exit && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/dotnil/ssh-config.git","type":"git"},"_npmVersion":"6.4.1","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"10.13.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","mocha":"^5.2.0","heredoc":"^1.3.1","expect.js":"^0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_1.1.5_1544077130041_0.5754712052467734","host":"s3://npm-registry-packages"}},"1.1.6":{"name":"ssh-config","version":"1.1.6","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@1.1.6","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"c6ce2d7f85f395178c9e47c448d62b8adf9b2523","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-1.1.6.tgz","fileCount":6,"integrity":"sha512-ZPO9rECxzs5JIQ6G/2EfL1I9ho/BVZkx9HRKn8+0af7QgwAmumQ7XBFP1ggMyPMo+/tUbmv0HFdv4qifdO/9JA==","signatures":[{"sig":"MEUCIQCDnKE411UMXyTHfqudalU9e2pyjM3rb6qPaVWoQLh+2QIgHGgP7nBHkpMceRlzWBbyAwV90Nd8XQbe7+SJgBTMOmQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15152,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcpCHtCRA9TVsSAnZWagAAohgP/0Iax7UvMwhIhVlb084w\novHlHkV34Cn8MXDWb+j57LxUbk8SiO3Viog3/A4INVv4+V/PDIrv+9FDWxSp\n07XwqLPqwarl3Ur4DiuuoOxo0i2k5eXDKpDv4oWNkSq56WU8IRxAyRfYHkOQ\neoBtIMulraVUKndmBAV4Li9zcj/UvtDCSqjLSjoZRFkKnhs6HTAxzh0Jue4t\nHBcs93oDifpUP7gJJqatLJ0qWQBWlSAdvRS18eqwMgQgp57a3vpuIlASGkyp\n69b2c+t2Lc378w/VHuMwUedpmmhyr+zMwW5bV6ypBpACARCXPPZof1xZ/VtX\nz27iXiKsBNbt995jovhOhDgK2SqRXKtoEyYoGAmRCiwICZeIHqL2JRaKmRMr\nn/GPwjEeBOT2IvRiuaUAPPMbjSoYV9XqTbEPEqJ0oBqa1WOi6QrU15mjjtyA\ntP9yhqS1uH6HgoPIHodAX3gziCQJfryzN0OmV5Cm+9Q9QNBmcaBj6NPJnTY9\nHWOMPcG4pEIvu4ZKI+1hKvu5gptrJ0VVztQVildvqnvqMYZLj0mcxz6OZuW3\njCVWSf/o5IJ0uK+u6V2tPkyubm7QebQ/WTqlkVUc+w59U3YoMAEi28MTXABj\nt9gSH6ZXEuUEbUZ6MYDsakyN5IXnZYS3Zjtmf6BQnWgBHGHYcQwyx8xo14Ne\nn3fv\r\n=1psS\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 6.0.0"},"gitHead":"0a452ea5eecd231d4c671d138fcdea7df81c1325","scripts":{"test":"mocha --exit","coveralls":"nyc mocha --exit && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.4.1","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"10.13.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","mocha":"^5.2.0","heredoc":"^1.3.1","expect.js":"^0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_1.1.6_1554260460750_0.10717610885090156","host":"s3://npm-registry-packages"}},"2.0.0-alpha.1":{"name":"ssh-config","version":"2.0.0-alpha.1","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@2.0.0-alpha.1","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"f90c94fb58244b12b6674da2fde82de1c474d223","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-2.0.0-alpha.1.tgz","fileCount":6,"integrity":"sha512-tCa66ET4j0f2OgHO3ckIg584RIoV/+Zj+rmDO1E6AgtbW+zLP5Gslix/sEhvU3RyB5Mc3jBc3AbdzLNU6rT6lA==","signatures":[{"sig":"MEQCIEuZ6vMs7zNU6K+9ku2u5kauQuq81g6bT6jFEPHBBlYFAiBxt7IURNde6cNdUfcqyn0IX+rfkXk0iphPZXU3wuGsSA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16895,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/ntvCRA9TVsSAnZWagAAeu0P/03kSLjif7E4c9JkZsMo\nJcZyOm5AsbsT38ImxgHTQgnCjzCx1wbbGji92jjF5QW0YvMtO+hjE0ExKPuO\n/KGPFgjzyHoT5REjlCdIbJdK0XLZr/2mQ5eB1a1I80DrvS/YE3dDSfchKgIG\ntf2/BYIYxB5kwPj6PE8YtFPDgT7NnQg8XxBeEufBUPMXuikWBub1U5fDBbpK\nvj70P/hpi2l7MWfusPkNyHppqFtYpUKKXfGDAeWM05vibc2GVJBF+Q+mKO2b\nxwyiYV3zFip4/QY1/OXTzoavjb+XA0skhZxzFGu2MoZh7NiKpM6IRUB4xpNj\n7+lZkO7tBC5von6fk5+MojN74Cj7wwYyWX2h6OonQ+gwJsFo7J2Gdrhm6MKF\nwyAN2zr/D1kJWAnNt8Xh0BYKfTZejpFfDoRgWD/LghtHI49EFcSCHuXfVImC\n7LZ1GcMWVqUUT1/QZf8BwSp9+7r9gi7OU9dGCgobRjfC9icOXVuVUWMXDcE7\nD2JAveTAIuw+KhiU/OtJrCB/+IPo/pXPYCS/BWDvli2YfTo/2xN8P2slRBfQ\nR/JMjczsZCE+zPQpm7OueTkTbrO4DxggH0YF2lS4LT0HpsNwZupJAXdKRPHh\n9t4M8xCP07ZnrYQQn5X0SgUl36HSbqigc71Ru2VzYaFX0mmsjh3ky1d+6iaj\na07S\r\n=qLyS\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 6.0.0"},"gitHead":"c5729f8dfea091ea10ce4866e7965dba47e4a191","scripts":{"test":"mocha --exit","coveralls":"nyc mocha --exit && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.4.1","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"10.13.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","mocha":"^5.2.0","heredoc":"^1.3.1","expect.js":"^0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_2.0.0-alpha.1_1560181614277_0.7966289520736076","host":"s3://npm-registry-packages"}},"2.0.0-alpha.2":{"name":"ssh-config","version":"2.0.0-alpha.2","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@2.0.0-alpha.2","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"f6c8a62c8d2aa2698e3a1bac04300780be4404bf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-2.0.0-alpha.2.tgz","fileCount":6,"integrity":"sha512-qq2GMi36MPO6aJw3W2XCWjDMrrPG+B/gR//9QzjZ5JroCEnYk6GUx0gFTGPnSIYnlzRqfZmdT0vmJw0uQHfVlQ==","signatures":[{"sig":"MEQCIH1gDD3KpvYHaEfNfwzZepblpw19Mb2bPrD1wo5g6HG0AiBLeYSOuo0LX7rv2eK7DwxwoSlBkIpMLHwGKNOl5f6x4Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17534,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdAGMICRA9TVsSAnZWagAAlLkP/0vF/13i6itcuZ9B6s/W\nFpTzgjQP/7jqDol3DNmzpNHEAq5zFu6zDJI7DOJRsEgCdwEWToS5QAjZENCT\nd3zD95JVlFo5PQcR6ODiEhB84zmuXu4zyBeC5VnN0UKMii+cRsZCi71z0v1r\neI0I4pGh5AmtsaWXBwwo+xlsVlPaaM1jgkpj2/xDpdHcnuMPUWRJ+A9IndYM\nSQMQ0zt++CBR+clWkAGWKWN9n45ZqO2I6yabAVtukKaRzto1wBhqoZb8IibV\nCzzccle78RGyvqNp2TiqUpyDk7TwDKAFVdXzOdKDVnpO09zs4kcvVGHlon4H\n3x0jl18cr++rRtmpWHll6QAMKSwIgCt2PNGJPmWZ/161PnMM9tKLy6CeXVnF\nJ62bXZPKcxLXOTM3vg1I2m+H2V5vNF73vha7k7/MlywwDhprPqeKsuG2Ca5c\nm46C16EMndqxMxaABxQRywg8/E5EpiJvBsm/QX2wmrcznZrSDuRcDllhTFWm\n42oOwNraaOK7XD4ubM2uvZ6xnNG5Y9wzZ7N31b3UzMhWMCwAb7Xcb3l3qk88\nKxoNbxcOBx6NRyudWQOuQvX5ZnY87i/x+AdVmZEmC54BjE99qgjoqhvMIXyE\npRnO6DoM48P+/cz7tzmKWzHbGdFPX1+6jxYslg2l+/ia/sFyrrwiTid9ROlB\nkFKt\r\n=bHnK\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 6.0.0"},"gitHead":"f727649e9bbe56598cbfa5d71407b15ba9661b08","scripts":{"test":"mocha --exit","coveralls":"nyc mocha --exit && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.4.1","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"10.13.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","mocha":"^5.2.0","heredoc":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_2.0.0-alpha.2_1560306440047_0.6020717978329184","host":"s3://npm-registry-packages"}},"2.0.0-alpha.3":{"name":"ssh-config","version":"2.0.0-alpha.3","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@2.0.0-alpha.3","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"c174df6e42b16e4e5ece731d655f2af7181f2bf4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-2.0.0-alpha.3.tgz","fileCount":6,"integrity":"sha512-7Hgynvg/mkOb8clmYp4/BZUmWw4bfjkZiafg8clSQkQYviOE8X5DnIcOIDK90qY4O76MdhYKT2CPdAxZkev4FA==","signatures":[{"sig":"MEUCIQDQdSCOPxfautf/abSLLdRyt9NHhysXTA/29u0leplFrwIgRirHJSSvd0ywKBrup/ViErRrcecCDNha9SdNF8KboxI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17713,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCaFkCRA9TVsSAnZWagAA1pwP/2/7/pdH2lm0J/51DeV7\n3P2QwkFpQT7jgcBVnm6wayODIhSjf0Mp51iGF1xR7mYtAC/R5/nZjvpOrtw3\nlJYVIxRNjUK88ETT4e7fOS1Anvs6svSMiKtKeqJteYbGz1pbmpYrxsmjPFZQ\nXJHn6ZFOYp3BzmcorHE4iPLJfcyTOAuHHiZftP9G4XPDIpg1Xli2vHo2fHeI\n1QoV1DxzklAZnWyIF5mJfSHzP+0mmCwSydMLXCyRiUnfdqi0ADU1OZjlMnJN\nCzUNi1Z8u1odVQAs2r80lXWfeCBmcFOp0whNAQynznemPz06tY1K51yetFeu\nz/403ZBIBQpH8qG2I0LrSyW1D8l67DLOhgoOMYSXtYsB7iV2eHmIqtBp/KGQ\nbtAgDrAUdMwsqxvbL3LrYxk+gSWPLlyMGBWIWHcAeOXRfCM8tYA5xJmkA3fi\nnAzhxNCrA2JMiZpXxFqB+dOZ/TK7RGVf7clW4qj/mWkucHsqu4as0tgDnoAV\nQ/ldOq/4iX7aKsTuUAT4PNArnqUpnG9N4RwsPfczD1V7QumrTa+0G+4jLCiS\nXqX2pt8hPW1Aiz+2e0nn/8ADeLwec0UcwPn6MHiVraN6Yhbtyo2t8NF6lE3p\nTYyWiqtdb2X8Iywpgfs1fAoB2J4C5KRkZ2jm2ZxGr7tXsinXWv+CEB9lgml0\nN3uy\r\n=q3wi\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 6.0.0"},"gitHead":"7797652d5d857305b0e9a85472126e8fee0310b5","scripts":{"test":"mocha --exit","coveralls":"nyc mocha --exit && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.4.1","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"10.13.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","mocha":"^5.2.0","heredoc":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_2.0.0-alpha.3_1560912227595_0.4801495081012579","host":"s3://npm-registry-packages"}},"2.0.0-beta.1":{"name":"ssh-config","version":"2.0.0-beta.1","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@2.0.0-beta.1","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"7e16dd777b31eef717540ea179bc00c1c310f972","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-2.0.0-beta.1.tgz","fileCount":6,"integrity":"sha512-+jkJDdd/aQ2+ALS5VBpcRtH37EIfiAzKF9dqghGDkCgw03MnCyIrmCDmtyptu/UyS44dweXie6u3a0o4nuq87Q==","signatures":[{"sig":"MEYCIQDdk9+MA3wwFu7jDR93vIXyc24YpNEDRpMV0Ae06fK7TAIhAPAKKOjUdMLjDjWhICSGybaDc8lHNW/1MDohRNTX4ghw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17798,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdL+1oCRA9TVsSAnZWagAAwdoQAJ6ZaaN9PqAdcsyECkuE\n/8yGBY8NGv7D4TtnPUBMsDLbtTZGpi9tzA12FLUuAAbZEwWXyFJRO86+0Mhw\nMV9BhZjhVKI5o9p03runlrugipJdYr08gYaHlH8el+lAebar9hlbioof/iMn\nw77VgEgFG+YZ86Xf9HlloerItnFPfHOrqive2W2yW4fpisj+sYdLpJQtJvSf\nuNEWvqRcDpSfGs5Oh+HI0cAhbcJt6ZBtRlb6LAV8Y76KefhSRl0Td8KCYRE+\nJC2597FRnCDHDudn7+hcUzYrBzZ8QetE6YCee1S5UzYPmLMAvsXZaOlhWIMw\nxKnLvpzf5a5Knz/9fjzxqhc1cPiR9rGjDFXm9Z5MuNEMPR5jY760EyibkZ7K\nkxDWN9hPWpMvI+eJIxzzWO/wPAB9mlgMeSOXsYNbRneHNaBLqDFasFQu3Gxz\n4OkjvcWOPVdciKgjdCzFlOJI3ECelG7+wzlf/MAe7gjpz96NUvsI1u7B1Wox\nDfN1HHATqdwb0YSz0EDQVJfQGvs6kM0e5XWYcUtz1HcmOBxvP7gBKrC4IGde\nL/NtogGzlnTBy8lCvzgNOrUtkC/+kNBsDGsGSeKUcwPNhEqGSZP4V938ddk6\nZrLy5aMQLrcjihhOAREADhdv3dLAdV8RkWaaH4e4SbVxkgBf/0YN90clzMR6\nbBzb\r\n=pC/t\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 6.0.0"},"gitHead":"c6436bc99300caa21b4e751a2c382050e6ac80a8","scripts":{"test":"mocha --exit","coveralls":"nyc mocha --exit && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.4.1","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"10.13.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","mocha":"^5.2.0","heredoc":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_2.0.0-beta.1_1563422055694_0.7715441201771984","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"ssh-config","version":"2.0.0","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@2.0.0","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"84ed978ca0e56939a44e851117a6c5181256df94","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-2.0.0.tgz","fileCount":6,"integrity":"sha512-yjsjUa33gtB0UoQj0FKqfEMf+KABs/l21Lf/vslT7hkbnK05d5Dm8vApg/dHAn4WMq/pwLjP/N3ep408WspSBQ==","signatures":[{"sig":"MEUCIHPJoPBQFRSfhUP+qiEb6JPZKBQsbSe/WEAqkjT7CE3bAiEAyqwfrCw6hfZS22mPXnJDJQArj5VT0eLurrSAVIFYF04=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17826,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdm/GzCRA9TVsSAnZWagAAR+oQAI4AJbWNKaMojwCCPykN\nP/DlZVWzcht1bydIRoknx6vWlnOwCFRMIZ3fcSP302yP4yRdHyZgN/Z02fnp\nwOcFC12C/SRYJypzbdDNX5QIA4s5c9xVZiOmNrGN7QvYyil7bjBG3fknLxRK\neeBeuGrSzI66cqeu+3SOE4yMpwm36pgGJFott1CH/NKUoPtoPjD2pAfZEORZ\nu30K/tSGXva2UyEa4mYP8jD0ZaAZK6Tb7A4ZdxEvbKMd8YtB5Cd74VV2yhlD\nOBbwSPL9GDspR1K4mj3lKdCLtSCHsh90F2bsnMwP96PFBXU2pRfQhe1yBdx5\niLolJCrUmE20CFnA2/J6ranXJrTCmSnNH+n1j4IouBZBVmjV3/LPtoIMgxio\nrLSUmjT+O8YmnCUn3I7sBm68Dt8soqLw469hs6Jj5CoRmf6rm6ilEYUvCvtc\nghuGKOGSQRoUaPjBb4ryw/R86xd5G5XwqbI7ubyNqWcCUqgaPLPJ+AV9YWS/\ntPtP7byQRpoI7f2zgqQIDbfT/dH9EOUBkYvvVf9KEwPt1Uhg1OuttMs0zkw5\n1Shle4lM2NQVNLIj1qycdrdKeeX/vHJoTp5rgR+b18g5GpTUEa1fuSQ6DZu7\nw7okpIWSumz05Ye9Czb8PeS+9QQQHlJoRNjB8U+XtMUybE6OdQImQO1D9RDd\npFGK\r\n=N84y\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 6.0.0"},"gitHead":"af4f614278cbc01ec0eed2c4f4c5df559dfe98d2","scripts":{"test":"mocha --exit","coveralls":"nyc mocha --exit && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.4.1","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"10.13.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","mocha":"^5.2.0","heredoc":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_2.0.0_1570501042632_0.7781384936604834","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"ssh-config","version":"3.0.0","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@3.0.0","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"58229d93e6905ef5f5ca7d2b755d8df9281a6d11","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-3.0.0.tgz","fileCount":6,"integrity":"sha512-5YuwWm2AtForpbZjlVdy6igtyPgMTumhDnbzQfkN8rzTgMB2kGihllkwHoro7tFgXd66Fc1gh1FBI+TYp2iFBw==","signatures":[{"sig":"MEQCIGXfnvxzUBU+QTu6u/gCZ4e1VWefSTxLFkmqBbb1I+VCAiBuC+oeq51b0y6i7pL5qbgpxVKQOSAs2STKNvYIUSEPIg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18018,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd818kCRA9TVsSAnZWagAAbAEQAI51wOBmlX/30W57Rqee\nWffnAQ/6zEbXKVKum4RhBb+/mV4r5Ay2jSsY8Ff4a2OrxXikyA7mY0V6Szpl\nHlhdiRHmmQIwIGvJtPCPonA/MBTZQbTZNxV0m2Qn0cb1wHAuHlVc8CK7AN89\nL0setVAjCyZLpejP6a0FRMf7TlaEqSdqp8l2dYLodWZFHmlRuajJ3FISD6LK\nnl+UekOEsMFxJUUL3SQSnC3oTOs0xlys+Stjk0BkdQMAqHxis9IeUP6sfZTA\nFEWa8wSPDTH1OD5RAsC5D1M2Zqo2pkgXIHRp4ahe2Rp+Op7g2RnyCTX/E5oa\nkTpGtdS2EOHoHFdO+OGtpcrxKGLUQmrJcALVU6rhp5B1PTpi1+hoSgh/NKNH\n7vPX7iV9j2YvDK0/L5pz2lRAQJVVJlWe1RtwsmoP4qo48+A22TOYdY5UnoJp\nN/y9xMn/UW4BETkiT+PJmced/h5eRJvOgecCCWdB+RF0zjNwzLBDTCneRx+/\ndQ43emmp28HJ2LyOGOewTWbytdr7S87+2zY/uYavKhQeMz8s1QkdM5O54zZS\nz8LbYeLjyZ4mmApHbtihM+m8ihZJuJvibqQOeUKkrgP/u2BwEc5B8xVFQ6oe\no64YSh00U9sHnSR2vMB07lR6cqZWuYDQCsk3rnMeZEk/yzMEcA7Kv/1z4/7j\nw5Fp\r\n=MuA6\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 6.0.0"},"gitHead":"0f1db65355b9c629e9dc60d8d2cc429e5576fd73","scripts":{"test":"mocha --exit","coveralls":"nyc mocha --exit && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.12.1","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"12.13.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","mocha":"^5.2.0","heredoc":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_3.0.0_1576230692225_0.3485983565294333","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"ssh-config","version":"3.0.1","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@3.0.1","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"094599769e3f05194e50893c8df0ea38b0c55acd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-3.0.1.tgz","fileCount":6,"integrity":"sha512-uDxFWDtEXyp5wQqP4BNduScD5psgrCaXMBAAb6nJlniOcdxIoYIUAs1MukBo3nqkKkaJa2Fg6irpuZ/BiykRVA==","signatures":[{"sig":"MEQCIHLrWUBcbk3jC96H1SRoV9kEVCk6UYFIiTFceUA2UtyqAiBUS6m6L7857bxWRlrljazMO/PTf0GEm+MrHzi8QeMgqw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18114,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeFFmgCRA9TVsSAnZWagAAm1UP/2L3vzZH9949QRHZXltz\n/bfTTFeZ2u/T1tB3afOF3XEpWWlP4p1pfPyqaxbxF3HO/CqUugIDRoJsgqqN\nR7NwQFQXebi8HGVbh7bZeK0ARvAq0wiDkECD3y6sa3SXe1BQMFpdFwxXZ8E+\nzI2d4em2oBamkoXdSmJ0i215m39bUH+feyEqe3jPRL/sJ2hFC8tZ20QoEyeH\n9d9wbAQb7ijh+1OfiQPOuFj1MYp/++d+78zCDlRKtxdJNAGuAmKYmUdqFLsF\nF/m32kxcV3Gm524tFifHDqCerYcf9Dokea4TTYpwi8NxiVMhDSgG5W0dNWOH\nwS19vttSo6gGKZEAc7jHtkmrytXkwmFctRVn1f2LiNJc7zhxMdUbjB9wnWrF\nNU1ETbEgzi8arqMpBk2X4kKxdEf52Bkrx+oMsLT88ces1QU/qpMzP86Mzo7E\nuN9Gvd5BWT8klXqBi6+FK/rdkXRil2rGHHXuEezpYFGATR4gvYH4RbxYQG78\nEZ9Y5Jh8a4Pq+hEdgRPkiGWiE35dQBbEGqCoEQxlYIfHz1S5jwbUxtJV1CX9\ndp3adRnrZpEAx/IypvMpbWpyu9KxBwkAIIZ1auXZrmTQv7FzUtxsaF0Q7SoL\nlUCMdBdZqbnzPi7CyJoLZBY8a6w4doslN/LVOozq7AQDRemDEz+6HlixSXyF\nOJ2z\r\n=EwYj\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 6.0.0"},"gitHead":"f7c4107ec1fe2f7d1315897674f21dbe74b5f837","scripts":{"test":"mocha --exit","coveralls":"nyc mocha --exit && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.12.1","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"12.13.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","mocha":"^5.2.0","heredoc":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_3.0.1_1578391968070_0.7705070969096572","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"ssh-config","version":"4.0.0","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.0.0","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"c24d46c48d96d02dedce81ff0be50953f6bdd916","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.0.0.tgz","fileCount":6,"integrity":"sha512-ekh7Atfyd3uUdeaFXIWH8r8iLs8iWaH5Fe3MnKUqrZVIywui9sj3/lKkc5buo9soUmoD9g1bXoYZcl4ny6wDmw==","signatures":[{"sig":"MEYCIQDQyIIVehip6r7qjQU//o0DGVSiC+etqgnjs/vdEPB05AIhAN+241xodsDH5hq3PqEYMqtdvHC19p/ISI8EEsZ+C5+b","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18404,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeFoWtCRA9TVsSAnZWagAA+o0P/iOfomFI4RPavWAdwgwy\nA4KLlZlvInifDj1Bec+aY7Ax+L0a9MKc0SjWpYcSqRvlqBZXlaXdxPowM+BR\n/OPj6M4d3H6z7znhW9deDcCR7BA25tZ/APOmGYDKTnkIk8eR1sGQH/scwJOo\n56wwXMKQw3IHa7ns8menU/KIn0rGKh8rQ+c+kcRYRn9whGqnWVEuMq0lksIA\nA5wHaSWrtgPN/Ykxsi6tOmHPJiXpH/ymI9YdBNhYRvn3yOghILaV+GnFFzSi\nDphD9IDA1xZAiAHO6Br7Uef98kO6hrd5clkj7L/+VgLDhnaTIOn2zxSwvBoG\nTI4lewdjJJKFLwPWgYIj8wQo0Pk97SdJWvN1tDlU6sJLhQsWembxKBWto9TX\nbc0fB5vlbOwrDR3o79IroK1pKK9WaRqQ05EDyste5I9z2Sper7nFZj0tyf64\nphrb17HVQnjdG1wCYd8rtMf1G1bOb1n80G/gE/JxHtj7omc57dg8E14Xegd4\n0U/xq0T5Zm5NBJb2Ix6N2+w2jaX7YFARsi0ws7Jmlo6dup8QymR7z2XSvrSW\nlITOwPstlFD5VS/oaAwz7VUxCE7e9cCti0RAFCCHQEomb86V2iRvPh7MV5O7\nC+af5zrFmCAYdS6d/QytejsMIiC6pM+t/UJSNFlB4E7E0Wb4LcCPP3yVdk4q\nbJa8\r\n=Av/7\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 6.0.0"},"gitHead":"22f37d1b1ce6524798137153723cc4b1153f6adb","scripts":{"test":"mocha --exit","coveralls":"nyc mocha --exit && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.12.1","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"12.13.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","mocha":"^5.2.0","heredoc":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.0.0_1578534316708_0.589982833334417","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"ssh-config","version":"4.0.1","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.0.1","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"301c239c6277b6bbcb2fd33b5deef6adbc2e4a91","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.0.1.tgz","fileCount":6,"integrity":"sha512-JvwJN1Jb0Wuifw31b6gjM+MRJRkhTzg3JjuNNW7Mu1o1GokfQRCwTrB681Y4+tb1ghn+4P6E2HdVnv6+2LZc/w==","signatures":[{"sig":"MEUCIG1CM1crf5AxnEMJKdxT5xRwHKHcRHsN+xKsXHz5m+FNAiEAr0BervqY7/GlJLQ9y5PuMaQ7VyJv9VNPMZTBSaHXQMA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18503,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeNXlXCRA9TVsSAnZWagAA7YgP/3zGaWvcycZtzoxkRP3x\nMOTibRmEOLqC3IXh2H2qzKAuBndKK2OTKLi8qqnnQMIHQ0O2uvxravbTbqxn\na+LvQh3a8rZLjM5USHZKHrhSxOJPBfQyo4YUvaeLKC9Sv97L0XULdjbGsjpD\nKxF9osJ+WlY/LGQ5bY7kJP9Y5RzhHiqsVQO4j+09+GeV+IqnyX0337JoIxcJ\nvwEMDvUri2NSpfWCw5qO9oyrGbFpL59uYjSOzmrKRPik/aQO3fdks83Gbgwg\n3R+RLDouT11c7kmjWsUInjB9p3gosjT9hlzDQaJYwd5sHiqh5d7GHpbMRVui\nx9sWNPAmV1gwseDw80QkflQBAcO2fuLyQNhBQifcPHYgrLsE3Plt+UETcfUI\nijCJB08xtnSYTlCru4vBDEomMQZJFPKTW7T1BFANBmOnlkupI6lxeM1EiGIX\nl5Pjs5O0NC/CoBP8iYDeyRp8IyaYjcBvHZhK+8PcsQLI9rqYVDC84dQGqng0\nlaZxgVm/ce9e9KSzX0lVlJyR1G4RAjSyrqU1TXgguqQ8mAagLa+VAUiKRZCf\nPz0d4ozSLJd+KLdQ/YQj+hl/afA7bPBMIokQ38bEVOtwTPWa/QIyv91vNAI1\nHnIzj0lZER/CbvwnEPH3mK/Ng9GKo8UulY5SuQge1Bcuhcdk3dOmjW9x+Ibm\nTRUN\r\n=es9T\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 6.0.0"},"gitHead":"726bf1180d661c4d1ffc5aad05dbee9d636c106c","scripts":{"test":"mocha --exit","coveralls":"nyc mocha --exit && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.13.4","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"12.14.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","mocha":"^5.2.0","heredoc":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.0.1_1580562774882_0.10411249106866749","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"ssh-config","version":"4.0.2","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.0.2","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"91e76fdc8804ace117df268881913eadbf5156c1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.0.2.tgz","fileCount":6,"integrity":"sha512-FdQqtQeQE2ilcYDRF0+J0QU1xmAIKtrco6WUqzn5RBYoPinH0K9Lpim2eYReX19M5MLKPZmR/LOiWTFI/RsbDw==","signatures":[{"sig":"MEYCIQCjdZgXLRHVgvcLY2SYUDA9GwD4LXQY8Nj0jTBadU4DfgIhAMDMN8WqBzhbLFhtWvNew2ZhInKRN/gGpJ0R45ddhzN+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18761,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeQCa9CRA9TVsSAnZWagAADgcP/2wYNNVNFFg41t/4ccWI\nXQUK3l9NXCVqUuGATmT4MxhkNY6Gh3hH9f0+B0h6SNTSVZ+LJDt2qeVULVcK\nHW60POUop1IchiZxpzanmcXS/4Wh2MEsSSjRkinOSwyEMHfi6UMTz6kikd6i\n6IoGjLxfSVd2YYQQlG8weun1r7m0BxmcJ/prUooh9pordPDqlQKt6j1YYZb5\nNOiur6tqsckZpwegnFEc9Ib7nOmJ1psqP4vq/iXo0fwd7fPJYEAiKficEjGx\n+gu/t3I93qfb0jA0OPz9z0mcVoiG7i7Ja4RBHexttk4WYFERA7gsTCRHi9A5\nqo6alo5x5OECHKKaXNc8ZyUbflxu8quDt/WLW3hNht8eYRPq5hlVSnozrcMa\n4q9P1EzOTpaFz1tzjgaaFnFTsgImBAxCe5RS73/46BLqA/Ovuh7zGNxrljoJ\nWPUDVv5H2pznog3BYnTdLSqshQE0z67VcjaN5SiY5zq5KReuiHH842/ombKf\nlXkplqS+G0NHnKB2hjfaH9OBnrOPz+ZLISlsUYamMDGTEyFHrD0eu70paAkm\nRieFNukOulwWooOJxISyWjCc7qPKlmrAAIIBMHX42vsiu7Ae+vt1sBhGRbFf\nLnnpvJgE4qzxuP4nATqIn3cmsRu7BRDgfucPkSUL4+yGprBXI86FQnRpn/1W\nzW/D\r\n=hNfD\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 6.0.0"},"gitHead":"0310bead75bac1adba9a213f4652dd483622844a","scripts":{"test":"mocha --exit","coveralls":"nyc mocha --exit && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.13.4","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"12.15.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","mocha":"^5.2.0","heredoc":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.0.2_1581262524580_0.5151828895046273","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"ssh-config","version":"4.0.3","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.0.3","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"b40da9ee0a09a6e338c5c66474aced35fe59893b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.0.3.tgz","fileCount":6,"integrity":"sha512-zrc3I4iMpfIdo0ccJCi2ldI9zNheClGZrTAalv43T2Be8fsDYtet7eo46dExjqmAsIj+nlDOsEcEYsKFIqGYxA==","signatures":[{"sig":"MEQCIH/GxOJ2PfeYefohZRdftNmOqLcrkF6GY7rCqj+dYcNTAiA/rJyBLPpdzGk1QVvjdNSXlPFCBhvwEWhLTYyNesVsvA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18948,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfQ3VvCRA9TVsSAnZWagAASzwP/0i6RNSL8skv3n4F9g4z\nv2fB1wu1vbMk7v1dLE07GezGDYRuMggGxFwV4yOEb29UZiF6TTaZ/K/0XDp0\n9BEZ/s1TZCy/eOI0qQOmBuQGm0irRpKNixZYUZCsDV7RMDS+FAFpRNbC5axc\nToHc8/wC/1lVANxh7lyO6lDQeJMDqB7fcViwOAZh7lNqktWgLZ6VHBIHTQts\nDpGURQgfnPFH7SNmAKdkvtcfmIIkjImZ/UHKYuqll+gCgs9OUq3V4ZTOzVzS\nVGTNIi8oqpgwHm7LdNj34wwiKVOVByyfO2mkO23cEYDf9/TK2aaViUN7/Ye/\nn56YA66oGnYLz4nRnCuhP03AC8/G7e/hlkZpq2nnDuCYDQMhbSRCxY35C/K4\n64O++sblDK8zw/zF8m2S8FmX8aaY6sROZgQ6lfq78JhY+xYwJ5j6XB2FxBJk\n2FcIjhNWnyASECMnqt+rzghiOLWWlpQ2Qq3ZGTAJ+cZdHcUdOa76pilq7NuG\ng0Z6Q5Fy5+dnO8u51XIlP5/1mpqrBJvwroq91DOincHcac3pGhHO/DfejBdd\na0Xmy0165ZZFHzrS4G6G775Py7kIRCP0a0WWKbb+y/cpi/IqfCv2z5iirElr\n/Fb1U/vw81qSGRIKqdeLgfvt2uLajha7g5YTGjFIwDcAhqbNfqi/Dr2mXzIJ\nhsSb\r\n=kVNp\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 6.0.0"},"gitHead":"d23d44c2d7bb40a2d169f1c164fbe0b7294774c7","scripts":{"test":"mocha --exit","coveralls":"nyc mocha --exit && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.14.6","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"12.18.3","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","mocha":"^5.2.0","heredoc":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.0.3_1598256495124_0.18217998397663893","host":"s3://npm-registry-packages"}},"4.0.4":{"name":"ssh-config","version":"4.0.4","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.0.4","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"5d20b3e8e5bd2472990c90b5ddd055d7ec833051","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.0.4.tgz","fileCount":6,"integrity":"sha512-dlEgIpvikPUT1P8GseEStlvQ09SUj7QvldEdWrmpWYrzYdQzVMmRx3tXFdFWTyiTo/4FHVniFo7CvQL5XIf7YQ==","signatures":[{"sig":"MEUCIQCnEWlEvMbQn696b7EOsbmUo4bBYhAvfjE6RRBloL6QOAIgOySib9phxBHKsz+3x3b3+l42u3sY/dHTs/pw3XABADc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19130,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfTvhiCRA9TVsSAnZWagAACY0P/2k85c6q3RuwgiswENMD\nl9EfPliZMfwFOFal32Ya6Ws9Op32GTrSCfbG3FCkpsi4lfChl93HBUpDuNbU\naP4hJRMS7U0I4h8RSeBPKCxYndLiHZ7w8evHxfYBu7fZcTR7PVehi3XODVzz\n2JavbbjxUBpxhkPVgiGMIT6kTmykh/AZ9+98kxr2XyXSQ0c1qGq8iL0fNxeB\nR0zOWfAxSwRPpv/WrP9ibzB3YNAGqy9jCJg5jtmXFvnza4DtlH5ks8U7bvPt\nJMKneXRD4Ip0VJ4R3RKOPsawKStUTeYyMVjekvLKnTcgOr8vStyNUNlQJJab\nffnzzX6EMTGgMAt2vVkhfa7Vc1CSIdF2CSuWIsjyEUrI0QisOXyL8zF5I/Zj\n3LmMYQpyLpwtb87GjJbFEHi2jhiQSH+jjvDdHg/0ZuDPWbkHFuTkOqd/ko/c\nPIBpClv13y3mJoZgNkcEpIX7LvJs5dCoCu9SoSgATCZzwX3opOPEa0yDbSv3\nqita4hbgUWGaVLzEykZjfCNsYsOtK8s0AuDa68jMjdsqIFaAGGloj+08ftcN\nae0wMdVRwUqVBne+m6yKxloyBtlaaFp4AKdxKcS4eApadx0XbVqnizKyhCCP\nTJGQlm7tx1kEp1bBW/97t+Qt/hTwqMK3ZRfGhKTr0umN9XXz1Czk+COMMnGP\n/Nn6\r\n=ABS3\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 6.0.0"},"gitHead":"0e8efc4189646a28cad8ef453e50ee58b71ad9fc","scripts":{"test":"mocha --exit","coveralls":"nyc mocha --exit && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.14.6","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"12.18.3","_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","mocha":"^5.2.0","heredoc":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.0.4_1599010913616_0.5224338949804299","host":"s3://npm-registry-packages"}},"4.0.5":{"name":"ssh-config","version":"4.0.5","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.0.5","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"fab60ca2f23f59fcd87cbec28ccc2b79bc1cde24","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.0.5.tgz","fileCount":6,"integrity":"sha512-YZdMMnTbBcspERxv4ruGWsBBjFZRADPEyuWSnM9p8n6iA22HhV7YNrA3ZhcE8rCk/kZzCCjGDVyq+b+JUOhlEg==","signatures":[{"sig":"MEUCIC1aFy/mraiRdDnu5YPIqdt8DeOB4MhFd35SKUd5fly2AiEA/HxySS+OV1gHEUV1Zywj6iMzFAM+jrwwxJzcA2pDXSU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19758,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf98QfCRA9TVsSAnZWagAAyYEP/RtNqteBoWt+vWle5O7q\njPF8TjKSJs6RFTyM6lrMHGepALqY4l9684Q6OM+CuAj5E/TWzCGAe3Tz1jZN\nJ+pY321+nNIRXzXbe7UQYHSMKHuojrCDouE3yzpinQ3JvybTJcfv2cDcJdht\n78rD/w4gQMs1vPR36xnERHxM8SqyqLI+1ZuaLeotjN7X1W93tfFhp1ikiOpT\n0X++aVJ1GE79+s5qjG7zsp5pflEzR1a+gSaqSkwLTkRtioJRq+W7SIlotK/V\n4DeNnyEeHd0c8+7X+6lLLkAszON5/iyOj6iELykvp/U3xKvyyFhUzNqzM+ea\ncBcUfxq0mnVC3CcoQ8AWToBTrr2XmIe5Ngdkbo8y+b+/+tsyQ5YduW3qtfpL\nGQ7CHag+as7xNBdh4Ru45ViB2bqhyrjFifOG/+uzr+QJ+NYYkqr20ByseG1D\nSHoO/9HBT0+GF1AW0zxgXeiLGT9PtB0ugXXfeCRHpPfC9ti8r60rDbyTMsv1\nOVSG3wTXxB/G+I2S+S4DFmtmsJF2z0iTCEUeeWyh/CZtWCEwPhQefSmKhcAo\n9WAIYu+ZbtgpkyRG8TcXZx9uF7tOV2AGLxk/8F2ICE8xNqHSSRSs2oUV8nN6\npGV9+yO+m2j2BgbrkRL6F45vrhyeCJ+hAO6Cly0qURmyWvfjr+TheTkFQwDh\nriFI\r\n=TiJO\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 6.0.0"},"gitHead":"8c23f38add8b988fcec30937f123d6428927abdf","scripts":{"lint":"eslint .","test":"mocha --exit","coveralls":"nyc mocha --exit && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.14.8","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"12.20.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","eslint":"^7.17.0","heredoc":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.0.5_1610073119027_0.7543108942526786","host":"s3://npm-registry-packages"}},"4.0.6":{"name":"ssh-config","version":"4.0.6","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.0.6","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"5cf104157d08702b47a112ae18075e433a6c5e86","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.0.6.tgz","fileCount":6,"integrity":"sha512-GEtKJJ/R4XTImmBIGAfyw520rY7pS1MLjCPBcrPxp+431xSwMIU5iyCv98ua0nSXoR1B4qvOYJdTc7UvERzu8w==","signatures":[{"sig":"MEQCIHXoqa8qCPBHUymZ1nS8uKtYRa5YtomGr7VyRlAGy/8+AiBKj2p411p2bP32oBHtG0Xxui1hDs8JBUnnNi9TM41Y3A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19872,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmfaRCRA9TVsSAnZWagAAvbAP/10ytEcVa7qdvNq2Q6ZM\n3P5IDTh2vI+CbprH3JwSvcRWIOsMYD35XeYnv2tUOsiGhqeYZzQr8Z+UcisQ\nwTpeY4INJmpwE21b4Wpu/V23TZ3sTtImFp4xu5mLo2H+WIBVz25CDfBsAbgh\nLULagKqAxt21PU5tH4eDCw4d9KeYsWQCjocOxIXYo+dt8V1C0EUiv6us3Sg4\ni04sYOysdVfKl4D2kczx6gbK96teuNCdt86QQ1s/8uwcXG5zqibf4PlHnD1u\n2Gu8OGlDD4hV8/vQ8DJKukN2U75f34hC8bKV1+hO5L7LuWzCGftiadk7JtPK\ns/FcCvKukXDYLnr3x+WpzxJLN+K67T1d2NSuc9hipT7jQmCQ+GAJttM9Egz/\n8TiDPVS3ZOUunWy/KdYzaY0Fdt0bhisrcI5HIhoYIkLP/R9SmqWKp2LIoCVN\naPgHN4IQwklCEdAgLiJvGtLmL+JpJqa/oZjAOKJ56Jpj9uVYCOd092pxVy3u\nFrp7lcXGr/8DZN3ixnG9ZE1rN8ytXyvStSn10gWHk2caoPdoYki6YFjASLTY\nYoKHEZJY1jGne32/A8DLJn5qvpRhJzFDXB+x4FCQLkt1shpBN9pz9zpnTmyP\n7Z8KhW41AkTssw/CpFlsO4DoukF8ezQPFAzRlfYWZV+/Ty3lSvY/wNTZr+rO\n9hH9\r\n=VPN8\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 6.0.0"},"gitHead":"fb5e57d9ad4ebbf68d68e8bcd6cbf58b0cef35df","scripts":{"lint":"eslint .","test":"mocha --exit","coveralls":"nyc mocha --exit && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.14.12","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","eslint":"^7.17.0","heredoc":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.0.6_1620702865444_0.28701475181625824","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"ssh-config","version":"4.1.0","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.1.0","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"a87de0e8b1f9d0da78f68a013b6bdb284def2f4b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.1.0.tgz","fileCount":6,"integrity":"sha512-ymsafE0bONJ02grpeu7vMJ7eFF3nrv35wV7nonApyL3shF2Zm77SH9NWWHdDA4unugp/oAdkbPTnmUCWB7FIFQ==","signatures":[{"sig":"MEUCIEYK0RGvdV/Laafhaxb4XPMaqVH4M/4RaZKA3l6w510uAiEAm5HaCqMVvqDV536NjPr5J+vnNo9CpZCtYHtTASyvvzA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22379},"engine":{"node":">= 10.0.0"},"gitHead":"1a58f7dd0cb3ce5a672a5899e10657fcc1dfbf19","scripts":{"lint":"eslint .","test":"mocha --exit","test:coverage":"nyc mocha --exit && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.14.15","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","eslint":"^7.17.0","heredoc":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.1.0_1634727505785_0.05653438454958959","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"ssh-config","version":"4.1.1","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.1.1","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"de8ab080c97234873291488b36090cdc2d075b06","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.1.1.tgz","fileCount":8,"integrity":"sha512-p9t6ZX2yg3vzrUh81arLOOh73arUdm8aZ8YG1Rxve0T+1PVv6v7DhXQ/uPQ0lJaubEvGXJz7eGj7Z850443Ohg==","signatures":[{"sig":"MEYCIQDIBiwFMKALl+WIQLS6F4sCwBydXgtNTR7ZfmSDEY+W/QIhALqoL4B1ZE0wfyl3dE7YUQUYuBYoWXToALkZOECfFWvl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24747,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh275YCRA9TVsSAnZWagAA2awQAJJIKJ2ji2Ky7ptfiAQi\nDFW5Yft9MGpZ3SdRBlCB6LHyxFy+v+x1zEi9Xa0u0hEgiUahv727se9Rvwjg\nW01mA0/Go53Eqk5iNcKyHdLIZYyeg0K+Ck06oToyDccm3t/Zu/eCv8u2hPU8\n6lBnXXbjgjaXrFdiiii76gvDIYD8aiptiuVzAVSpcQN1yWTIe/lIFYq6CW3t\nuMHdQ3ezXwyHW9Ssxv5IO48Y2Ft8m36XW1QGuNw6bh95J+qDaR3SoUJdaSsd\nZzZPJAHhPrbv/7U/yc/vaASQQ2SFdPY2U5lJKR84lYw1gPs/WugVxMTSXavL\nTnECR7rdB1AyOAobgcOMrJ47DVJG1He3y+q3xB6oUntmnOm2tf9QexGiz2zj\nfSFtPJsWUAIBuN1IFu3Ui12XnnLhwlD0JUO2nTsAiccfL+uYaMWpY8Rbw7bv\nX7NVsKpLZHUfO2fDT9pQ4acHFFk3bOJveWXphZ7A9W9Kjs38us4KBbwuP0fG\nZxGLX3Q52CtodNWK/Eh/kPRxMHOJ1qyJIG0Qmhhn1Pl3dv4BiXRIYwSqvBtd\nllGO5dizH9lssuQwVD7Tve07/rBZ8yqij6i1I/+0ODWMY5uMWFFkBMo0VyOO\nDqwFhLDf2HvVV9+B1BZ/WN4D1gqz17x0h45UNGtSNDM3d+yFwVwDQGmWqjwd\nL62D\r\n=q5l3\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 10.0.0"},"gitHead":"56a3d3555c4149d78e77e25c8f873f70ef375328","scripts":{"lint":"eslint .","test":"mocha --exit","test:coverage":"nyc mocha --exit && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.14.15","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","eslint":"^7.17.0","heredoc":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.1.1_1634867894990_0.6597955621248055","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"ssh-config","version":"4.1.2","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.1.2","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"ed1ccb53e02f3c6d2d8b1d01b990b31bf514ebff","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.1.2.tgz","fileCount":8,"integrity":"sha512-nKYJ1HlaoVal/NBUglyHHPBMEQsb7JZt/O2wpbpYVn6pu/4tKX8m/jgrHG7z+XRY+C3CXxAX2hiG8jA5QRi3KA==","signatures":[{"sig":"MEYCIQCNWnNRORT/eQfqZwTYy3fU0xyL3xbDZ+P4DYWVGWJ1VgIhAKKn+tI3/01Xk69V1wAf+Kw/BZNyVrfa+mu69d9snihH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25014,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6OnQCRA9TVsSAnZWagAA3ysP+wdqFchWLG6a87J/3Iw7\nqkONyle4ziScfHiUyVnb4f0Floq5hZFrWlK8zHNSnFE/tCxJ3CcwHpbFZbkj\nJxc46AYV1+XXoHm0vhh4nANkgAuB2CWvDi4cBKCa7vcYdfdZnW/TzSBnncd/\nFEfqUJ0V/NpLr5b2w0dE2K1Xrb0BPKOc/wz7cIjA2XjwdSqh+Y4fnRNKq4mz\n5FP9gvTWO3cXsQxsT3SxAHcr5spmfrkoxJC4A3Q8q84sG7nycQiNdBFSdVco\nmKhslkSpQRpK6Au4yZ5vU3H3PgHQmRVKwEBIbZgDPdvcWLx36XRtAs4Xt0YA\nFvr9cS9zVQjV62mqlnfvR4eyGO14SBqk1TnpOS9mchadAj6yiYFKOpVnErY6\nWSbfoJuZiGBfgHcPLCU5XYVkyT3Z37THUdQHGi8BqEq2F6XdDqdV7CxmmhFl\nvcBp2eGwk5WzDCMkln9jRZREeo82vp2rzkseK9g2BMj/1KGdLEYrrAWGWkSo\nFcgbciGsOGTqPWf3X5YTUwfIeOfGsChjZoSGmYo/gnlAdkRnop9pReKZwe9d\na1Y5HMD6nu0a62pfLqI8nO28n7oLiOOtAZKzAAyh0zjeae1bB9/5EZx39mxD\nWLs4M0RsQ62v9mjSeKP+E8YLum7Rif0r1eJwlIzcVLAfPKmpOTTsu/ShjcOE\ncRT2\r\n=XF6o\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","engine":{"node":">= 10.0.0"},"gitHead":"5f212366412ef39fbb1290155480d43f1ce3f4dc","scripts":{"lint":"eslint .","test":"mocha --exit","test:coverage":"nyc mocha --exit && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.14.15","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","eslint":"^7.17.0","heredoc":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.1.2_1642654160520_0.17526873022003508","host":"s3://npm-registry-packages"}},"4.1.3":{"name":"ssh-config","version":"4.1.3","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.1.3","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"a9a4703f852d52eefb2fc20d9cecc7f459adf149","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.1.3.tgz","fileCount":8,"integrity":"sha512-7oAUJ1wSImvOCujmtKNrW0eKvB1UwrTE5hoYsCONY4WRJwKe7XbC4ETOgLeTwdtv6lE8ao4TtaQAHDS/BBRRvQ==","signatures":[{"sig":"MEUCIGUpRWwDHbxM9QJIJpq56L/WkaEktHjHOZ1pbOgpnACBAiEA/CKhuQSc8Y08r88InZC6hBJjn6QjAgHH9tibVBmsUKI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25279,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKzmiACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr3pxAAiQNq+Xg3F64QFWB+bC1hvxt8wmhEP58kp3NpMmbo/kl2tHcb\r\nI8/O5TOCUhTWmj/usfDRrSXCCorhnLDVvrvxvqgAH96/Jnz+IlfTO5aThTOz\r\nHu1lbypOYVLp6Q5tlvDT+WSiJPjSewvk0cL1Sb1WqMJRik021rA5cThkpSHM\r\nsn0m5Wu0UOHO8f9wdwCTFoOnjuNUOjPVgk1la+b4C8zLkPBJlAKxLPUGuNCo\r\nCuwW/3RNtib9aN6b2MIv+l1ZSq1rkEs+5/2jRf2ZDVJvxvlq9TYuGWbm21+f\r\nx3/7L6bZKcSUJ/MzibwqT2Afb3skdoZ7LPz6/YS2LTUFA7z0bYLgQQ1imlZu\r\nBBgF01TNeVtvQfY7Hy8n7Hc0vuAsg+Epy/9QR9h9YdpwWs7Ek+eE4/ukQ9ST\r\niM27RHbt0N7fMVaBWqdBJI16wjcA21ao6K2HJANJhQ0OKBjjc2Z1sTopUu3k\r\nsgoydAYGSfoz7QLu7yDDa0XdJR0+Th1mlyhU8EarF7EmPjP0NbI9iyrj+ln1\r\nFCs1rM0sHBoh7quZMd8Vr81TZzkr549HgQ2n9Bazg+MWSsItcRgKwv0pL2gH\r\nBXIJ1sseneF6F1C7bhMdP5qaFsevnljR8D1xidUAzK7dMZl0E0Yuww+mS2z+\r\nKSb3g74rwJ7PrC2ioKnwIcGcN4oARHYfhP8=\r\n=q8nq\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","engine":{"node":">= 10.0.0"},"gitHead":"c836041b9cdcb9be5bc186397bfff2823dbed70e","scripts":{"lint":"eslint .","test":"mocha --exit","test:coverage":"nyc mocha --exit && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"6.14.16","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","eslint":"^7.17.0","heredoc":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.1.3_1646999970513_0.9220035902648396","host":"s3://npm-registry-packages"}},"4.1.4":{"name":"ssh-config","version":"4.1.4","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.1.4","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"75bd1e6f797a2005d32eead64366b16dbbd820ac","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.1.4.tgz","fileCount":6,"integrity":"sha512-nU0t59ZZFaZ7qGGPE25MB1NDiFFYp8hG+WmsLv9oulop/5TAMLZHe7WQrLwbTZ44Lj7mKm/P2Nge5uXd/90sWg==","signatures":[{"sig":"MEQCID+Yq6AwCCeqGfKLCeV+juv9yfXzvOBm0O0ba78xShYiAiAQCHZzPSvj3PFeE9ipYl2luZmpbMFErozlWafdTpL8YQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20773,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiR9UWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr/kQ/7B8aQOSqfu+mr3ia0P2cFwH9Ywk1LOry7UxonrSsReLfL923/\r\ntjk8IUm0lu4j63gn8o0DtUnhaH0XaC65IGi9y3e6u/hisVkglY6xzGMKYMlg\r\n6D7XqPXk7igWc7e3tdW2JSL28PEcl3zblwLd7mUTs18Lmt1N42KgmCLdFZN5\r\npfF0mKrFhXyB0UPhRz+SoYd0fqyTTv2y4gmwTzGAkl0VnBHj4C1DCLGt6QRe\r\n9veovaJWHxbcyP3lvjjMO0FOANLgwKNvhXBOcTCPCD11WUuh+AJZva+x9Nut\r\nDTfwo9V+V/tUikgExH3wDanhfYBzldM5k6FniOuOMvutif6GR70VTef2H23F\r\naCqWMi6jW821swid1VIfB9aN2eSBY/Q2JoofuQC0xmPyrkCWjzZ5eQk1oSbe\r\n600LOtLN94RXaMgUkho33H4YRawFrtgaa+gAhezpU4H9uByZ21qOOll6/FN+\r\nTmHpGmddbJ8/KOYXVS7OIyV9eGOZVQTR6SUL0Z0V1GAdXqz8OGOLhUJ8WEvt\r\nyWMU/nU40xi70f2z+NkyDzjmzCJDIwFg0yMOCukhkNgDODH0dW+bunOoR+nr\r\nt/GcvaXdA11k7UfrnKd4f16/s3DvvdraVRPkHo6iGdpHktQFN1Qcw/zegjaQ\r\n0KuSiUIW8lbvr+HYUfEk7YOgUHqzi2kzQfc=\r\n=mAOf\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","engine":{"node":">= 10.0.0"},"gitHead":"cd690893c80b4cd3c0393130bf5f2b7edc03cc02","scripts":{"lint":"eslint .","test":"NODE_OPTIONS=--enable-source-maps mocha --exit --recursive","pretest":"tsc","test:coverage":"nyc mocha --exit --recursive && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"8.3.1","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"16.14.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","eslint":"^7.17.0","heredoc":"^1.3.1","typescript":"^4.6.3","@types/node":"^17.0.23","@types/mocha":"^9.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.1.4_1648874774000_0.8735503977118744","host":"s3://npm-registry-packages"}},"4.1.5":{"name":"ssh-config","version":"4.1.5","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.1.5","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"22d2fada21dec09fae232c9c5de587ee103dfa68","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.1.5.tgz","fileCount":6,"integrity":"sha512-MaSVk+OtHWsfgXGUDhHg+Lph40+yyxywT6vP/lhmVgT/9knQK7SRaOhlptrZViRTkr0RysXE5H15d4E+7hRqxg==","signatures":[{"sig":"MEYCIQCyyr7Gg46fMOS7vApDAzuynDv+MMC4RWTLRoHUGO3grgIhAMtlcZ6aaMQ9lyPGRUV8IHw34wz+RhfS4+Oru7ipDVpu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20776,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJinCuqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr4Fw//UC8x8nL3YCeK2ZY0K8vVVSeupa29IqGV/AsUkTTrrsEgLUoN\r\ndKBDKOwzB1BctvxP217/AEHeG7dGaBf5eVUc0ttiG1IKuPauhOTwqzgY4gqf\r\nvfWHFCxyWetAHiA8jCB60hEPHUMnsL1cOHCv0nwocuQKlc7YJPmVvfYLgNF+\r\nmSZlgBFPqAA2RNdo5R8tX5MoIXEncPdOTlEaIhfnT/sZlIUTGlrx3sjV8Ol0\r\nADbbD6fDqtf33RBF9CzbN5PYiF56b6FuaEP2LNITeyNysS5DZQ61DGsIKClV\r\nVd3oezwJ+ZPPWV7MDgtzWF/bnSLdiXyGaVpcBCpTbMg+btvS3Rm39xhpT1Mp\r\n5gNwvsS58mp5SlHmjIbqI1B9KFBNlqN0kqn7HJy5PueNt2lts7mTVAl5xbh0\r\ncVU8uLERrcG+qSoR5VxyK2AKVsGDfwQ8JKFEEH1EWXOisEWym7pHiRgKpbs+\r\nc8pjptnGsCmQqjY2CGdSm5kuwmw20i0FyixmYwXRvmEGFcarGIOcB8IEEG9j\r\nXEkEiy3z79L3EAGmfWAT7EqM4iW8yX1mendeh56t30Pi5rVShdoTBySeYvnR\r\nWr+/ZGymxGBQ60Ju/TVUZvCeBtozkHYfn1v50zn/MBGlGIzkwio0Sgywm4vZ\r\nyocYf0liYeIlW7z3OjS9bNM8gpySL9OnwQQ=\r\n=5Jia\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","engine":{"node":">= 10.0.0"},"gitHead":"272f45cc7d4437789455ad3784f6c673418641c8","scripts":{"lint":"eslint .","test":"NODE_OPTIONS=--enable-source-maps mocha --exit --recursive","pretest":"tsc","test:coverage":"nyc mocha --exit --recursive && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"8.5.5","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"16.15.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","eslint":"^7.17.0","heredoc":"^1.3.1","typescript":"^4.6.3","@types/node":"^17.0.23","@types/mocha":"^9.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.1.5_1654401962174_0.3273612072002383","host":"s3://npm-registry-packages"}},"4.1.6":{"name":"ssh-config","version":"4.1.6","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.1.6","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"008eee24f5e5029dc64d50de4a5a7a12342db8b1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.1.6.tgz","fileCount":6,"integrity":"sha512-YdPYn/2afoBonSFoMSvC1FraA/LKKrvy8UvbvAFGJ8gdlKuANvufLLkf8ynF2uq7Tl5+DQBIFyN37//09nAgNQ==","signatures":[{"sig":"MEUCIQCtIl6uNZG+0GojlCrKSHKkSu5LhcSiFDrEsVlz1jjfDAIgVFOdr80LQAAlOqGroMwOt7ZuhuT1NG1aKT7PjV2F5nc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20978,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJivXfBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmphxw//fVzKq9sisWzLt9Zks1fe9Irg1UQJYDXDg3OiaEA2mp1KCkDo\r\n90zdP7j9hZd4gfJmmHyMOW+JaqoE1jgle8oDh2rUZE3WJeLPqb5L+OFedSsT\r\nV9SEB89xLp02vSkPxGnWfwAfMCmo2ztKATQT5L7muFIhqNNIVPxUOUsBbXv0\r\nsXS2EykFSZaf4r9bNUPtPCLpqeDZG8RvxVVXN5khr699bljClByBeVMpiFY7\r\nQQyywef6p9iJZ/hmhmjcQjFpSrjCzzGwWRAbOuJjvDotuLzXZOEZKVWl1M7S\r\ny2LWRd+oX8q4Qc/UOlU3wACUBpAXvbSY2kiJfueuWw8y5+NLPaLLHxR6s9MV\r\n6bn3048lQraH4IvrlrgWvXAzNZsqXpR0P9q7QsoAraIktv39wDvuk/L0+tR/\r\nQM9xKLpqE/qbRYOTSogI6FAUE0Ysg6ztDBYH11gzgIWHo3tshho8/du7nxsP\r\ns8akRLkxsfyvGAd4JbseRt2hj5K0tsXRpsYprRWIa+j7nKlew69xdd88u56f\r\n7duaNMX5xXqAcGGcyF48JBm9AfuGnEAGeos098pjkvm1zTOy7G3LisXv9cL7\r\njFuBxHWuMbBYlui5dYiKqpAPjQWB27cpgd2AaC3gP0gN/tyQifdKwjRW+5s2\r\nu6QjifhSuvtPqnHO2EaxjKIO/1oZQpZvI1A=\r\n=Z1Qa\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","engine":{"node":">= 10.0.0"},"gitHead":"33d74d9c899ae882322cd5dd4235b97ed3ca31f5","scripts":{"lint":"eslint .","test":"NODE_OPTIONS=--enable-source-maps mocha --exit --recursive","pretest":"tsc","test:coverage":"nyc mocha --exit --recursive && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"8.11.0","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","eslint":"^7.17.0","heredoc":"^1.3.1","typescript":"^4.6.3","@types/node":"^17.0.23","@types/mocha":"^9.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.1.6_1656584129227_0.6514237318382035","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"ssh-config","version":"4.2.0","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.2.0","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"ecd7cb8f039c28f8aac3f8dfbd4d010c5b6304bd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.2.0.tgz","fileCount":10,"integrity":"sha512-GZtg/g6ZSki0AUhpw0bgB4jLkfPnxf/Qjw1tRsTq+KWD+eqJe5c4Ggaihp+csaLtesUnUOte924a7kwVNJbt7A==","signatures":[{"sig":"MEUCIQCqUPQER8G/7wk73rzwLX7ijK8IAk9ifl0ENLbFgyNyEwIgesiD6h0umdFBS/qhL/2bDFShq5W/eTotZ0D6/bqM2cY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54416,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjtY3eACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpxqA/7BrVncDOYBT408RLOn/VZuSwwVu9FpvsS0i7D0NunjUf6Cmnq\r\na+IHMnYiQfAq2VKbUWRmWx1xqDdq9AzCW7FMS7Hm9CxS45RfsX3Q7LD2gDPt\r\nvjmuMzzKKBGW0fzasd8oHUAYiuW/Oy+ezLmJizB4IoJHKX12CvEYmgR8ab4b\r\n+eQZOU9z+uagBUx5a6n7jyvu4U6h28yiZ26B8w7EzwXhGJoarv/byX/j94Cx\r\nCz9uIBbzPWRCJ9wyCRdffXl3cm4b8bmpTHe18sLVHnL/4wC5l1db0ILEko4D\r\nW+QcMlMs3UPJrALmr6MrWiqoyJ1s2zZAEZSh6SHP4ohPAm+NeQXajo8YYh72\r\n3nO1AMCVqNykz6ME60rNT6CmO7i5oD/0Txki1Mv/82Vxa4HUCTgYGWkJFWBv\r\n6qOUqSYHtFNAlIoWI/QhJ8479TLxNokzcT9SljAYaBnDTQccUyYGTlADDIL/\r\nCbOspMEnu3edd4EJZr9Qxthno7KgexSsXP5ASJb0i8tVJ0sRJ0B8zwlrGBzI\r\nP4NogUZUjbb/71XJ31THZUGRvjyConyjJdxK3Pp8kxtdkwOZFSTkwMzYbN0D\r\n+GGra3lS7AISUhZCBxU5eMy0IyQo+ST1qLpRY2IPaWYEYGNQqZIgRhm3hP+t\r\nuZ1H4jWHvh4NI1w4jDgdV+eJIJUoPvSaWJE=\r\n=BVr1\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 10.0.0"},"gitHead":"82a840b87f4840dc12448adb07df32d152fd1cff","scripts":{"lint":"eslint --ext ts .","test":"NODE_OPTIONS=--enable-source-maps mocha --exit --recursive","prepack":"tsc","pretest":"tsc","lint:fix":"eslint --ext ts --fix .","test:coverage":"nyc mocha --exit --recursive && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"8.19.2","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","eslint":"^8.31.0","heredoc":"^1.3.1","typescript":"^4.6.3","@types/node":"^17.0.45","@types/mocha":"^9.1.0","@typescript-eslint/parser":"^5.48.0","@typescript-eslint/eslint-plugin":"^5.48.0"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.2.0_1672842718644_0.7906254619442838","host":"s3://npm-registry-packages"}},"4.2.1":{"name":"ssh-config","version":"4.2.1","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.2.1","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"4fee816bb7cb27637d37e1d013a1f88622e2c057","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.2.1.tgz","fileCount":10,"integrity":"sha512-0FdXhdpjwzo5Cao8UJdCv+MJ+7dK/9jvi6CaJrg/XpKRu7ryn43BUIYnPQt+IS5XEqmBn3cxOUkU4FM3m/Wkqw==","signatures":[{"sig":"MEQCIBwt0Sb8wNZl4HOVpMGh4LHsP6oB/GUrZxTK1qNVvpiNAiAnTM8k255h7GkfbbBO/GKaZoCjVXsZYpVS86D+ROup3Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54588,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj2c4TACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmod+g//Snf2vUefYb57Be5ESXqRPDsstSopQWShqNYsMFPjiaFPgYFO\r\nknthQOs1wuHuGNVLBl/zO2FwDwguxo4PpCpDKcPaojyHsgMfUvNjAJ8HLsKQ\r\n5yyH8+PEqMr2K4JXDOq/aWKK+FEH9HPMWObzN7iS/XGsLsP31KAYJeldblsd\r\njCSglzJSkio9pqs+zoj3MMx4rfjFHqEYOzswtNEhe3BZT6euBNO8E3NFmFZj\r\nPC6DxyYuppCXV/i0MHzArm5crw5b8Al2bfWpwiJuws7MWWqmm9ZRMUKUb32Z\r\nxJxFfBXNlRDJp40MmK3btUIjbtQzZOMe2NsyJkOAGtmUZ8pivhyGFz1wIdWT\r\nxNikYUA6ryg8OJOO9AJkwwpj2/KmCmsuTHgibvhszrvzTcWMUErPu5FORkrc\r\nBbNqLlke2ieXQWQWBe3rFboFXHgv7ctVtG7dPLQkS2amF5Py7+2OXaPx5PoB\r\nJo81FDvKm/1RlQMasaR4mnZwMSnfWCJvvsIEi2SnlizKPWNCj0VnX5jkw2MS\r\ndYg2DHNFNcaBENvxqaoUm/HTMpGTrRmR9eyEc50ehzXCoBMUsx9tywUWJL8a\r\n5EDVSB931aEtciaim2qX2A90rXCo4Q13Fffwy6e2GSdaP8Se1swLvhuCeYP3\r\nA8RDCj0FnHfa+zAaq7OyFUcGUdcJj+h66s8=\r\n=zuMI\r\n-----END PGP SIGNATURE-----\r\n"},"engine":{"node":">= 10.0.0"},"gitHead":"edd1c939f01a3ae89927c778011540a1743e6640","scripts":{"lint":"eslint --ext ts .","test":"NODE_OPTIONS=--enable-source-maps mocha --exit --recursive","prepack":"tsc","pretest":"tsc","lint:fix":"eslint --ext ts --fix .","test:coverage":"nyc mocha --exit --recursive && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"8.19.3","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","eslint":"^8.31.0","heredoc":"^1.3.1","typescript":"^4.6.3","@types/node":"^17.0.45","@types/mocha":"^9.1.0","@typescript-eslint/parser":"^5.48.0","@typescript-eslint/eslint-plugin":"^5.48.0"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.2.1_1675218451424_0.3932680911439117","host":"s3://npm-registry-packages"}},"4.3.0":{"name":"ssh-config","version":"4.3.0","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.3.0","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"3a132c656374a5fbdd57c9f9e8aa8542eff1a666","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.3.0.tgz","fileCount":9,"integrity":"sha512-VOsrKxYnes0A3NGzzuOAy2yB36gv+hie77ltuqLXOWRiYrmAWI9WrKAKJ2+/4f+6vx4eEDSnGYGaCbyqX8aHxg==","signatures":[{"sig":"MEUCIBRitvdRM5Tkb0iuNnHiAd9qQfO4oE6V1trpovmqs4RIAiEA6e6kFDkReDHeqgzc6sC/Y5Vdat/CVGT9bnM4g3YINPY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30291},"types":"./index.d.ts","engine":{"node":">= 10.0.0"},"gitHead":"cd6bea1b1bbebf2549c93947fd53bb64802b1a1f","scripts":{"lint":"eslint --ext ts .","test":"NODE_OPTIONS=--enable-source-maps mocha --exit --recursive","prepack":"tsc","pretest":"tsc","lint:fix":"eslint --ext ts --fix .","test:coverage":"nyc mocha --exit --recursive && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"8.19.4","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"16.20.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","eslint":"^8.31.0","heredoc":"^1.3.1","typescript":"^4.6.3","@types/node":"^17.0.45","@types/mocha":"^9.1.0","@typescript-eslint/parser":"^5.48.0","@typescript-eslint/eslint-plugin":"^5.48.0"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.3.0_1691470217169_0.3537837583822916","host":"s3://npm-registry-packages"}},"4.4.0":{"name":"ssh-config","version":"4.4.0","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.4.0","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"5fcc595d941661101f0fda8113149e72fc4a4c5d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.4.0.tgz","fileCount":9,"integrity":"sha512-W+AAUSsBirHyXqYBUtZ4l0FBAPH/jnklA0KPBfBuBiJVD8LT4LoQST4MCGPziZJYTVvzFmrgrr7j2JWyl/rPIg==","signatures":[{"sig":"MEYCIQDwwxKANP8aYn5wutEL6HjnlZf9tvsV9uUjBVNgWvUNZgIhAOoMgSA8/XrKgbF88zXY9ladV+KdsoZQqUjqmc9JlHh3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32009},"types":"./index.d.ts","engine":{"node":">= 10.0.0"},"gitHead":"7a9844b18cf204254f6ac1e4af740a2e1bcd65e8","scripts":{"lint":"eslint --ext ts .","test":"NODE_OPTIONS=--enable-source-maps mocha --exit --recursive","prepack":"tsc","pretest":"tsc","lint:fix":"eslint --ext ts --fix .","test:coverage":"nyc mocha --exit --recursive && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"8.19.4","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"16.20.2","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","eslint":"^8.31.0","heredoc":"^1.3.1","typescript":"^4.6.3","@types/node":"^17.0.45","@types/mocha":"^9.1.0","@typescript-eslint/parser":"^5.48.0","@typescript-eslint/eslint-plugin":"^5.48.0"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.4.0_1693816356123_0.15427865924996342","host":"s3://npm-registry-packages"}},"4.4.1":{"name":"ssh-config","version":"4.4.1","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.4.1","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"ead3db2038a35615093f2e5bcb5fdb434f221c9d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.4.1.tgz","fileCount":9,"integrity":"sha512-3VKB9wiwWbwVGjM8T5/nkIrijenIYhKXOHrcCH4cOlAX6d+hD4lMFJtJp3UF1KaUDIMtccg1MmwqoTCX7CoVzw==","signatures":[{"sig":"MEYCIQCsl76PN7NkfwBb7vTK5zK+h+AQtLFOaU/e4iWng2+pDwIhALFxx0KUoDTJZa9OuLMydGVNEXAWQ/udRtYHwE2bbpRQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31936},"types":"./index.d.ts","engine":{"node":">= 10.0.0"},"gitHead":"dad69c69050ebbc491b2f1b9bdc4badd57630357","scripts":{"lint":"eslint --ext ts .","test":"NODE_OPTIONS=--enable-source-maps mocha --exit --recursive","prepack":"tsc","pretest":"tsc","lint:fix":"eslint --ext ts --fix .","test:coverage":"nyc mocha --exit --recursive && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"8.19.4","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"16.20.2","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","eslint":"^8.31.0","heredoc":"^1.3.1","typescript":"^4.6.3","@types/node":"^17.0.45","@types/mocha":"^9.1.0","@typescript-eslint/parser":"^5.48.0","@typescript-eslint/eslint-plugin":"^5.48.0"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.4.1_1696209345347_0.26837678893435823","host":"s3://npm-registry-packages"}},"4.4.2":{"name":"ssh-config","version":"4.4.2","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.4.2","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"6a3068b0e52ac4e11a8cd4404666f9cb3c08ea18","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.4.2.tgz","fileCount":9,"integrity":"sha512-2ZKU/SgtbEJbsOOE8F+NmMmSsPvl/+US8iFCIH3fNcJmTLnkatpuuXXAzdKnStmWgd5auv+F0BqcgrWDw1xrng==","signatures":[{"sig":"MEUCIFieGGAxe/2uIThEuoSk7lEsCMhqCr4WfEcktlfCFiUfAiEApvYqghfm80VTvGcRzqM9cPMtzX4n1tCDwdNYBQ2oyAw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32094},"types":"./index.d.ts","engine":{"node":">= 10.0.0"},"gitHead":"162eaa36ad7a0ffce0a463322e50a1633f9bd478","scripts":{"lint":"eslint --ext ts .","test":"NODE_OPTIONS=--enable-source-maps mocha --exit --recursive","prepack":"tsc","pretest":"tsc","lint:fix":"eslint --ext ts --fix .","test:coverage":"nyc mocha --exit --recursive && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"8.19.4","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"16.20.2","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","eslint":"^8.31.0","heredoc":"^1.3.1","typescript":"^4.6.3","@types/node":"^17.0.45","@types/mocha":"^9.1.0","@typescript-eslint/parser":"^5.48.0","@typescript-eslint/eslint-plugin":"^5.48.0"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.4.2_1708406719397_0.8810609896955668","host":"s3://npm-registry-packages"}},"4.4.3":{"name":"ssh-config","version":"4.4.3","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.4.3","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"bfebffa13a1c8eb276b117bd3f2ec4ef37788754","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.4.3.tgz","fileCount":9,"integrity":"sha512-Q7ncz+srt2qFWczmb8T2+sYehQpY1LSKId4iBFO3QoXwWdEke2mkF7phDmkTnDfAd14sKCVgEZof3suzSw+3pg==","signatures":[{"sig":"MEUCIDfXcSVx/J4/WVufbQHjpE4eOnP+bpReo46KEg8d3gETAiEA/AcoFCFJ3x4zEF5sGg5lyrJQXrHl3vXoRsj4aaIiJU4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32417},"types":"./index.d.ts","engine":{"node":">= 14.0.0"},"gitHead":"4c356c52445c705efaf0acbabb44b30d95db212a","scripts":{"lint":"eslint --ext ts .","test":"NODE_OPTIONS=--enable-source-maps mocha --exit --recursive","prepack":"tsc","pretest":"tsc","lint:fix":"eslint --ext ts --fix .","test:coverage":"nyc mocha --exit --recursive && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"8.19.4","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"16.20.2","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","sinon":"^17.0.1","eslint":"^8.31.0","heredoc":"^1.3.1","typescript":"^4.6.3","@types/node":"^17.0.45","@types/mocha":"^9.1.0","@types/sinon":"^17.0.3","@typescript-eslint/parser":"^5.48.0","@typescript-eslint/eslint-plugin":"^5.48.0"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.4.3_1712627508789_0.46319805951318593","host":"s3://npm-registry-packages"}},"4.4.4":{"name":"ssh-config","version":"4.4.4","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@4.4.4","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"ab0a693d39f1e6a7ad6c48641668104213898bf4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-4.4.4.tgz","fileCount":9,"integrity":"sha512-75rXsNB+gmPa/ueqzpDRmVa+Z7ReDgzvmpsEM+sxi3DLBQERdmp3awkZ4WW4TVpnZLpFVsHEiMrojGVp/jJ3kA==","signatures":[{"sig":"MEUCIQDtLR5frpdNCgyMMXAaDUdVv3G1/4g9CutkbfBDgcDrHwIgGKLLuyGGNTm5PEc6HZpEXHTN7rf46iROOdL8jSYLxZQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32520},"types":"./index.d.ts","engine":{"node":">= 14.0.0"},"gitHead":"7034b4f5de6d3773d1c5b1a16604596c0266ad78","scripts":{"lint":"eslint --ext ts .","test":"NODE_OPTIONS=--enable-source-maps mocha --exit --recursive","prepack":"tsc","pretest":"tsc","lint:fix":"eslint --ext ts --fix .","test:coverage":"nyc mocha --exit --recursive && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"8.19.4","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"16.20.2","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","sinon":"^17.0.1","eslint":"^8.31.0","heredoc":"^1.3.1","typescript":"^5.4.4","@types/node":"^17.0.45","@types/mocha":"^9.1.0","@types/sinon":"^17.0.3","@typescript-eslint/parser":"^5.48.0","@typescript-eslint/eslint-plugin":"^5.48.0"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_4.4.4_1715233061526_0.9917370278134168","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"ssh-config","version":"5.0.0","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@5.0.0","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"02e13f40c7fda9a23b3b5b5bc5d251038af8d005","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-5.0.0.tgz","fileCount":9,"integrity":"sha512-RVJemF95DYAKfn2xogb75e4s3tyq6seexTg1CHXVxaas+OKv1PUsdIdz7ZyaZbW3TvSnJP+zgzNy5oRsrIhIAg==","signatures":[{"sig":"MEYCIQDi2f6d+R9w73HZqN4GKjUS7Wofg4Iw1tzN7AxI6yJ2NQIhAItf117Uz1mIoQG3pbpTmI+WCWINrD2cxpVsHwQw75jz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33748},"types":"./index.d.ts","engine":{"node":">= 14.0.0"},"gitHead":"ab4a6eb76b88fd37a32256f65743059565e76b2a","scripts":{"lint":"eslint --ext ts .","test":"NODE_OPTIONS=--enable-source-maps mocha --exit --recursive","prepack":"tsc","pretest":"tsc","lint:fix":"eslint --ext ts --fix .","test:coverage":"nyc mocha --exit --recursive && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"8.19.4","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"16.20.2","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","sinon":"^17.0.1","eslint":"^8.31.0","heredoc":"^1.3.1","typescript":"^5.4.4","@types/node":"^17.0.45","@types/mocha":"^9.1.0","@types/sinon":"^17.0.3","@typescript-eslint/parser":"^5.48.0","@typescript-eslint/eslint-plugin":"^5.48.0"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_5.0.0_1723170737983_0.6751951350751875","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"ssh-config","version":"5.0.1","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@5.0.1","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"44ee7db10d3340c79780afd142af05cf641408b9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-5.0.1.tgz","fileCount":9,"integrity":"sha512-Bh9CRGFq7pLpWFPmLOyirzYhbpme8FXZe3lZckWvmABdcIEiGB8tNbmEEZdppnr6EiQ0WcGTMoYDp8Tjomq9gw==","signatures":[{"sig":"MEYCIQCAfieQW4slNqJRogmTrJE7vsW+8dDeQV1yQINItT97jgIhANit10vcbqXTiNcuvaLShPelRgfMfrxLJxIt7AWajsVv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33902},"types":"./index.d.ts","engine":{"node":">= 14.0.0"},"gitHead":"be960c2eb040c16a58c33d2bcf8b7af4c30d5d7c","scripts":{"lint":"eslint --ext ts .","test":"NODE_OPTIONS=--enable-source-maps mocha --exit --recursive","prepack":"tsc","pretest":"tsc","lint:fix":"eslint --ext ts --fix .","test:coverage":"nyc mocha --exit --recursive && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"8.19.4","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"16.20.2","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","sinon":"^17.0.1","eslint":"^8.31.0","heredoc":"^1.3.1","typescript":"^5.4.4","@types/node":"^17.0.45","@types/mocha":"^9.1.0","@types/sinon":"^17.0.3","@typescript-eslint/parser":"^5.48.0","@typescript-eslint/eslint-plugin":"^5.48.0"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_5.0.1_1731588926976_0.565161335876263","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"ssh-config","version":"5.0.2","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@5.0.2","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"1cee49943212bab2a8df391606c3ed06a104c40b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-5.0.2.tgz","fileCount":9,"integrity":"sha512-FcNdu7jPY9dUi6ybtiqqtJ9+3koC5XYdobDwUp4JDf+F2WyNVN1T85uUxZqwcbkS5as423yix58tL46d14jKmQ==","signatures":[{"sig":"MEUCIQDUWJmu5ZkawTX/OUAMvRK867fDmrlBE+5UDeNDWi2J2gIgIYVd+x58kn11lQt6ONw8aKYG+PwFx7CYIES5n3Hjn5w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34221},"types":"./index.d.ts","engine":{"node":">= 14.0.0"},"gitHead":"206f5414c80eec99c93648eb02889c00d950e231","scripts":{"lint":"eslint --ext ts .","test":"NODE_OPTIONS=--enable-source-maps mocha --exit --recursive","prepack":"tsc","pretest":"tsc","lint:fix":"eslint --ext ts --fix .","test:coverage":"nyc mocha --exit --recursive && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"8.19.4","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"16.20.2","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","sinon":"^17.0.1","eslint":"^8.31.0","heredoc":"^1.3.1","typescript":"^5.4.4","@types/node":"^17.0.45","@types/mocha":"^9.1.0","@types/sinon":"^17.0.3","@typescript-eslint/parser":"^5.48.0","@typescript-eslint/eslint-plugin":"^5.48.0"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_5.0.2_1736653209013_0.8638532210949179","host":"s3://npm-registry-packages-npm-production"}},"5.0.3":{"name":"ssh-config","version":"5.0.3","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@5.0.3","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"9ae334d25ba7b357b6b181bedc631fe0bc351a28","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-5.0.3.tgz","fileCount":9,"integrity":"sha512-E+u2sZZVSOqH8uXvp/4LeXXWV4EIcfeni6eZKCGSu4uXdb5uUtpdTrSvUFpOVbC67a+Rzfl2uqlUVDbci1t/tA==","signatures":[{"sig":"MEQCIA/j0mADtEcvpjFxEERrFpwZc/Hy9THlS0PIDFb6MsyRAiBR/8Oy5UC12fDl/wL53TIwP6ioV+kqpo0HcmnTSozAGg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":34328},"types":"./index.d.ts","engine":{"node":">= 14.0.0"},"gitHead":"f0c264bb97ac11cb80c6b0c316e16871e6d6cf0a","scripts":{"lint":"eslint --ext ts .","test":"NODE_OPTIONS=--enable-source-maps mocha --exit --recursive","prepack":"tsc","pretest":"tsc","lint:fix":"eslint --ext ts --fix .","test:coverage":"nyc mocha --exit --recursive && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"jakeplus@gmail.com"},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"8.19.4","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"16.20.2","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","sinon":"^17.0.1","eslint":"^8.31.0","heredoc":"^1.3.1","typescript":"^5.4.4","@types/node":"^17.0.45","@types/mocha":"^9.1.0","@types/sinon":"^17.0.3","@typescript-eslint/parser":"^5.48.0","@typescript-eslint/eslint-plugin":"^5.48.0"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_5.0.3_1738736368242_0.9795629744388177","host":"s3://npm-registry-packages-npm-production"}},"5.0.4":{"name":"ssh-config","version":"5.0.4","author":{"url":"https://www.cyj.me","name":"Chen Yangjian"},"license":"MIT","_id":"ssh-config@5.0.4","maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"homepage":"https://github.com/cyjake/ssh-config#readme","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"dist":{"shasum":"bea2251fd9ed7acbaed32cfd5c8cd08dc44aa9cd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-5.0.4.tgz","fileCount":12,"integrity":"sha512-nCCJTY30Alhm8CWhhN8Yr1YAx2WOrDBLMMh7JYGrzCj3qssTPV+v10hYimd+8wJJeV10VrN8lFumawAEfEwjNA==","signatures":[{"sig":"MEUCICnYoVs/Sy5FZ1NoDWTJZ82BOOL+4NOFV4/2SqP/vF+PAiEAnosjMh8yKsMv6DCswSGgrjoHcdtGcqtAgblmqeHEHJY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/ssh-config@5.0.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":55818},"main":"dist/index.js","types":"dist/index.d.ts","engine":{"node":">= 14.0.0"},"gitHead":"1886ec65d8e2cb4e734ca6d74a3277573a0763c4","scripts":{"lint":"eslint --ext ts .","test":"mocha","build":"tsc","prepack":"npm run build","pretest":"npm run build","lint:fix":"eslint --ext ts --fix .","test:coverage":"nyc mocha && nyc report --reporter=lcov"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:4290568f-828f-43d7-b947-c644aacb15fe"}},"repository":{"url":"git+ssh://git@github.com/cyjake/ssh-config.git","type":"git"},"_npmVersion":"11.6.2","description":"SSH config parser and stringifier","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^8.2.1","sinon":"^17.0.1","eslint":"^8.31.0","heredoc":"^1.3.1","ts-node":"^10.9.2","typescript":"^5.4.4","@types/node":"^17.0.45","@types/mocha":"^9.1.0","@types/sinon":"^17.0.3","@typescript-eslint/parser":"^5.48.0","@typescript-eslint/eslint-plugin":"^5.48.0"},"_npmOperationalInternal":{"tmp":"tmp/ssh-config_5.0.4_1763298980231_0.03720527715611799","host":"s3://npm-registry-packages-npm-production"}},"5.1.0":{"name":"ssh-config","description":"SSH config parser and stringifier","version":"5.1.0","author":{"name":"Chen Yangjian","url":"https://www.cyj.me"},"repository":{"type":"git","url":"git+ssh://git@github.com/cyjake/ssh-config.git"},"devDependencies":{"@types/mocha":"^9.1.0","@types/node":"^17.0.45","@types/sinon":"^21.0.0","@typescript-eslint/eslint-plugin":"^5.48.0","@typescript-eslint/parser":"^5.48.0","eslint":"^8.31.0","heredoc":"^1.3.1","mocha":"^11.7.5","nyc":"^15.1.0","sinon":"^21.0.0","ts-node":"^10.9.2","typescript":"^5.4.4"},"scripts":{"lint":"eslint --ext ts .","lint:fix":"eslint --ext ts --fix .","build":"tsc && tsc -p tsconfig.cjs.json","prepack":"npm run build","pretest":"npm run build","test":"mocha --spec test/unit/**/*.test.ts --node-option=experimental-transform-types","test:coverage":"nyc mocha --spec test/unit/**/*.test.ts --node-option=experimental-transform-types && nyc report --reporter=lcov","test:legacy":"TS_NODE_PROJECT=./tsconfig.cjs.json mocha --spec test/legacy/**/*.test.ts","test:legacy:coverage":"TS_NODE_PROJECT=./tsconfig.cjs.json nyc mocha --spec test/legacy/**/*.test.ts && nyc report --reporter=lcov"},"main":"dist/ssh-config.js","exports":{"import":"./lib/ssh-config.js","require":"./dist/ssh-config.js"},"engine":{"node":">= 14.13.1"},"license":"MIT","gitHead":"79525916de5a7f656c6f3a23d890fbaff7de2681","types":"./dist/ssh-config.d.ts","_id":"ssh-config@5.1.0","bugs":{"url":"https://github.com/cyjake/ssh-config/issues"},"homepage":"https://github.com/cyjake/ssh-config#readme","_nodeVersion":"24.13.1","_npmVersion":"11.8.0","dist":{"integrity":"sha512-z4fFE4MgCja706ajwYOg6uptS3BIu0TWSUj08UWLuwNB/awVktEA5LyOgIAmgazyDjyTULhlL2GaBv37k4zoxQ==","shasum":"e77d8b769eeb0448e0bdeaf2d5e50e61b147fd3f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ssh-config/-/ssh-config-5.1.0.tgz","fileCount":15,"unpackedSize":113397,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/ssh-config@5.1.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIHL2EmpboyTj5PYyP911hDOlYXjm/lJvxa+oubTJWBCTAiEAjitvi8Ibsw8O8sFxrxc1DRtrLYnkTeQk5V+7NsbHl/I="}]},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:4290568f-828f-43d7-b947-c644aacb15fe"}},"directories":{},"maintainers":[{"name":"anonymous","email":"jakeplus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/ssh-config_5.1.0_1772079355326_0.972864902042037"},"_hasShrinkwrap":false}},"name":"ssh-config","time":{"created":"2015-01-12T03:10:20.750Z","modified":"2026-02-26T04:15:55.793Z","0.1.0":"2015-01-12T03:10:20.750Z","0.2.0":"2015-07-07T10:49:36.865Z","0.2.1":"2015-11-17T03:20:06.068Z","1.0.0":"2016-05-05T07:41:01.010Z","1.0.1":"2017-02-06T08:30:42.052Z","1.1.0":"2017-09-07T02:27:24.646Z","1.1.1":"2017-09-13T02:56:20.263Z","1.1.2":"2017-09-22T10:56:27.298Z","1.1.3":"2017-09-25T03:32:17.233Z","1.1.4":"2018-12-06T06:15:34.364Z","1.1.5":"2018-12-06T06:18:50.191Z","1.1.6":"2019-04-03T03:01:00.962Z","2.0.0-alpha.1":"2019-06-10T15:46:54.395Z","2.0.0-alpha.2":"2019-06-12T02:27:20.272Z","2.0.0-alpha.3":"2019-06-19T02:43:47.769Z","2.0.0-beta.1":"2019-07-18T03:54:16.061Z","2.0.0":"2019-10-08T02:17:22.884Z","3.0.0":"2019-12-13T09:51:32.345Z","3.0.1":"2020-01-07T10:12:48.243Z","4.0.0":"2020-01-09T01:45:16.950Z","4.0.1":"2020-02-01T13:12:54.984Z","4.0.2":"2020-02-09T15:35:24.725Z","4.0.3":"2020-08-24T08:08:15.269Z","4.0.4":"2020-09-02T01:41:53.720Z","4.0.5":"2021-01-08T02:31:59.155Z","4.0.6":"2021-05-11T03:14:25.562Z","4.1.0":"2021-10-20T10:58:25.921Z","4.1.1":"2021-10-22T01:58:15.211Z","4.1.2":"2022-01-20T04:49:20.725Z","4.1.3":"2022-03-11T11:59:30.696Z","4.1.4":"2022-04-02T04:46:14.165Z","4.1.5":"2022-06-05T04:06:02.357Z","4.1.6":"2022-06-30T10:15:29.405Z","4.2.0":"2023-01-04T14:31:58.787Z","4.2.1":"2023-02-01T02:27:31.589Z","4.3.0":"2023-08-08T04:50:17.324Z","4.4.0":"2023-09-04T08:32:36.296Z","4.4.1":"2023-10-02T01:15:45.627Z","4.4.2":"2024-02-20T05:25:19.566Z","4.4.3":"2024-04-09T01:51:49.007Z","4.4.4":"2024-05-09T05:37:41.711Z","5.0.0":"2024-08-09T02:32:18.164Z","5.0.1":"2024-11-14T12:55:27.186Z","5.0.2":"2025-01-12T03:40:09.218Z","5.0.3":"2025-02-05T06:19:28.436Z","5.0.4":"2025-11-16T13:16:20.440Z","5.1.0":"2026-02-26T04:15:55.466Z"},"readmeFilename":"Readme.md","homepage":"https://github.com/cyjake/ssh-config#readme"}