# node-packagegitconfig **Repository Path**: mirrors_soldair/node-packagegitconfig ## Basic Information - **Project Name**: node-packagegitconfig - **Description**: 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. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-06-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![Build Status](https://secure.travis-ci.org/soldair/node-packagegitconfig.png)](http://travis-ci.org/soldair/node-packagegitconfig) 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 ======= ```js 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' } */ }); ```