{
  "_args": [
    [
      {
        "raw": "compression-webpack-plugin@github:webpack/compression-webpack-plugin#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
        "scope": null,
        "escapedName": "compression-webpack-plugin",
        "name": "compression-webpack-plugin",
        "rawSpec": "github:webpack/compression-webpack-plugin#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
        "spec": "github:webpack/compression-webpack-plugin#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
        "type": "hosted",
        "hosted": {
          "type": "github",
          "ssh": "git@github.com:webpack/compression-webpack-plugin.git#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
          "sshUrl": "git+ssh://git@github.com/webpack/compression-webpack-plugin.git#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
          "httpsUrl": "git+https://github.com/webpack/compression-webpack-plugin.git#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
          "gitUrl": "git://github.com/webpack/compression-webpack-plugin.git#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
          "shortcut": "github:webpack/compression-webpack-plugin#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
          "directUrl": "https://raw.githubusercontent.com/webpack/compression-webpack-plugin/7e55907cd54a2e91b96d25a660acc6a2a6453f54/package.json"
        }
      },
      "/var/www/html/maps.rubinmuseum.org/public_html/cms_client/node_modules/angular-cli"
    ]
  ],
  "_from": "webpack/compression-webpack-plugin#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
  "_id": "compression-webpack-plugin@0.3.2",
  "_inCache": true,
  "_location": "/compression-webpack-plugin",
  "_phantomChildren": {},
  "_requested": {
    "raw": "compression-webpack-plugin@github:webpack/compression-webpack-plugin#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
    "scope": null,
    "escapedName": "compression-webpack-plugin",
    "name": "compression-webpack-plugin",
    "rawSpec": "github:webpack/compression-webpack-plugin#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
    "spec": "github:webpack/compression-webpack-plugin#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
    "type": "hosted",
    "hosted": {
      "type": "github",
      "ssh": "git@github.com:webpack/compression-webpack-plugin.git#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
      "sshUrl": "git+ssh://git@github.com/webpack/compression-webpack-plugin.git#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
      "httpsUrl": "git+https://github.com/webpack/compression-webpack-plugin.git#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
      "gitUrl": "git://github.com/webpack/compression-webpack-plugin.git#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
      "shortcut": "github:webpack/compression-webpack-plugin#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
      "directUrl": "https://raw.githubusercontent.com/webpack/compression-webpack-plugin/7e55907cd54a2e91b96d25a660acc6a2a6453f54/package.json"
    }
  },
  "_requiredBy": [
    "/angular-cli"
  ],
  "_resolved": "git://github.com/webpack/compression-webpack-plugin.git#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
  "_shasum": "6a3476168a1d7145b50f4cdce49ec55bf978408a",
  "_shrinkwrap": null,
  "_spec": "compression-webpack-plugin@github:webpack/compression-webpack-plugin#7e55907cd54a2e91b96d25a660acc6a2a6453f54",
  "_where": "/var/www/html/maps.rubinmuseum.org/public_html/cms_client/node_modules/angular-cli",
  "author": {
    "name": "Tobias Koppers @sokra"
  },
  "bugs": {
    "url": "https://github.com/webpack/compression-webpack-plugin/issues"
  },
  "dependencies": {
    "async": "0.2.x",
    "node-zopfli": "^2.0.0",
    "webpack-sources": "^0.1.0"
  },
  "description": "Prepare compressed versions of assets to serve them with Content-Encoding",
  "devDependencies": {},
  "gitHead": "7e55907cd54a2e91b96d25a660acc6a2a6453f54",
  "homepage": "http://github.com/webpack/compression-webpack-plugin",
  "licenses": [
    {
      "type": "MIT",
      "url": "http://www.opensource.org/licenses/mit-license.php"
    }
  ],
  "name": "compression-webpack-plugin",
  "optionalDependencies": {
    "node-zopfli": "^2.0.0"
  },
  "readme": "# compression plugin for webpack\n\n## Usage\n\n``` javascript\nvar CompressionPlugin = require(\"compression-webpack-plugin\");\nmodule.exports = {\n\tplugins: [\n\t\tnew CompressionPlugin({\n\t\t\tasset: \"[path].gz[query]\",\n\t\t\talgorithm: \"gzip\",\n\t\t\ttest: /\\.js$|\\.html$/,\n\t\t\tthreshold: 10240,\n\t\t\tminRatio: 0.8\n\t\t})\n\t]\n}\n```\n\nArguments:\n\n* `asset`: The target asset name. `[file]` is replaced with the original asset. `[path]` is replaced with the path of the original asset and `[query]` with the query. Defaults to `\"[path].gz[query]\"`.\n* `algorithm`: Can be a `function(buf, callback)` or a string. For a string the algorithm is taken from `zlib` (or zopfli for `zopfli`). Defaults to `\"gzip\"`.\n* `test`: All assets matching this RegExp are processed. Defaults to every asset.\n* `threshold`: Only assets bigger than this size are processed. In bytes. Defaults to `0`.\n* `minRatio`: Only assets that compress better that this ratio are processed. Defaults to `0.8`.\n\nOption Arguments for Zopfli (see [node-zopfli](https://github.com/pierreinglebert/node-zopfli#options) doc for details):\n* verbose: Default: false,\n* verbose_more: Default: false,\n* numiterations: Default: 15,\n* blocksplitting: Default: true,\n* blocksplittinglast: Default: false,\n* blocksplittingmax: Default: 15\n\n## License\n\nMIT (http://www.opensource.org/licenses/mit-license.php)",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/webpack/compression-webpack-plugin.git"
  },
  "version": "0.3.2"
}
