{
  "_args": [
    [
      {
        "raw": "hash-for-dep@^1.0.2",
        "scope": null,
        "escapedName": "hash-for-dep",
        "name": "hash-for-dep",
        "rawSpec": "^1.0.2",
        "spec": ">=1.0.2 <2.0.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/broccoli-babel-transpiler"
    ]
  ],
  "_from": "hash-for-dep@>=1.0.2 <2.0.0",
  "_id": "hash-for-dep@1.2.3",
  "_inCache": true,
  "_location": "/hash-for-dep",
  "_nodeVersion": "8.6.0",
  "_npmOperationalInternal": {
    "host": "s3://npm-registry-packages",
    "tmp": "tmp/hash-for-dep-1.2.3.tgz_1510110491578_0.3490103385411203"
  },
  "_npmUser": {
    "name": "rwjblue",
    "email": "me@rwjblue.com"
  },
  "_npmVersion": "5.5.1",
  "_phantomChildren": {},
  "_requested": {
    "raw": "hash-for-dep@^1.0.2",
    "scope": null,
    "escapedName": "hash-for-dep",
    "name": "hash-for-dep",
    "rawSpec": "^1.0.2",
    "spec": ">=1.0.2 <2.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/broccoli-babel-transpiler",
    "/broccoli-persistent-filter",
    "/ember-cli-htmlbars",
    "/ember-cli-htmlbars-inline-precompile"
  ],
  "_resolved": "https://registry.npmjs.org/hash-for-dep/-/hash-for-dep-1.2.3.tgz",
  "_shasum": "5ec69fca32c23523972d52acb5bb65ffc3664cab",
  "_shrinkwrap": null,
  "_spec": "hash-for-dep@^1.0.2",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/broccoli-babel-transpiler",
  "author": {
    "name": "Stefan Penner",
    "email": "stefan.penner@gmail.com"
  },
  "bugs": {
    "url": "https://github.com/stefanpenner/hash-for-dep/issues"
  },
  "dependencies": {
    "broccoli-kitchen-sink-helpers": "^0.3.1",
    "heimdalljs": "^0.2.3",
    "heimdalljs-logger": "^0.1.7",
    "resolve": "^1.4.0"
  },
  "description": "generates a hash that represents a module and its depenencies uniqueness",
  "devDependencies": {
    "chai": "^3.5.0",
    "mocha": "^2.2.4",
    "mocha-jshint": "^1.0.0"
  },
  "directories": {},
  "dist": {
    "integrity": "sha512-NE//rDaCFpWHViw30YM78OAGBShU+g4dnUGY3UWGyEzPOGYg/ptOjk32nEc+bC1xz+RfK5UIs6lOL6eQdrV4Ow==",
    "shasum": "5ec69fca32c23523972d52acb5bb65ffc3664cab",
    "tarball": "https://registry.npmjs.org/hash-for-dep/-/hash-for-dep-1.2.3.tgz"
  },
  "gitHead": "37f17801b424b622eb8a26b8f4858579b91456d6",
  "homepage": "https://github.com/stefanpenner/hash-for-dep#readme",
  "license": "ISC",
  "main": "index.js",
  "maintainers": [
    {
      "name": "hjdivad",
      "email": "npm@hjdivad.com"
    },
    {
      "name": "jayphelps",
      "email": "hello@jayphelps.com"
    },
    {
      "name": "kellyselden",
      "email": "kellyselden@gmail.com"
    },
    {
      "name": "rwjblue",
      "email": "me@rwjblue.com"
    },
    {
      "name": "stefanpenner",
      "email": "stefan.penner@gmail.com"
    }
  ],
  "name": "hash-for-dep",
  "optionalDependencies": {},
  "readme": "# hash-for-dep [![Build Status](https://travis-ci.org/stefanpenner/hash-for-dep.svg?branch=stuff)](https://travis-ci.org/stefanpenner/hash-for-dep) [![Build status](https://ci.appveyor.com/api/projects/status/wf2u3j6lc52hdd21?svg=true)](https://ci.appveyor.com/project/embercli/hash-for-dep)\n\nGenerate a hash representing the stats of this module files and all its descendents files.\n\n\n```js\nvar hashForDep = require('hash-for-dep');\n\nhashForDep('rsvp'); // if RSVP is a dependency of the current project, you will get a checksum for it\nhashForDep('rsvp', 'path/to/other/project'); //  you will get a checksum for RSVP resolved relative to the provided root\n```\n\n## Cache\n\nNOTE: By default, these hashes are cached for the life of the process. As this\nis the same strategy node uses for `require(x)` we can safely follow suite.\n\nThat being said, some scenarios may exist where this is not wanted. So just\nlike `require._cache` exists, we provide the following options:\n\n#### To evict the cache manually (maybe for testing)\n\n```js\nrequire('hash-for-dep')._resetCache();\n```\n\n#### To opt out of the cache on a per invocation basis\n\n```js\nvar hashForDep = require('hash-for-dep');\n\nhashForDep(name, path, null, false /* this mysterious argument should be set to false */);\n```\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/stefanpenner/hash-for-dep.git"
  },
  "scripts": {
    "test": "mocha tests/**/*-test.js tests/jshint.spec.js",
    "test:debug": "mocha debug tests/**/*-test.js tests/jshint.spec.js"
  },
  "version": "1.2.3"
}
