npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

packagegitconfig

1.0.0

@soldair

npmHomeRepoSnykSocket
Downloads:7
$ npm install packagegitconfig
DailyWeeklyMonthlyYearly

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' }
  */



});