Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/hosted-git-info/lib/index.js')
-rw-r--r--node_modules/hosted-git-info/lib/index.js11
1 files changed, 9 insertions, 2 deletions
diff --git a/node_modules/hosted-git-info/lib/index.js b/node_modules/hosted-git-info/lib/index.js
index 65d3d5f37..a7339c217 100644
--- a/node_modules/hosted-git-info/lib/index.js
+++ b/node_modules/hosted-git-info/lib/index.js
@@ -4,7 +4,6 @@ const LRU = require('lru-cache')
const hosts = require('./hosts.js')
const fromUrl = require('./from-url.js')
const parseUrl = require('./parse-url.js')
-const getProtocols = require('./protocols.js')
const cache = new LRU({ max: 1000 })
@@ -22,7 +21,15 @@ class GitHost {
}
static #gitHosts = { byShortcut: {}, byDomain: {} }
- static #protocols = getProtocols()
+ static #protocols = {
+ 'git+ssh:': { name: 'sshurl' },
+ 'ssh:': { name: 'sshurl' },
+ 'git+https:': { name: 'https', auth: true },
+ 'git:': { auth: true },
+ 'http:': { auth: true },
+ 'https:': { auth: true },
+ 'git+http:': { auth: true },
+ }
static addHost (name, host) {
GitHost.#gitHosts[name] = host