世祺 0423d5801c Initial commit (by Create-Cloudflare CLI) | 1 gadu atpakaļ | |
---|---|---|
.. | ||
example | 1 gadu atpakaļ | |
test | 1 gadu atpakaļ | |
.travis.yml | 1 gadu atpakaļ | |
LICENSE | 1 gadu atpakaļ | |
index.js | 1 gadu atpakaļ | |
package.json | 1 gadu atpakaļ | |
readme.markdown | 1 gadu atpakaļ |
return the github url from a package.json file
For the ./package.json
file:
{
"name": "beep-boop",
"version": "1.2.3",
"repository" : {
"type" : "git",
"url": "git@github.com:substack/beep-boop.git"
}
}
var github = require('github-from-package');
var url = github(require('./package.json'));
console.log(url);
https://github.com/substack/beep-boop
var github = require('github-from-package')
Return the most likely github url from the package.json contents pkg
. If no
github url can be determined, return undefined
.
With npm do:
npm install github-from-package
MIT