New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

git-remote-url

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-remote-url - npm Package Compare versions

Comparing version

to
0.0.2

@@ -13,3 +13,3 @@ 'use strict';

if ('remote' in config && remote in config.remote && 'url' in config.remote.origin) {
if ('remote' in config && remote in config.remote && 'url' in config.remote[remote]) {
resolve(config.remote[remote].url);

@@ -16,0 +16,0 @@ } else {

{
"name": "git-remote-url",
"version": "0.0.1",
"version": "0.0.2",
"description": "Get a remote URL of a git repository",

@@ -22,2 +22,3 @@ "main": "index.js",

"devDependencies": {
"mocha": "^2.3.3",
"temp": "^0.8.3"

@@ -24,0 +25,0 @@ },

# git-remote-url
Get a remote URL of a git repository
[![Build Status](https://travis-ci.org/marco-c/git-remote-url.svg?branch=master)](https://travis-ci.org/marco-c/git-remote-url)
[![dependencies](https://david-dm.org/marco-c/git-remote-url.svg)](https://david-dm.org/marco-c/git-remote-url)
[![devdependencies](https://david-dm.org/marco-c/git-remote-url/dev-status.svg)](https://david-dm.org/marco-c/git-remote-url#info=devDependencies)

@@ -45,2 +45,17 @@ 'use strict';

it('returns the correct URLs when there\'s no origin remote', function() {
childProcess.execSync('git init');
childProcess.execSync('git remote add remote1 https://github.com/marco-c/remote1.git');
childProcess.execSync('git remote add remote2 https://github.com/marco-c/remote2.git');
return Promise.all([
gitRemoteUrl('./', 'remote1').then(function(url) {
assert.equal(url, 'https://github.com/marco-c/remote1.git');
}),
gitRemoteUrl('./', 'remote2').then(function(url) {
assert.equal(url, 'https://github.com/marco-c/remote2.git');
}),
]);
});
it('fails when the directory isn\'t a git repository', function() {

@@ -47,0 +62,0 @@ return gitRemoteUrl('./', 'origin').then(function(url) {