{
  "_args": [
    [
      {
        "raw": "ember-cli-htmlbars@^2.0.1",
        "scope": null,
        "escapedName": "ember-cli-htmlbars",
        "name": "ember-cli-htmlbars",
        "rawSpec": "^2.0.1",
        "spec": ">=2.0.1 <3.0.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline"
    ]
  ],
  "_from": "ember-cli-htmlbars@>=2.0.1 <3.0.0",
  "_id": "ember-cli-htmlbars@2.0.3",
  "_inCache": true,
  "_location": "/ember-cli-htmlbars",
  "_nodeVersion": "8.1.2",
  "_npmOperationalInternal": {
    "host": "s3://npm-registry-packages",
    "tmp": "tmp/ember-cli-htmlbars-2.0.3.tgz_1501366842536_0.9271471945103258"
  },
  "_npmUser": {
    "name": "rwjblue",
    "email": "me@rwjblue.com"
  },
  "_npmVersion": "5.1.0",
  "_phantomChildren": {},
  "_requested": {
    "raw": "ember-cli-htmlbars@^2.0.1",
    "scope": null,
    "escapedName": "ember-cli-htmlbars",
    "name": "ember-cli-htmlbars",
    "rawSpec": "^2.0.1",
    "spec": ">=2.0.1 <3.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/"
  ],
  "_resolved": "https://registry.npmjs.org/ember-cli-htmlbars/-/ember-cli-htmlbars-2.0.3.tgz",
  "_shasum": "e116e1500dba12f29c94b05b9ec90f52cb8bb042",
  "_shrinkwrap": null,
  "_spec": "ember-cli-htmlbars@^2.0.1",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline",
  "author": {
    "name": "Jonathan Jackson & Chase McCarthy"
  },
  "bugs": {
    "url": "https://github.com/ember-cli/ember-cli-htmlbars/issues"
  },
  "dependencies": {
    "broccoli-persistent-filter": "^1.0.3",
    "hash-for-dep": "^1.0.2",
    "json-stable-stringify": "^1.0.0",
    "strip-bom": "^3.0.0"
  },
  "description": "A library for adding htmlbars to ember CLI",
  "devDependencies": {
    "bower": "^1.3.12",
    "broccoli": "^0.16.7",
    "broccoli-concat": "^3.2.2",
    "co": "^4.6.0",
    "mocha": "^3.0.2",
    "mocha-jshint": "^2.3.1"
  },
  "directories": {},
  "dist": {
    "integrity": "sha512-oyWtJebOwxAqWZwMc0NKFJ8FJdxVixM7zl0FaXq1vTAG6bOgnU7yAhXEASlaO5f+PptZueZfOpdpvRwZW/Gk1A==",
    "shasum": "e116e1500dba12f29c94b05b9ec90f52cb8bb042",
    "tarball": "https://registry.npmjs.org/ember-cli-htmlbars/-/ember-cli-htmlbars-2.0.3.tgz"
  },
  "ember-addon": {
    "main": "ember-addon-main.js"
  },
  "engines": {
    "node": ">= 4.0.0"
  },
  "files": [
    "index.js",
    "ember-addon-main.js",
    "utils.js"
  ],
  "gitHead": "42e8b0347b6b207d4d3846318f7f366dbe26d319",
  "homepage": "https://github.com/ember-cli/ember-cli-htmlbars",
  "keywords": [
    "ember-cli",
    "ember-addon"
  ],
  "license": "MIT",
  "main": "index.js",
  "maintainers": [
    {
      "name": "ember-cli",
      "email": "stefan.penner+ember-cli@gmail.com"
    },
    {
      "name": "rondale-sc",
      "email": "jonathan.jackson1@me.com"
    },
    {
      "name": "rwjblue",
      "email": "me@rwjblue.com"
    },
    {
      "name": "stefanpenner",
      "email": "stefan.penner@gmail.com"
    }
  ],
  "name": "ember-cli-htmlbars",
  "optionalDependencies": {},
  "readme": "# Ember CLI HTMLBars\n\n[![Build Status](https://travis-ci.org/ember-cli/ember-cli-htmlbars.svg?branch=master)](https://travis-ci.org/ember-cli/ember-cli-htmlbars)\n[![Build status](https://ci.appveyor.com/api/projects/status/b5njc8lsjce76mv6/branch/master?svg=true)](https://ci.appveyor.com/project/embercli/ember-cli-htmlbars/branch/master)\n\n### Handlebars 2.0 Support\n\nHandlebars 2.0 support has been removed. If you are using ember-cli-htmlbars with a 1.9.x project please continue\nto use ember-cli-htmlbars@0.6.x.\n\n### Using as a Broccoli Plugin\n\n```javascript\nvar HtmlbarsCompiler = require('ember-cli-htmlbars');\n\nvar templateTree = new HtmlbarsCompiler('app/templates', {\n  isHTMLBars: true,\n\n  // provide the templateCompiler that is paired with your Ember version\n  templateCompiler: require('./bower_components/ember/ember-template-compiler')\n});\n```\n\n### Registering a Plugin\n\n```javascript\nvar SomeTransform = require('./some-path/transform');\n\nmodule.exports = {\n  name: 'my-addon-name',\n\n  included: function() {\n    // we have to wrap these in an object so the ember-cli\n    // registry doesn't try to call `new` on them (new is actually\n    // called within htmlbars when compiling a given template).\n    this.app.registry.add('htmlbars-ast-plugin', {\n      name: 'some-transform',\n      plugin: SomeTransform\n    });\n  }\n};\n```\n\n### Precompile HTMLBars template strings within other addons\n\n```javascript\nmodule.exports = {\n  name: 'my-addon-name',\n\n  setupPreprocessorRegistry: function(type, registry) {\n    var htmlbarsPlugin = registry.load('template').find(function(plugin) {\n      return plugin.name === 'ember-cli-htmlbars';\n    });\n\n    // precompile any htmlbars template string via the precompile method on the\n    // ember-cli-htmlbars plugin wrapper; `precompiled` will be a string of the\n    // form:\n    //\n    //   Ember.HTMLBars.template(function() {...})\n    //\n    var precompiled = htmlbarsPlugin.precompile(\"{{my-component}}\");\n  }\n};\n```\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/ember-cli/ember-cli-htmlbars.git"
  },
  "scripts": {
    "prepublish": "bower install",
    "test": "mocha test/*.js",
    "test:debug": "mocha debug test/*.js"
  },
  "version": "2.0.3"
}
