Repository URL to install this package:
| 
      
     
      
        
        
        Version: 
        
         
  
        
    
          
          1.0.0-1  ▾
        
         
  
      
        
      
  
      
  
     | 
    
    atom-watchdog-dep
  
    /
        
    usr
  
        /
        
    local
  
        /
        
    lib
  
        /
        
    vending
  
        /
        
    atom-watchdog
  
        /
        
    node_modules
  
        /
        github-from-package
    | 
|---|
| .. | 
| test | 
| example | 
| index.js | 
| package.json | 
| LICENSE | 
| readme.markdown | 
| .travis.yml | 
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