{
  "_args": [
    [
      {
        "raw": "broccoli-source@^1.1.0",
        "scope": null,
        "escapedName": "broccoli-source",
        "name": "broccoli-source",
        "rawSpec": "^1.1.0",
        "spec": ">=1.1.0 <2.0.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/ember-cli-babel"
    ]
  ],
  "_from": "broccoli-source@>=1.1.0 <2.0.0",
  "_id": "broccoli-source@1.1.0",
  "_inCache": true,
  "_location": "/broccoli-source",
  "_nodeVersion": "2.3.4",
  "_npmUser": {
    "name": "joliss",
    "email": "joliss42@gmail.com"
  },
  "_npmVersion": "2.12.1",
  "_phantomChildren": {},
  "_requested": {
    "raw": "broccoli-source@^1.1.0",
    "scope": null,
    "escapedName": "broccoli-source",
    "name": "broccoli-source",
    "rawSpec": "^1.1.0",
    "spec": ">=1.1.0 <2.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/ember-cli",
    "/ember-cli-babel"
  ],
  "_resolved": "https://registry.npmjs.org/broccoli-source/-/broccoli-source-1.1.0.tgz",
  "_shasum": "54f0e82c8b73f46580cbbc4f578f0b32fca8f809",
  "_shrinkwrap": null,
  "_spec": "broccoli-source@^1.1.0",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/ember-cli-babel",
  "author": {
    "name": "Jo Liss",
    "email": "joliss42@gmail.com"
  },
  "bugs": {
    "url": "https://github.com/broccolijs/broccoli-source/issues"
  },
  "dependencies": {},
  "description": "Broccoli plugin for referring to source directories on the file system",
  "devDependencies": {
    "chai": "^3.2.0",
    "chai-as-promised": "^5.1.0",
    "mocha": "^2.2.5",
    "mocha-jshint": "^2.2.3"
  },
  "directories": {},
  "dist": {
    "shasum": "54f0e82c8b73f46580cbbc4f578f0b32fca8f809",
    "tarball": "https://registry.npmjs.org/broccoli-source/-/broccoli-source-1.1.0.tgz"
  },
  "gitHead": "72f1ca198f659ef69a0ebc56f2374fd4b65f2f5b",
  "homepage": "https://github.com/broccolijs/broccoli-source#readme",
  "keywords": [
    "broccoli-plugin"
  ],
  "license": "MIT",
  "main": "index.js",
  "maintainers": [
    {
      "name": "joliss",
      "email": "joliss42@gmail.com"
    }
  ],
  "name": "broccoli-source",
  "optionalDependencies": {},
  "readme": "# Broccoli Source\n\n[![Build Status](https://travis-ci.org/broccolijs/broccoli-source.svg?branch=master)](https://travis-ci.org/broccolijs/broccoli-source)\n\nBroccoli plugin for creating \"source\" nodes that refer to physical file system\ndirectories.\n\n## Example Usage\n\nIn `Brocfile.js`:\n\n```js\nvar broccoliSource = require('broccoli-source');\nvar WatchedDir = broccoliSource.WatchedDir;\nvar UnwatchedDir = broccoliSource.UnwatchedDir;\n\n// Refers to the ./lib directory on disk, and watches it.\nvar lib = new WatchedDir('lib');\n// Note: this is equivalent to the deprecated plain-string syntax:\n//var lib = 'lib';\n\n// Refers to the ./bower_components/jquery directory, but does not watch it.\nvar jquery = new UnwatchedDir('bower_components/jquery');\n```\n\n## Reference\n\n### `new WatchedDir(directoryPath, options)`\n\nCreate a Broccoli node referring to a directory on disk. The Broccoli watcher\nused by `broccoli serve` will watch the directory and all subdirectories, and\ntrigger a rebuild whenever something changes.\n\n* `directoryPath`: A path to a directory, either absolute, or relative to the\n  working directory (typically the directory containing `Brocfile.js`).\n\n  The directory must exist, or Broccoli will abort.\n\n* `options`\n\n     * `annotation`: A human-readable description for this node.\n\n### `new UnwatchedDir(directoryPath, options)`\n\nSame as `WatchedDir`, but the directory will not be watched.\n\nThis can be useful for performance reasons. For example, say you want to refer\nto a large directory hierarchy of third-party code in your `Brocfile.js`. Such\nthird-party code is rarely edited in practice. Using `UnwatchedDir` instead of\n`WatchedDir` saves the overhead of setting up useless file system watchers.\n\nWhen in doubt, use `WatchedDir` instead.\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/broccolijs/broccoli-source.git"
  },
  "scripts": {
    "pretest": "test/install_dependencies.sh",
    "test": "mocha"
  },
  "version": "1.1.0"
}
