{
  "_args": [
    [
      {
        "raw": "broccoli-sri-hash@^2.1.0",
        "scope": null,
        "escapedName": "broccoli-sri-hash",
        "name": "broccoli-sri-hash",
        "rawSpec": "^2.1.0",
        "spec": ">=2.1.0 <3.0.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/ember-cli-sri"
    ]
  ],
  "_from": "broccoli-sri-hash@>=2.1.0 <3.0.0",
  "_id": "broccoli-sri-hash@2.1.2",
  "_inCache": true,
  "_location": "/broccoli-sri-hash",
  "_nodeVersion": "5.9.1",
  "_npmOperationalInternal": {
    "host": "packages-12-west.internal.npmjs.com",
    "tmp": "tmp/broccoli-sri-hash-2.1.2.tgz_1458963594282_0.0005567269399762154"
  },
  "_npmUser": {
    "name": "jonathankingston",
    "email": "jonathan@jooped.co.uk"
  },
  "_npmVersion": "3.7.3",
  "_phantomChildren": {
    "debug": "2.6.9",
    "ensure-posix-path": "1.0.2",
    "inflight": "1.0.6",
    "inherits": "2.0.3",
    "matcher-collection": "1.0.5",
    "minimatch": "3.0.4",
    "mkdirp": "0.5.1",
    "once": "1.4.0",
    "path-is-absolute": "1.0.1",
    "promise-map-series": "0.2.3",
    "quick-temp": "0.1.8",
    "rimraf": "2.6.2",
    "rsvp": "3.6.2",
    "symlink-or-copy": "1.1.8"
  },
  "_requested": {
    "raw": "broccoli-sri-hash@^2.1.0",
    "scope": null,
    "escapedName": "broccoli-sri-hash",
    "name": "broccoli-sri-hash",
    "rawSpec": "^2.1.0",
    "spec": ">=2.1.0 <3.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/ember-cli-sri"
  ],
  "_resolved": "https://registry.npmjs.org/broccoli-sri-hash/-/broccoli-sri-hash-2.1.2.tgz",
  "_shasum": "bc69905ed7a381ad325cc0d02ded071328ebf3f3",
  "_shrinkwrap": null,
  "_spec": "broccoli-sri-hash@^2.1.0",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/ember-cli-sri",
  "author": {
    "name": "Jonathan Kingston"
  },
  "bugs": {
    "url": "https://github.com/jonathanKingston/broccoli-sri-hash/issues"
  },
  "dependencies": {
    "broccoli-caching-writer": "^2.2.0",
    "mkdirp": "^0.5.1",
    "rsvp": "^3.1.0",
    "sri-toolbox": "^0.2.0",
    "symlink-or-copy": "^1.0.1"
  },
  "description": "Generates SRI hashes for html files",
  "devDependencies": {
    "broccoli": "^0.16.8",
    "chai": "^3.4.1",
    "eslint": "^2.5.1",
    "eslint-config-nightmare-mode": "^2.3.0",
    "mocha": "^2.3.4",
    "mocha-eslint": "^2.0.2",
    "snyk": "^1.13.1",
    "walk-sync": "^0.2.6"
  },
  "directories": {},
  "dist": {
    "shasum": "bc69905ed7a381ad325cc0d02ded071328ebf3f3",
    "tarball": "https://registry.npmjs.org/broccoli-sri-hash/-/broccoli-sri-hash-2.1.2.tgz"
  },
  "gitHead": "a25d9a29b9538bf03cc3987dc97da25573c1b8da",
  "homepage": "https://github.com/jonathanKingston/broccoli-sri-hash#readme",
  "license": "MIT",
  "main": "index.js",
  "maintainers": [
    {
      "name": "jonathankingston",
      "email": "jonathan@jooped.co.uk"
    },
    {
      "name": "rwjblue",
      "email": "me@rwjblue.com"
    },
    {
      "name": "stefanpenner",
      "email": "stefan.penner@gmail.com"
    }
  ],
  "name": "broccoli-sri-hash",
  "optionalDependencies": {},
  "readme": "# SRI for broccoli\n[![build status](https://secure.travis-ci.org/jonathanKingston/broccoli-sri-hash.svg)](http://travis-ci.org/jonathanKingston/broccoli-sri-hash)\n[![build status](https://ci.appveyor.com/api/projects/status/github/jonathanKingston/broccoli-sri-hash?branch=master&svg=true)](https://ci.appveyor.com/project/jonathanKingston/broccoli-sri-hash/branch/master)\n[![npm status](http://img.shields.io/npm/v/broccoli-sri-hash.svg)](https://www.npmjs.org/package/broccoli-sri-hash)\n[![dependency status](https://david-dm.org/jonathanKingston/broccoli-sri-hash.svg)](https://david-dm.org/jonathanKingston/broccoli-sri-hash)\n\nThis plugin looks at an apps html files to rewrite their content with integrity attributes.\n\n### Options\n\n- **origin** - if `crossorigin` isn't specified but `prepend` is it will add an integrity if `prepend` starts with `origin`\n- **crossorigin** - adds a crossorigin attribute to script and link elements\n    - This is **required** for CORS resources values are:\n        - `use-credentials`\n        - `anonymous`\n- **prepend** - resources with a full path will only get an applied integrity if the md5 checksum passes\n- **paranoiaCheck** - false by default, if enabled turns off the integrity attribute if any Unicode is found within the file\n- **fingerprintCheck** - true by default, if enabled validates the computed md5 checksum against the fingerprint\n\n### Example\n```js\nvar sriTree = sri('path/to/code', {\n  prefix: 'https://example.com/',\n  crossorigin: 'anonymous'\n});\n```\n\n### 'paranoiaCheck'\n\nThere was an encoding issue based on certain characters which is [landed in Chrome 46](https://code.google.com/p/chromium/issues/detail?id=527286) when using Chrome.\nThis check fails if there is any non ASCII characters. On failure the file won't have a integrity attribute added.\n**Please note** this will be removed as a default in the future; with the desire to remove all of the checking code too.\n\n### 'fingerprintCheck'\n\nIf your assets change between the time they are fingerprinted and the time they are processed for SRI, you most likely want\nto disable this check. The canonical example is if an asset contains a link to a secondary asset and is rewritten to adjust\nthe link after fingerprinting the second asset, rendering the fingerprint invalid (for anything more than a useful unique\nidentifier).\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jonathanKingston/broccoli-sri-hash.git"
  },
  "scripts": {
    "lint": "eslint index.js",
    "test": "snyk test && mocha test",
    "test:debug": "mocha debug test",
    "test:fast": "mocha test"
  },
  "version": "2.1.2"
}
