{
  "_args": [
    [
      {
        "raw": "git-repo-info@^1.4.1",
        "scope": null,
        "escapedName": "git-repo-info",
        "name": "git-repo-info",
        "rawSpec": "^1.4.1",
        "spec": ">=1.4.1 <2.0.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/ember-cli"
    ]
  ],
  "_from": "git-repo-info@>=1.4.1 <2.0.0",
  "_id": "git-repo-info@1.4.1",
  "_inCache": true,
  "_location": "/git-repo-info",
  "_nodeVersion": "7.1.0",
  "_npmOperationalInternal": {
    "host": "packages-12-west.internal.npmjs.com",
    "tmp": "tmp/git-repo-info-1.4.1.tgz_1486741884177_0.7138335325289518"
  },
  "_npmUser": {
    "name": "rwjblue",
    "email": "me@rwjblue.com"
  },
  "_npmVersion": "3.10.9",
  "_phantomChildren": {},
  "_requested": {
    "raw": "git-repo-info@^1.4.1",
    "scope": null,
    "escapedName": "git-repo-info",
    "name": "git-repo-info",
    "rawSpec": "^1.4.1",
    "spec": ">=1.4.1 <2.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/ember-cli"
  ],
  "_resolved": "https://registry.npmjs.org/git-repo-info/-/git-repo-info-1.4.1.tgz",
  "_shasum": "2a072823254aaf62fcf0766007d7b6651bd41943",
  "_shrinkwrap": null,
  "_spec": "git-repo-info@^1.4.1",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/ember-cli",
  "author": {
    "name": "Robert Jackson"
  },
  "bugs": {
    "url": "https://github.com/rwjblue/git-repo-info/issues"
  },
  "dependencies": {},
  "description": "Retrieve current sha and branch name from a git repo.",
  "devDependencies": {
    "mocha": "^1.21.4",
    "mocha-jshint": "^1.1.0"
  },
  "directories": {},
  "dist": {
    "shasum": "2a072823254aaf62fcf0766007d7b6651bd41943",
    "tarball": "https://registry.npmjs.org/git-repo-info/-/git-repo-info-1.4.1.tgz"
  },
  "files": [
    "index.js"
  ],
  "gitHead": "3f25daa29dcfeb3146de4ec80eb2275ebd66d21f",
  "homepage": "https://github.com/rwjblue/git-repo-info",
  "keywords": [
    "git"
  ],
  "license": "MIT",
  "main": "index.js",
  "maintainers": [
    {
      "name": "rwjblue",
      "email": "robert.w.jackson@me.com"
    }
  ],
  "name": "git-repo-info",
  "optionalDependencies": {},
  "readme": "## git-repo-info\n\nRetrieves repo information without relying on the `git` command.\n\n### Usage\n\n```javascript\nvar getRepoInfo = require('git-repo-info');\n\nvar info = getRepoInfo();\n\ninfo.branch         //=> will be the current branch\ninfo.sha            //=> will be the current sha\ninfo.abbreviatedSha //=> will be the first 10 chars of the current sha\ninfo.tag            //=> will be the tag for the current sha (or `null` if no tag exists)\ninfo.committer      //=> will be the committer for the current sha\ninfo.committerDate  //=> will be the commit date for the current sha\ninfo.author         //=> will be the author for the current sha\ninfo.authorDate     //=> will be the authored date for the current sha\ninfo.commitMessage  //=> will be the commit message for the current sha\n```\n\nWhen called without any arguments, `git-repo-info` will automatically lookup upwards\ninto parent directories to find the first match with a `.git` folder.\n\nIf passed an argument, it will be assumed to be the path to the repo's `.git` folder\nto inspect.\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rwjblue/git-repo-info.git"
  },
  "scripts": {
    "postversion": "git push && git push --tags && npm publish",
    "preversion": "npm test",
    "test": "mocha tests"
  },
  "version": "1.4.1"
}
