{
  "_args": [
    [
      {
        "raw": "ember-cli-inject-live-reload@^1.4.1",
        "scope": null,
        "escapedName": "ember-cli-inject-live-reload",
        "name": "ember-cli-inject-live-reload",
        "rawSpec": "^1.4.1",
        "spec": ">=1.4.1 <2.0.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline"
    ]
  ],
  "_from": "ember-cli-inject-live-reload@>=1.4.1 <2.0.0",
  "_id": "ember-cli-inject-live-reload@1.7.0",
  "_inCache": true,
  "_location": "/ember-cli-inject-live-reload",
  "_nodeVersion": "8.1.2",
  "_npmOperationalInternal": {
    "host": "s3://npm-registry-packages",
    "tmp": "tmp/ember-cli-inject-live-reload-1.7.0.tgz_1500064401343_0.04768515727482736"
  },
  "_npmUser": {
    "name": "rwjblue",
    "email": "me@rwjblue.com"
  },
  "_npmVersion": "5.1.0",
  "_phantomChildren": {},
  "_requested": {
    "raw": "ember-cli-inject-live-reload@^1.4.1",
    "scope": null,
    "escapedName": "ember-cli-inject-live-reload",
    "name": "ember-cli-inject-live-reload",
    "rawSpec": "^1.4.1",
    "spec": ">=1.4.1 <2.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "#DEV:/"
  ],
  "_resolved": "https://registry.npmjs.org/ember-cli-inject-live-reload/-/ember-cli-inject-live-reload-1.7.0.tgz",
  "_shasum": "af94336e015336127dfb98080ad442bb233e37ed",
  "_shrinkwrap": null,
  "_spec": "ember-cli-inject-live-reload@^1.4.1",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline",
  "author": {
    "name": "Robert Jackson"
  },
  "bugs": {
    "url": "https://github.com/rwjblue/ember-cli-inject-live-reload/issues"
  },
  "dependencies": {},
  "description": "Plugin for ember-cli that injects live-reload script into HTML content.",
  "devDependencies": {},
  "directories": {},
  "dist": {
    "integrity": "sha512-+0zOwJlf4iR5NcvyeU7E7xU1qDfniP/+mXfNTfAEhHO2eE9sjQvasKV84O1sIIyLk2LMIjFPbGt7uv5fQcIGwg==",
    "shasum": "af94336e015336127dfb98080ad442bb233e37ed",
    "tarball": "https://registry.npmjs.org/ember-cli-inject-live-reload/-/ember-cli-inject-live-reload-1.7.0.tgz"
  },
  "ember-addon": {
    "before": [
      "serve-files-middleware",
      "broccoli-watcher"
    ]
  },
  "gitHead": "b5d8e218d60983e29255efe7fcb3a0bf0262116e",
  "homepage": "https://github.com/rwjblue/ember-cli-inject-live-reload",
  "keywords": [
    "ember-addon"
  ],
  "license": "MIT",
  "main": "index.js",
  "maintainers": [
    {
      "name": "rwjblue",
      "email": "robert.w.jackson@me.com"
    }
  ],
  "name": "ember-cli-inject-live-reload",
  "optionalDependencies": {},
  "readme": "# ember-cli-inject-live-reload\n\nPlugin for ember-cli that injects live-reload script into HTML content.\n\n## Overview\n\nThis plugin injects a script tag to load `ember-cli-live-reload.js` in the head of your application's html.\n\nThe contents of `ember-cli-live-reload.js` are dynamically generated to configure and inject `livereload.js`, which is served by Ember CLI courtesy of its `tiny-lr` dependency.\n\n`livereload.js` initiates a websocket connection back to Ember CLI. This allows Ember CLI to notify the browser to trigger a refresh after JavaScript or style changes.\n\n## Configuration\n\nFor vanilla Ember CLI apps, no configuration is required.\n\nThe following options are supported via command line arguments or the `.ember-cli` file:\n\n|Option|Purpose|\n|------|-------|\n| `liveReload` | Defaults to `true` during `ember serve`. Set to `false` to prevent the livereload script tag from being injected. |\n| `liveReloadPort` | Specifies the port that `ember-cli-live-reload.js` and `livereload.js` are loaded from  |\n| `liveReloadHost` | The host that `ember-cli-live-reload.js` will be loaded from |\n\nThe following options are supported via the `.ember-cli` file:\n\n|Option|Purpose|\n|------|-------|\n| `liveReloadJsUrl` | The absolute URL used to load `livereload.js`. If specified, this overrides the `liveReloadPort` option.  |\n| `liveReloadOptions` | JavaScript object for LiveReload options. LiveReload supports a number of [options](https://github.com/livereload/livereload-js#options) for configuring websocket communication, including `https`, `host`, `port`, and others. See advanced example below. |\n\n## Advanced Example Configuration\n\n**NOTE:** Most apps will be fine with _no_ special configuration. Only use this sort of configuration if you have reason to override the default LiveReload websocket behavior. A use case for this is serving Ember CLI apps in development via a reverse proxy such as nginx.\n\n##### .ember-cli\n\n```javascript\n{\n  \"liveReloadPort\": 37531,\n\n  // This `liveReloadOptions` property becomes `window.LiveReloadOptions`\n  \"liveReloadOptions\": {\n    \"port\": 37631,\n    \"https\": true,\n    \"host\": \"your-hostname.dev\"\n  },\n\n  \"liveReloadJsUrl\": \"https://your-hostname.dev/livereload.js\"\n}\n```\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git://github.com/rwjblue/ember-cli-inject-live-reload.git"
  },
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "version": "1.7.0"
}
