revere.dev/safelock/dashboard/node_modules/github-from-package
Brandon Hall 87bad2254c Remi a skid 2024-07-01 20:55:25 +01:00
..
example Remi a skid 2024-07-01 20:55:25 +01:00
test Remi a skid 2024-07-01 20:55:25 +01:00
.travis.yml Remi a skid 2024-07-01 20:55:25 +01:00
LICENSE Remi a skid 2024-07-01 20:55:25 +01:00
index.js Remi a skid 2024-07-01 20:55:25 +01:00
package.json Remi a skid 2024-07-01 20:55:25 +01:00
readme.markdown Remi a skid 2024-07-01 20:55:25 +01:00

readme.markdown

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