1.0.0 • Published 7 years ago

packagegitconfig v1.0.0

Weekly downloads
22
License
MIT
Repository
github
Last release
7 years ago

Build Status

packagegitconfig

find the git folder for your package and parse the .git/config file into a useful data structure. also adds the github web url for the repo.

example

var gitconfig = require('packagegitconfig');

gitconfig('./',function(err,config){
  console.log(config);

  /* prints:
  { core: 
     { repositoryformatversion: '0',
       filemode: true,
       bare: false,
       logallrefupdates: true },
    remote: 
     { origin: 
        { url: 'git@github.com:soldair/node-packagegitconfig.git',
          fetch: '+refs/heads/*:refs/remotes/origin/*' } },
    github: 'https://github.com/soldair/node-packagegitconfig' }
  */



});