git-clone-promises
Advanced tools
Comparing version 0.1.0 to 0.1.1
{ | ||
"name": "git-clone-promises", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Promise wrapper for git-clone to clone repository via shell command", | ||
@@ -11,3 +11,3 @@ "main": "index.js", | ||
"type": "git", | ||
"url": "git+https://github.com/TheRolfFR/git-clone-promise.git" | ||
"url": "git+https://github.com/TheRolfFR/git-clone-promises.git" | ||
}, | ||
@@ -23,9 +23,12 @@ "keywords": [ | ||
"bugs": { | ||
"url": "https://github.com/TheRolfFR/git-clone-promise/issues" | ||
"url": "https://github.com/TheRolfFR/git-clone-promises/issues" | ||
}, | ||
"homepage": "https://github.com/TheRolfFR/git-clone-promise#readme", | ||
"homepage": "https://github.com/TheRolfFR/git-clone-promises#readme", | ||
"dependencies": { | ||
"git-clone": "^0.1.0" | ||
}, | ||
"files": [ | ||
"index.js" | ||
], | ||
"devDependencies": {} | ||
} |
@@ -1,2 +0,2 @@ | ||
# git-clone-promise | ||
# git-clone-promises | ||
@@ -9,7 +9,7 @@ Promise version of [jaz303](https://github.com/jaz303)'s [git-clone](https://www.npmjs.com/package/git-clone) npm module. Clones a git repository via shell command and with promises! | ||
$ npm install git-clone-promise | ||
$ npm install git-clone-promises | ||
Require: | ||
const { clone, cloneCallback } = require('git-clone-promise'); | ||
const { clone, cloneCallback } = require('git-clone-promises'); | ||
@@ -35,4 +35,4 @@ ## API | ||
```js | ||
const { clone } = require('git-clone-promise'); | ||
clone('https://github.com/TheRolfFR/git-clone-promise.git', './test-clone', { | ||
const { clone } = require('git-clone-promises'); | ||
clone('https://github.com/TheRolfFR/git-clone-promises.git', './test-clone', { | ||
remove: true | ||
@@ -51,4 +51,4 @@ }).then(() => { | ||
```js | ||
const { cloneCallback } = require('git-clone-promise'); | ||
cloneCallback('https://github.com/TheRolfFR/git-clone-promise.git', './test-clone', { | ||
const { cloneCallback } = require('git-clone-promises'); | ||
cloneCallback('https://github.com/TheRolfFR/git-clone-promises.git', './test-clone', { | ||
remove: true | ||
@@ -55,0 +55,0 @@ }, function (err) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5675
4
81