api-worker/node_modules/github-from-package
2023-09-14 18:58:13 +02:00
..
example Initial commit (by create-cloudflare CLI) 2023-09-14 18:58:13 +02:00
test Initial commit (by create-cloudflare CLI) 2023-09-14 18:58:13 +02:00
.travis.yml Initial commit (by create-cloudflare CLI) 2023-09-14 18:58:13 +02:00
index.js Initial commit (by create-cloudflare CLI) 2023-09-14 18:58:13 +02:00
LICENSE Initial commit (by create-cloudflare CLI) 2023-09-14 18:58:13 +02:00
package.json Initial commit (by create-cloudflare CLI) 2023-09-14 18:58:13 +02:00
readme.markdown Initial commit (by create-cloudflare CLI) 2023-09-14 18:58:13 +02:00

github-from-package

return the github url from a package.json file

build status

example

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

methods

var github = require('github-from-package')

var url = github(pkg)

Return the most likely github url from the package.json contents pkg. If no github url can be determined, return undefined.

install

With npm do:

npm install github-from-package

license

MIT