npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

git-dependency

v0.1.0

Published

Install / clones git repositories as dependencies defined in package.json.

Readme

git-dependency

Install defined GIT repos to a directory

This small command line tool has the following purpose:

  • It fetches / clones GIT repos into a local folder
  • It stores the installed git repo infos in package.json

This tool is mainly used during development: The GIT repos needed during development / as part of the package can be defined in package.json, so this information is part of the main repo and can be distributed to source control.

We created this tool to replace Bower, but cannot use npm/yarn for non-JS/Web repositories.

Installation

npm install --save git-dependency

Usage

Note: This tool assumes a package.json in the current working directory.

Install a GIT repo

git-dependency add [local name] [git-url]#[git-ref]

For example:

git-dependency add php-injector https://github.com/bylexus/php-injector.git#0.0.8

This adds the mentioned git repo to components/php-injector and checks out tag 0.0.8.

If you omit the refspec, master is assumed.

The added repo is stored in package.json, in the gitDependencies object.

Install / update repos

To install / update repos configured in package.json, execute

git-dependency install

This installs the repos configured in package.json into components (or the configured base folder) by executing the follwing git commands:

  • git clone (for not installed repos)
  • or git fetch --all (for already installed repos)
  • git checkout [ref]
  • git pull (for branch refs)

Remove installed repo

git-dependency remove [name]

e.g.:

git-dependency remove php-injector

This removes the git repo from the disk as well as from package.json

Define base folder

The standard folder for cloning git repos is components/ in the current working dir containing package.json. You can change this location by adding a config to package.json:

{
  "directories": {
    "gitDependencies": "webroot/git-repos"
  }
}

Manually change repo entries in package.json

The installed repos are stored in package.json. You can manually edit the entries, if needed. The structure looks as follows:

{
  "gitDependencies": {
    "[local name]": "[repo-url]#[branch/tag]",
    ...
  }
}

For example:

{
  "gitDependencies": {
    "components-ext": "https://gitlab.kadenpartner.ch/kp/components-ext.git#0.2.2",
    "php-injector": "https://github.com/bylexus/php-injector.git#0.0.8"
  }
}

and then install them with

git-dependency install

Options

The gitDependencies key in package.json takes a special options object to configure some aspects of git-dependency:

{
    "gitDependencies": {
        "options": {
            "deleteDotGit": false
        }
    }
}

options.deleteDotGit

If deleteDotGit is set to true, the .git folder within the cloned repo dir is deleted, so that only the checked out files remain. This saves some megabytes of disk space if the repository is big. On the other side, the repo is newly checked out every time you execute git-dependency install again.

(c) [email protected]