{"maintainers":[{"email":"eric@smarterspam.com","name":"ericclemmons"},{"email":"wiens.joshua@gmail.com","name":"d3viant0ne"},{"email":"bebraw@gmail.com","name":"bebraw"},{"email":"mail@johannesewald.de","name":"jhnns"},{"email":"sean.larkin@cuw.edu","name":"thelarkinn"},{"email":"tobias.koppers@googlemail.com","name":"sokra"},{"email":"j.tangelder@gmail.com","name":"jtangelder"}],"dist-tags":{"latest":"0.18.2"},"author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","readme":"[![npm][npm]][npm-url]\r\n[![node][node]][node-url]\r\n[![deps][deps]][deps-url]\r\n[![chat][chat]][chat-url]\r\n\r\n<div align=\"center\">\r\n  <a href=\"https://github.com/webpack/webpack\">\r\n    <img width=\"200\" height=\"200\"\r\n      src=\"https://webpack.js.org/assets/icon-square-big.svg\">\r\n  </a>\r\n  <h1>Style Loader</h1>\r\n  <p>Adds CSS to the DOM by injecting a <code>&lt;style&gt;</code> tag</p>\r\n</div>\r\n\r\n<h2 align=\"center\">Install</h2>\r\n\r\n```\r\nnpm install style-loader --save-dev\r\n```\r\n\r\n<h2 align=\"center\"><a href=\"https://webpack.js.org/concepts/loaders\">Usage</a></h2>\r\n\r\nIt's recommended to combine `style-loader` with the [`css-loader`](https://github.com/webpack/css-loader)\r\n\r\n**component.js**\r\n```js\r\nimport style from './file.css'\r\n```\r\n\r\n**webpack.config.js**\r\n```js\r\n{\r\n  module: {\r\n    rules: [\r\n      {\r\n        test: /\\.css$/,\r\n        use: [\r\n          { loader: \"style-loader\" },\r\n          { loader: \"css-loader\" }\r\n        ]\r\n      }\r\n    ]\r\n  }\r\n}\r\n```\r\n\r\n#### `Locals (CSS Modules)`\r\n\r\nWhen using [local scoped CSS](https://github.com/webpack/css-loader#css-scope) the module exports the generated identifiers (locals).\r\n\r\n**component.js**\r\n```js\r\nimport style from './file.css'\r\n\r\nstyle.className === \"z849f98ca812\"\r\n```\r\n\r\n### `Url`\r\n\r\nIt's also possible to add a URL `<link href=\"path/to/file.css\" rel=\"stylesheet\">` instead of a inlining the CSS `{String}` with `<style></style>` tag.\r\n\r\n```js\r\nimport url from 'file.css'\r\n```\r\n\r\n**webpack.config.js**\r\n```js\r\n{\r\n  module: {\r\n    rules: [\r\n      {\r\n        test: /\\.css$/,\r\n        use: [\r\n          { loader: \"style-loader/url\" },\r\n          { loader: \"file-loader\" }\r\n        ]\r\n      }\r\n    ]\r\n  }\r\n}\r\n```\r\n\r\n```html\r\n<link rel=\"stylesheet\" href=\"path/to/file.css\">\r\n```\r\n\r\n> :information_source: Source maps and assets referenced with `url`: when style loader is used with `{ options: { sourceMap: true } }` option, the CSS modules will be generated as `Blob`s, so relative paths don't work (they would be relative to `chrome:blob` or `chrome:devtools`). In order for assets to maintain correct paths setting `output.publicPath` property of webpack configuration must be set, so that absolute paths are generated. Alternatively you can enable the `convertToAbsoluteUrls` option mentioned above.\r\n\r\n### `Useable`\r\n\r\nBy convention the `Reference Counter API` should be bound to `.useable.css` and the `.css` should be loaded with basic `style-loader` usage.(similar to other file types, i.e. `.useable.less` and `.less`).\r\n\r\n**webpack.config.js**\r\n```js\r\n{\r\n  module: {\r\n    rules: [\r\n      {\r\n        test: /\\.css$/,\r\n        use: [\r\n          { loader: \"style-loader\" },\r\n          { loader: \"css-loader\" },\r\n        ],\r\n      },\r\n      {\r\n        test: /\\.useable\\.css$/,\r\n        use: [\r\n          {\r\n            loader: \"style-loader/useable\"\r\n          },\r\n          { loader: \"css-loader\" },\r\n        ],\r\n      },\r\n    ],\r\n  },\r\n}\r\n```\r\n\r\n#### `Reference Counter API`\r\n\r\n**component.js**\r\n```js\r\nimport style from './file.css'\r\n\r\nstyle.use(); // = style.ref();\r\nstyle.unuse(); // = style.unref();\r\n```\r\n\r\nStyles are not added on `import/require()`, but instead on call to `use`/`ref`. Styles are removed from page if `unuse`/`unref` is called exactly as often as `use`/`ref`.\r\n\r\n:warning: Behavior is undefined when `unuse`/`unref` is called more often than `use`/`ref`. Don't do that.\r\n\r\n<h2 align=\"center\">Options</h2>\r\n\r\n|Name|Type|Default|Description|\r\n|:--:|:--:|:-----:|:----------|\r\n|**`base`** |`{Number}`|`true`|Set module ID base (DLLPlugin)|\r\n|**`attrs`**|`{Object}`|`{}`|Add custom attrs to `<style></style>`|\r\n|**`transform`** |`{Function}`|`false`|Transform/Conditionally load CSS by passing a transform/condition function|\r\n|**`insertAt`**|`{String}`|`bottom`|Inserts `<style></style>` at the given position|\r\n|**`insertInto`**|`{String}`|`<head>`|Inserts `<style></style>` into the given position|\r\n|**`sourceMap`**|`{Boolean}`|`false`|Enable/Disable Sourcemaps|\r\n|**`convertToAbsoluteUrls`**|`{Boolean}`|`false`|Coverts relative URLs to absolute urls, when source maps are enabled|\r\n\r\n### `base`\r\n\r\nThis setting is primarily used as a workaround for [css clashes](https://github.com/webpack-contrib/style-loader/issues/163) when using one or more [DllPlugin](https://robertknight.github.io/posts/webpack-dll-plugins/)'s.  `base` allows you to prevent either the *app*'s css (or *DllPlugin2*'s css) from overwriting *DllPlugin1*'s css by specifying a css module id base which is greater than the range used by *DllPlugin1* e.g.:\r\n\r\n**webpack.dll1.config.js**\r\n```js\r\n{\r\n  test: /\\.css$/,\r\n  use: [\r\n    'style-loader',\r\n    'css-loader'\r\n  ]\r\n}\r\n```\r\n\r\n**webpack.dll2.config.js**\r\n```js\r\n{\r\n  test: /\\.css$/,\r\n  use: [\r\n    { loader: 'style-loader', options: { base: 1000 } },\r\n    'css-loader'\r\n  ]\r\n}\r\n```\r\n\r\n**webpack.app.config.js**\r\n```\r\n{\r\n  test: /\\.css$/,\r\n  use: [\r\n    { loader: 'style-loader', options: { base: 2000 } },\r\n    'css-loader'\r\n  ]\r\n}\r\n```\r\n\r\n### `attrs`\r\n\r\nIf defined, style-loader will attach given attributes with their values on `<style>` / `<link>` element.\r\n\r\n**component.js**\r\n```js\r\nimport style from './file.css'\r\n```\r\n\r\n**webpack.config.js**\r\n```js\r\n{\r\n  test: /\\.css$/,\r\n  use: [\r\n    { loader: 'style-loader', options: { attrs: { id: 'id' } } }\r\n    { loader: 'css-loader' }\r\n  ]\r\n}\r\n```\r\n\r\n```html\r\n<style id=\"id\"></style>\r\n```\r\n\r\n#### `Url`\r\n\r\n**component.js**\r\n```js\r\nimport link from './file.css'\r\n```\r\n\r\n**webpack.config.js**\r\n```js\r\n{\r\n  test: /\\.css$/,\r\n  use: [\r\n    { loader: 'style-loader/url', options: { attrs: { id: 'id' } } }\r\n    { loader: 'file-loader' }\r\n  ]\r\n}\r\n```\r\n\r\n### `transform`\r\n\r\nA `transform` is a function that can modify the css just before it is loaded into the page by the style-loader.\r\nThis function will be called on the css that is about to be loaded and the return value of the function will be loaded into the page instead of the original css.\r\nIf the return value of the `transform` function is falsy, the css will not be loaded into the page at all.\r\n\r\n**webpack.config.js**\r\n```js\r\n{\r\n  loader: 'style-loader'\r\n  options: {\r\n    transform: 'path/to/transform.js'\r\n  }\r\n}\r\n```\r\n\r\n**transform.js**\r\n```js\r\nmodule.exports = function (css) {\r\n  // Here we can change the original css\r\n  const transformed = css.replace('.classNameA', '.classNameB')\r\n\r\n  return transformed\r\n}\r\n```\r\n\r\n#### `Conditional`\r\n\r\n**webpack.config.js**\r\n```js\r\n{\r\n  loader: 'style-loader'\r\n  options: {\r\n    transform: 'path/to/conditional.js'\r\n  }\r\n}\r\n```\r\n\r\n**conditional.js**\r\n```js\r\nmodule.exports = function (css) {\r\n  // If the condition is matched load [and transform] the CSS\r\n  if (css.includes('something I want to check')) {\r\n    return css;\r\n  }\r\n  // If a falsy value is returned, the CSS won't be loaded\r\n  return false\r\n}\r\n```\r\n\r\n### `insertAt`\r\n\r\nBy default, the style-loader appends `<style>` elements to the end of the style target, which is the `<head>` tag of the page unless specified by `insertInto`. This will cause CSS created by the loader to take priority over CSS already present in the target. To insert style elements at the beginning of the target, set this query parameter to 'top', e.g\r\n\r\n**webpack.config.js**\r\n```js\r\n{\r\n  loader: 'style-loader'\r\n  options: {\r\n    insertAt: 'top'\r\n  }\r\n}\r\n```\r\n\r\n### `insertInto`\r\nBy default, the style-loader inserts the `<style>` elements into the `<head>` tag of the page. If you want the tags to be inserted somewhere else, e.g. into a [ShadowRoot](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot), you can specify a CSS selector for that element here, e.g\r\n\r\n**webpack.config.js**\r\n```js\r\n{\r\n  loader: 'style-loader'\r\n  options: {\r\n    insertAt: '#host::shadow>#root'\r\n  }\r\n}\r\n```\r\n\r\n### `singleton`\r\n\r\nIf defined, the style-loader will reuse a single `<style>` element, instead of adding/removing individual elements for each required module.\r\n\r\n> ℹ️  This option is on by default in IE9, which has strict limitations on the number of style tags allowed on a page. You can enable or disable it with the singleton option.\r\n\r\n**webpack.config.js**\r\n```js\r\n{\r\n  loader: 'style-loader'\r\n  options: {\r\n    singleton: true\r\n  }\r\n}\r\n```\r\n\r\n### `sourceMap`\r\n\r\nEnable/Disable source map loading\r\n\r\n**webpack.config.js**\r\n```js\r\n{\r\n  loader: 'style-loader'\r\n  options: {\r\n    sourceMap: true\r\n  }\r\n}\r\n```\r\n\r\n### `convertToAbsoluteUrls`\r\n\r\nIf convertToAbsoluteUrls and sourceMaps are both enabled, relative urls will be converted to absolute urls right before the css is injected into the page. This resolves [an issue](https://github.com/webpack/style-loader/pull/96) where relative resources fail to load when source maps are enabled. You can enable it with the convertToAbsoluteUrls option.\r\n\r\n**webpack.config.js**\r\n```js\r\n{\r\n  loader: 'style-loader'\r\n  options: {\r\n    sourceMap: true,\r\n    convertToAbsoluteUrls: true\r\n  }\r\n}\r\n```\r\n\r\n<h2 align=\"center\">Maintainers</h2>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\">\r\n        <a href=\"https://github.com/bebraw\">\r\n          <img width=\"150\" height=\"150\" src=\"https://github.com/bebraw.png?v=3&s=150\">\r\n          </br>\r\n          Juho Vepsäläinen\r\n        </a>\r\n      </td>\r\n      <td align=\"center\">\r\n        <a href=\"https://github.com/d3viant0ne\">\r\n          <img width=\"150\" height=\"150\" src=\"https://github.com/d3viant0ne.png?v=3&s=150\">\r\n          </br>\r\n          Joshua Wiens\r\n        </a>\r\n      </td>\r\n      <td align=\"center\">\r\n        <a href=\"https://github.com/sapegin\">\r\n          <img width=\"150\" height=\"150\" src=\"https://github.com/sapegin.png?v=3&s=150\">\r\n          </br>\r\n          Artem Sapegin\r\n        </a>\r\n      </td>\r\n      <td align=\"center\">\r\n        <a href=\"https://github.com/michael-ciniawsky\">\r\n          <img width=\"150\" height=\"150\" src=\"https://github.com/michael-ciniawsky.png?v=3&s=150\">\r\n          </br>\r\n          Michael Ciniawsky\r\n        </a>\r\n      </td>\r\n      <td align=\"center\">\r\n        <a href=\"https://github.com/evilebottnawi\">\r\n          <img width=\"150\" height=\"150\" src=\"https://github.com/evilebottnawi.png?v=3&s=150\">\r\n          </br>\r\n          Alexander Krasnoyarov\r\n        </a>\r\n      </td>\r\n    </tr>\r\n    <tr>\r\n      <td align=\"center\">\r\n        <a href=\"https://github.com/sokra\">\r\n          <img width=\"150\" height=\"150\" src=\"https://github.com/sokra.png?v=3&s=150\">\r\n          </br>\r\n          Tobias Koppers\r\n        </a>\r\n      </td>\r\n      <td align=\"center\">\r\n        <a href=\"https://github.com/SpaceK33z\">\r\n          <img width=\"150\" height=\"150\" src=\"https://github.com/SpaceK33z.png?v=3&s=150\">\r\n          </br>\r\n          Kees Kluskens\r\n        </a>\r\n      </td>\r\n    <tr>\r\n  <tbody>\r\n</table>\r\n\r\n\r\n[npm]: https://img.shields.io/npm/v/style-loader.svg\r\n[npm-url]: https://npmjs.com/package/style-loader\r\n\r\n[node]: https://img.shields.io/node/v/style-loader.svg\r\n[node-url]: https://nodejs.org\r\n\r\n[deps]: https://david-dm.org/webpack/style-loader.svg\r\n[deps-url]: https://david-dm.org/webpack/file-loader\r\n\r\n[chat]: https://badges.gitter.im/webpack/webpack.svg\r\n[chat-url]: https://gitter.im/webpack/webpack\r\n","repository":{"type":"git","url":"git+ssh://git@github.com/webpack/style-loader.git"},"users":{"jehoshua02":true,"borjes":true,"leonardorb":true,"lavir":true,"rokeyzki":true,"seaseng":true,"apehead":true,"dkannan":true,"cfleschhut":true,"abdul":true,"sternelee":true,"rubiadias":true,"dhampik":true,"kimkee":true,"ackhub":true,"zhenzhuquan":true,"hustliu":true,"alexjsdev":true,"fadihania":true,"lorenazohar":true,"langri-sha":true,"klimnikita":true,"yeoyou":true,"sunny_anna":true,"carly-lee":true,"wearevilla":true,"wujr5":true,"weerd":true,"drewigg":true,"panos277":true,"evdokimovm":true,"hyteer":true,"juandaco":true,"marlongrape":true,"yong_a":true,"artem.tkachuck":true,"josokinas":true,"modood":true,"princetoad":true,"cl0udw4lk3r":true,"jaymcoder":true,"alanho":true,"nickolas_sv":true,"jasonmelgoza":true,"andrej-k":true,"albertico88":true,"chenphoenix":true,"ywt875892894":true,"nate-river":true,"lzzdsg":true,"wsynpm":true,"18435146700":true,"~arnold":true,"ziluli":true,"cring":true,"wtf102":true,"node_zjt":true,"honghong":true,"15110385721":true,"liming8077":true,"gl49841658":true,"18334771482":true,"yangdenghui":true,"httpwww.npmjs.comwulin":true,"sun142725":true,"renchouhaizhuangguai":true,"tingzisuk":true,"webcao":true,"feng'zi":true,"webyan":true,"wenrui2017":true,"karzanosman984":true},"bugs":{"url":"https://github.com/webpack/style-loader/issues"},"license":"MIT","versions":{"0.1.0":{"name":"style-loader","version":"0.1.0","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","dependencies":{"raw-loader":"0.1.x"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"_id":"style-loader@0.1.0","devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.1","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"be734698eb03f63055505e4e47cfb9967337f5d2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.1.0.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.1.1":{"name":"style-loader","version":"0.1.1","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","dependencies":{"raw-loader":"0.1.x"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"_id":"style-loader@0.1.1","devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.1","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"413f1055f94cdbd8d0a86d85784445d281c9d7dc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.1.1.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.1.2":{"name":"style-loader","version":"0.1.2","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"_id":"style-loader@0.1.2","dependencies":{},"devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.1","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"1561e82c46a27f880f1fae0abe4e26ffbd5c8ce5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.1.2.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.1.3":{"name":"style-loader","version":"0.1.3","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"_id":"style-loader@0.1.3","dependencies":{},"devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.21","_nodeVersion":"v0.6.17","_defaultsLoaded":true,"dist":{"shasum":"b04d47e13b12f04eb8a689d0a8ca20b8653751d0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.1.3.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.2.0":{"name":"style-loader","version":"0.2.0","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_id":"style-loader@0.2.0","dist":{"shasum":"9ccbc922774b39c9d651abef819784e4e68c2145","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.2.0.tgz"},"_npmVersion":"1.1.61","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.2.1":{"name":"style-loader","version":"0.2.1","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_id":"style-loader@0.2.1","dist":{"shasum":"23e51020ccb85c8c7cff012fb9ee9e3f24edead8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.2.1.tgz"},"_npmVersion":"1.1.61","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.5.0":{"name":"style-loader","version":"0.5.0","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"style-loader@0.5.0","dist":{"shasum":"87ac0c5892642425c4c58bcd79581a2233452194","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.5.0.tgz"},"_npmVersion":"1.1.59","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.5.1":{"name":"style-loader","version":"0.5.1","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"style-loader@0.5.1","dist":{"shasum":"8bdb8e536fb562eafbbba8c164248a42883053e1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.5.1.tgz"},"_from":".","_npmVersion":"1.2.11","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.5.2":{"name":"style-loader","version":"0.5.2","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"style-loader@0.5.2","dist":{"shasum":"9e64cb52ca18842b6b5ec8adacce442c71ec5008","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.5.2.tgz"},"_from":".","_npmVersion":"1.2.11","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.6.0":{"name":"style-loader","version":"0.6.0","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"style-loader@0.6.0","dist":{"shasum":"cf801400ec0b92c2df22b94bc06dddd88d74d531","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.6.0.tgz"},"_from":".","_npmVersion":"1.2.11","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.6.1":{"name":"style-loader","version":"0.6.1","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.6.1","dist":{"shasum":"7a69d403c77cc4e43fda65477403f9f076feba51","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.6.1.tgz"},"_from":".","_npmVersion":"1.3.17","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.6.2":{"name":"style-loader","version":"0.6.2","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.6.2","dist":{"shasum":"f9429a84a8d888d57ce9dec2e2f85426b1617841","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.6.2.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.6.3":{"name":"style-loader","version":"0.6.3","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.6.3","dist":{"shasum":"07238619275ef3b8f34bfcc295361a5745766c73","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.6.3.tgz"},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.6.4":{"name":"style-loader","version":"0.6.4","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.6.4","dist":{"shasum":"719ebe4d6371e8e067defd3f0eceae6862529434","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.6.4.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.6.5":{"name":"style-loader","version":"0.6.5","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.6.5","dist":{"shasum":"e690bfb8fb631f8b4b2d0b9ee6dadb14f6d54c30","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.6.5.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.7.0":{"name":"style-loader","version":"0.7.0","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.7.0","dist":{"shasum":"c3cbe57fdea9b661633f917f988e5f31ee0544fe","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.7.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.7.1":{"name":"style-loader","version":"0.7.1","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.7.1","dist":{"shasum":"7e3a606c9e78f2078b600583cde88af5febcf692","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.7.1.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.8.0":{"name":"style-loader","version":"0.8.0","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"~0.8.0"},"repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"8ec1dc6ee6af93b4c89f6c52c15b2e8f44314939","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.8.0","scripts":{},"_shasum":"425dc6db33cd39fc26aa1046b5b8ad123839c3ae","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"425dc6db33cd39fc26aa1046b5b8ad123839c3ae","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.8.0.tgz"},"directories":{}},"0.8.1":{"name":"style-loader","version":"0.8.1","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"~0.8.0"},"repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"d13b7c4dbbece1af3ba4e62b46af673d64405bd0","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.8.1","scripts":{},"_shasum":"fa8e0b3e469b38f572a64548a06737f314c2c262","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"fa8e0b3e469b38f572a64548a06737f314c2c262","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.8.1.tgz"},"directories":{}},"0.8.2":{"name":"style-loader","version":"0.8.2","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"~0.8.0"},"repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"dependencies":{"loader-utils":"^0.2.5"},"gitHead":"09a09e801076537a84e73855b745d766d0fcf89c","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.8.2","scripts":{},"_shasum":"8e1bb2badec84d68a2618fed5f539bfc62b061b5","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"8e1bb2badec84d68a2618fed5f539bfc62b061b5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.8.2.tgz"},"directories":{}},"0.8.3":{"name":"style-loader","version":"0.8.3","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"~0.8.0"},"repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"dependencies":{"loader-utils":"^0.2.5"},"gitHead":"5e375d894f6744f586a520401e6eba1fbdf0d6bd","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.8.3","scripts":{},"_shasum":"f4f92eb7db63768748f15065cd6700f5a1c85357","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"f4f92eb7db63768748f15065cd6700f5a1c85357","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.8.3.tgz"},"directories":{}},"0.9.0":{"name":"style-loader","version":"0.9.0","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"~0.8.0"},"repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"dependencies":{"loader-utils":"^0.2.5"},"gitHead":"b8316d5c5d14c8e473c98ef8c66024339bd11215","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.9.0","scripts":{},"_shasum":"ad1882eb907631a22ece795bd2e5bccba0e14e46","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"ad1882eb907631a22ece795bd2e5bccba0e14e46","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.9.0.tgz"},"directories":{}},"0.10.0":{"name":"style-loader","version":"0.10.0","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"~0.8.0"},"repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"dependencies":{"loader-utils":"^0.2.5"},"gitHead":"87445112927d4e8bfde9f168c21fb9f9e36479be","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.10.0","scripts":{},"_shasum":"55117e3221b38f318643760a3ba478fa32c0d39d","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"55117e3221b38f318643760a3ba478fa32c0d39d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.10.0.tgz"},"directories":{}},"0.10.1":{"name":"style-loader","version":"0.10.1","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"~0.8.0"},"repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"dependencies":{"loader-utils":"^0.2.5"},"gitHead":"9f565cb881919b32039a9716870d25c665d2b91e","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.10.1","scripts":{},"_shasum":"d6f280511e00734e13238d652fc7126df93121e7","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"d6f280511e00734e13238d652fc7126df93121e7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.10.1.tgz"},"directories":{}},"0.10.2":{"name":"style-loader","version":"0.10.2","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"~0.8.0"},"repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"dependencies":{"loader-utils":"^0.2.5"},"gitHead":"b963023e26dd85ce086defa58a1fee2d2c6de329","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.10.2","scripts":{},"_shasum":"befcd97f08031506771370b11f3642ff3cb74b5a","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"befcd97f08031506771370b11f3642ff3cb74b5a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.10.2.tgz"},"directories":{}},"0.11.0":{"name":"style-loader","version":"0.11.0","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"~0.8.0"},"repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"dependencies":{"loader-utils":"^0.2.5"},"gitHead":"69cd9176e964f28548a99814414474bce343695c","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.11.0","scripts":{},"_shasum":"b0bf157e777748732e9b919dfea95e99eba0ef81","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"b0bf157e777748732e9b919dfea95e99eba0ef81","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.11.0.tgz"},"directories":{}},"0.12.0":{"name":"style-loader","version":"0.12.0","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"~0.8.0"},"repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"dependencies":{"loader-utils":"^0.2.5"},"gitHead":"fb4ecc716d15b723c006659c329a9a295d616461","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.12.0","scripts":{},"_shasum":"3ccd3026ddd98fc9c4d1fa619c1f5c4b9326e5c9","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"3ccd3026ddd98fc9c4d1fa619c1f5c4b9326e5c9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.12.0.tgz"},"directories":{}},"0.12.1":{"name":"style-loader","version":"0.12.1","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"~0.8.0"},"repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"dependencies":{"loader-utils":"^0.2.5"},"gitHead":"bd26e2c6ca9d2bac0d10189f5f8746d80dc721d3","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.12.1","scripts":{},"_shasum":"fd728618b55705da0861a94e6cdb2d44b300847d","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"fd728618b55705da0861a94e6cdb2d44b300847d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.12.1.tgz"},"directories":{}},"0.12.2":{"name":"style-loader","version":"0.12.2","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"~0.8.0"},"repository":{"type":"git","url":"git@github.com:webpack/style-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"dependencies":{"loader-utils":"^0.2.5"},"gitHead":"dde52815a95e5076355cb494a399a663e04dc584","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader","_id":"style-loader@0.12.2","scripts":{},"_shasum":"1b566b0bcb51522ab757aecf7945e93a948a819a","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"1b566b0bcb51522ab757aecf7945e93a948a819a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.12.2.tgz"},"directories":{}},"0.12.3":{"name":"style-loader","version":"0.12.3","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"~0.8.0"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/style-loader.git"},"license":"MIT","dependencies":{"loader-utils":"^0.2.5"},"gitHead":"2823eb4a5e6eb6594a98fe0ea34454b7f7ffca7d","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader#readme","_id":"style-loader@0.12.3","scripts":{},"_shasum":"967164e630e8cb28a19e53bda2485657418c7dd2","_from":".","_npmVersion":"2.10.0","_nodeVersion":"0.12.2","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"967164e630e8cb28a19e53bda2485657418c7dd2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.12.3.tgz"},"directories":{}},"0.12.4":{"name":"style-loader","version":"0.12.4","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"~0.8.0"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/style-loader.git"},"license":"MIT","dependencies":{"loader-utils":"^0.2.7"},"gitHead":"6d76315710e215692eba3c228a75b819ece71fc9","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader#readme","_id":"style-loader@0.12.4","scripts":{},"_shasum":"ae7d0665dc4dc653daa2fe97bb90914bc1d22d9b","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"ae7d0665dc4dc653daa2fe97bb90914bc1d22d9b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.12.4.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.13.0":{"name":"style-loader","version":"0.13.0","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"~0.8.0"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/style-loader.git"},"license":"MIT","dependencies":{"loader-utils":"^0.2.7"},"gitHead":"6664a954d5a77a6cb2ef1ad33db936e41eb78bf4","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader#readme","_id":"style-loader@0.13.0","scripts":{},"_shasum":"abac11a20450f3ddea222b44c0c6342a8862db47","_from":".","_npmVersion":"3.3.3","_nodeVersion":"4.0.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"abac11a20450f3ddea222b44c0c6342a8862db47","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.13.0.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.13.1":{"name":"style-loader","version":"0.13.1","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"~0.8.0"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/style-loader.git"},"license":"MIT","dependencies":{"loader-utils":"^0.2.7"},"gitHead":"bba5bdb192b3d0cb487e2043a011562c6801f2c8","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader#readme","_id":"style-loader@0.13.1","scripts":{},"_shasum":"468280efbc0473023cd3a6cd56e33b5a1d7fc3a9","_from":".","_npmVersion":"3.3.3","_nodeVersion":"5.4.1","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"468280efbc0473023cd3a6cd56e33b5a1d7fc3a9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.13.1.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/style-loader-0.13.1.tgz_1458847789435_0.8123822319321334"},"directories":{}},"0.13.2":{"name":"style-loader","version":"0.13.2","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"~0.8.0"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/style-loader.git"},"license":"MIT","dependencies":{"loader-utils":"^1.0.2"},"gitHead":"11c54f2c7631e96f38a3a38da90f757fc902da1c","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader#readme","_id":"style-loader@0.13.2","scripts":{},"_shasum":"74533384cf698c7104c7951150b49717adc2f3bb","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"74533384cf698c7104c7951150b49717adc2f3bb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.13.2.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/style-loader-0.13.2.tgz_1487954662208_0.9082186338491738"},"directories":{}},"0.14.0":{"name":"style-loader","version":"0.14.0","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"^0.27.3","file-loader":"^0.10.1","jsdom":"^9.11.0","memory-fs":"^0.4.1","mocha":"^3.2.0","standard-version":"^4.0.0","webpack":"^2.2.1"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/style-loader.git"},"license":"MIT","dependencies":{"loader-utils":"^1.0.2"},"scripts":{"release":"yarn run standard-version","test":"mocha","travis:test":"yarn run test"},"gitHead":"c1d1e48ccf03ca63d8a945934cf47b677c1e617a","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader#readme","_id":"style-loader@0.14.0","_shasum":"e44fe69ef891513bb22fdd10c3167aaa99711164","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"e44fe69ef891513bb22fdd10c3167aaa99711164","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.14.0.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/style-loader-0.14.0.tgz_1489552414757_0.2627639027778059"},"directories":{}},"0.14.1":{"name":"style-loader","version":"0.14.1","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"^0.27.3","file-loader":"^0.10.1","jsdom":"^9.11.0","memory-fs":"^0.4.1","mocha":"^3.2.0","standard-version":"^4.0.0","webpack":"^2.2.1"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/style-loader.git"},"license":"MIT","dependencies":{"loader-utils":"^1.0.2"},"scripts":{"release":"yarn run standard-version","test":"mocha","travis:test":"yarn run test"},"gitHead":"b48121e77c55e509f63f658e59886ca89bd645d8","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader#readme","_id":"style-loader@0.14.1","_shasum":"27b9b6c9822adf8c4748e02a1efae229405d79a5","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"27b9b6c9822adf8c4748e02a1efae229405d79a5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.14.1.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/style-loader-0.14.1.tgz_1489619658731_0.07919249660335481"},"directories":{}},"0.15.0":{"name":"style-loader","version":"0.15.0","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"^0.27.3","file-loader":"^0.10.1","jsdom":"^9.11.0","memory-fs":"^0.4.1","mocha":"^3.2.0","standard-version":"^4.0.0","webpack":"^2.2.1"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/style-loader.git"},"license":"MIT","dependencies":{"loader-utils":"^1.0.2"},"scripts":{"release":"yarn run standard-version","test":"mocha","travis:test":"yarn run test"},"gitHead":"b153070733e0df6a64e2af48b6a847df822513af","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader#readme","_id":"style-loader@0.15.0","_shasum":"17ff9527ae109b94d8c53d253dc9333041438a2d","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.3","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"17ff9527ae109b94d8c53d253dc9333041438a2d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.15.0.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/style-loader-0.15.0.tgz_1490062984660_0.7641712119802833"},"directories":{}},"0.16.0":{"name":"style-loader","version":"0.16.0","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"^0.27.3","file-loader":"^0.10.1","jsdom":"^9.11.0","memory-fs":"^0.4.1","mocha":"^3.2.0","standard-version":"^4.0.0","webpack":"^2.2.1"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/style-loader.git"},"license":"MIT","dependencies":{"loader-utils":"^1.0.2"},"scripts":{"release":"yarn run standard-version","test":"mocha","travis:test":"yarn run test"},"gitHead":"0a27bfc4cff3696df9231bb935fcf9c579442ee6","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader#readme","_id":"style-loader@0.16.0","_shasum":"5f001a9bf58fff9fd40f8aa3b9738ab99d4000c7","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.3","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"5f001a9bf58fff9fd40f8aa3b9738ab99d4000c7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.16.0.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/style-loader-0.16.0.tgz_1490190317990_0.7876037312671542"},"directories":{}},"0.16.1":{"name":"style-loader","version":"0.16.1","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"^0.27.3","file-loader":"^0.10.1","jsdom":"^9.11.0","memory-fs":"^0.4.1","mocha":"^3.2.0","standard-version":"^4.0.0","webpack":"^2.2.1"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/style-loader.git"},"license":"MIT","dependencies":{"loader-utils":"^1.0.2"},"scripts":{"release":"yarn run standard-version","test":"mocha","travis:test":"yarn run test"},"gitHead":"5f56f9fd56aab7965d4eba28019d6e6079f5d610","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader#readme","_id":"style-loader@0.16.1","_shasum":"50e325258d4e78421dd9680636b41e8661595d10","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.4","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"50e325258d4e78421dd9680636b41e8661595d10","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.16.1.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/style-loader-0.16.1.tgz_1490707737929_0.08060540654696524"},"directories":{}},"0.17.0":{"name":"style-loader","version":"0.17.0","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","devDependencies":{"css-loader":"^0.27.3","file-loader":"^0.10.1","jsdom":"^9.11.0","memory-fs":"^0.4.1","mocha":"^3.2.0","standard-version":"^4.0.0","webpack":"^2.2.1"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/style-loader.git"},"license":"MIT","dependencies":{"loader-utils":"^1.0.2"},"files":["addStyles.js","addStyleUrl.js","fixUrls.js","index.js","url.js","useable.js"],"scripts":{"release":"yarn run standard-version","test":"mocha","travis:test":"yarn run test"},"gitHead":"0fb54950c2e5f8cf42265180f2bf402d31fc11d0","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader#readme","_id":"style-loader@0.17.0","_shasum":"e8254bccdb7af74bd58274e36107b4d5ab4df310","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"e8254bccdb7af74bd58274e36107b4d5ab4df310","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.17.0.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/style-loader-0.17.0.tgz_1493664744122_0.743804964935407"},"directories":{}},"0.18.0":{"name":"style-loader","version":"0.18.0","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","engines":{"node":">= 0.12.0"},"main":"index.js","files":["lib","url.js","index.js","useable.js","options.json"],"dependencies":{"loader-utils":"^1.0.2","schema-utils":"^0.3.0"},"devDependencies":{"css-loader":"^0.28.1","file-loader":"^0.11.1","jsdom":"^9.12.0","memory-fs":"^0.4.1","mocha":"^3.2.0","standard-version":"^4.0.0","webpack":"^2.2.1"},"scripts":{"test":"mocha","travis:test":"yarn run test","release":"yarn run standard-version"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/style-loader.git"},"license":"MIT","gitHead":"b9d18dde47a35bf27dac5c0036a3de4554821547","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader#readme","_id":"style-loader@0.18.0","_shasum":"5b7a895860bda966286c8bb80ffd4ccbaf0411f5","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"5b7a895860bda966286c8bb80ffd4ccbaf0411f5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.18.0.tgz"},"maintainers":[{"email":"eric@smarterspam.com","name":"ericclemmons"},{"email":"wiens.joshua@gmail.com","name":"d3viant0ne"},{"email":"bebraw@gmail.com","name":"bebraw"},{"email":"mail@johannesewald.de","name":"jhnns"},{"email":"sean.larkin@cuw.edu","name":"thelarkinn"},{"email":"tobias.koppers@googlemail.com","name":"sokra"},{"email":"j.tangelder@gmail.com","name":"jtangelder"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/style-loader-0.18.0.tgz_1495435462757_0.522733781253919"},"directories":{}},"0.18.1":{"name":"style-loader","version":"0.18.1","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","engines":{"node":">= 0.12.0"},"main":"index.js","files":["lib","url.js","index.js","useable.js","options.json"],"dependencies":{"loader-utils":"^1.0.2","schema-utils":"^0.3.0"},"devDependencies":{"css-loader":"^0.28.1","file-loader":"^0.11.1","jsdom":"^9.12.0","memory-fs":"^0.4.1","mocha":"^3.2.0","standard-version":"^4.0.0","webpack":"^2.2.1"},"scripts":{"test":"mocha","travis:test":"yarn run test","release":"yarn run standard-version"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/style-loader.git"},"license":"MIT","gitHead":"a6287c5e6b58050950e43a1a5da5da9fc6e7dad5","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader#readme","_id":"style-loader@0.18.1","_shasum":"6afca8953c842830e5e2dc84796309880a97f7e8","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"6afca8953c842830e5e2dc84796309880a97f7e8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.18.1.tgz"},"maintainers":[{"email":"eric@smarterspam.com","name":"ericclemmons"},{"email":"wiens.joshua@gmail.com","name":"d3viant0ne"},{"email":"bebraw@gmail.com","name":"bebraw"},{"email":"mail@johannesewald.de","name":"jhnns"},{"email":"sean.larkin@cuw.edu","name":"thelarkinn"},{"email":"tobias.koppers@googlemail.com","name":"sokra"},{"email":"j.tangelder@gmail.com","name":"jtangelder"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/style-loader-0.18.1.tgz_1495547367164_0.31891436222940683"},"directories":{}},"0.18.2":{"name":"style-loader","version":"0.18.2","author":{"name":"Tobias Koppers @sokra"},"description":"style loader module for webpack","engines":{"node":">= 0.12.0"},"main":"index.js","files":["lib","url.js","index.js","useable.js","options.json"],"dependencies":{"loader-utils":"^1.0.2","schema-utils":"^0.3.0"},"devDependencies":{"css-loader":"^0.28.3","file-loader":"^0.11.1","jsdom":"^9.12.0","memory-fs":"^0.4.1","mocha":"^3.4.2","standard-version":"^4.0.0","webpack":"^2.6.1"},"scripts":{"test":"mocha","travis:test":"yarn run test","release":"yarn run standard-version"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/style-loader.git"},"license":"MIT","gitHead":"69e718b37e8430c2d9d4b9cf46cfd3f50cb47f56","bugs":{"url":"https://github.com/webpack/style-loader/issues"},"homepage":"https://github.com/webpack/style-loader#readme","_id":"style-loader@0.18.2","_npmVersion":"5.0.2","_nodeVersion":"8.0.0","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-WPpJPZGUxWYHWIUMNNOYqql7zh85zGmr84FdTVWq52WTIkqlW9xSxD3QYWi/T31cqn9UNSsietVEgGn2aaSCzw==","shasum":"cc31459afbcd6d80b7220ee54b291a9fd66ff5eb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/style-loader/-/style-loader-0.18.2.tgz"},"maintainers":[{"email":"eric@smarterspam.com","name":"ericclemmons"},{"email":"wiens.joshua@gmail.com","name":"d3viant0ne"},{"email":"bebraw@gmail.com","name":"bebraw"},{"email":"mail@johannesewald.de","name":"jhnns"},{"email":"sean.larkin@cuw.edu","name":"thelarkinn"},{"email":"tobias.koppers@googlemail.com","name":"sokra"},{"email":"j.tangelder@gmail.com","name":"jtangelder"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/style-loader-0.18.2.tgz_1496650052077_0.771540199406445"},"directories":{}}},"name":"style-loader","time":{"modified":"2017-08-12T15:06:48.091Z","created":"2012-04-07T01:03:57.886Z","0.1.0":"2012-04-07T01:04:00.907Z","0.1.1":"2012-04-07T01:15:10.218Z","0.1.2":"2012-04-07T01:37:54.746Z","0.1.3":"2012-05-20T22:07:30.702Z","0.2.0":"2012-09-26T11:26:54.871Z","0.2.1":"2012-09-26T11:39:11.647Z","0.5.0":"2013-02-01T07:48:33.071Z","0.5.1":"2013-03-25T23:47:08.957Z","0.5.2":"2013-03-26T10:52:01.220Z","0.6.0":"2013-06-20T13:28:51.392Z","0.6.1":"2014-01-23T07:59:46.982Z","0.6.2":"2014-01-27T10:42:31.248Z","0.6.3":"2014-03-01T16:32:41.488Z","0.6.4":"2014-05-31T10:45:29.734Z","0.6.5":"2014-08-12T10:58:11.547Z","0.7.0":"2014-08-14T09:11:57.204Z","0.7.1":"2014-08-27T12:21:07.358Z","0.8.0":"2014-09-07T20:54:55.777Z","0.8.1":"2014-09-30T11:02:37.280Z","0.8.2":"2014-11-03T22:25:56.628Z","0.8.3":"2015-01-15T16:03:11.638Z","0.9.0":"2015-03-23T08:26:15.363Z","0.10.0":"2015-04-09T21:11:03.361Z","0.10.1":"2015-04-09T21:47:26.019Z","0.10.2":"2015-04-14T21:52:16.732Z","0.11.0":"2015-04-21T21:41:07.298Z","0.12.0":"2015-04-25T12:47:10.436Z","0.12.1":"2015-04-27T16:29:27.999Z","0.12.2":"2015-05-06T12:44:57.052Z","0.12.3":"2015-05-24T07:31:37.469Z","0.12.4":"2015-09-16T20:23:06.519Z","0.13.0":"2015-10-19T18:56:54.852Z","0.13.1":"2016-03-24T19:29:51.615Z","0.13.2":"2017-02-24T16:44:22.761Z","0.14.0":"2017-03-15T04:33:35.372Z","0.14.1":"2017-03-15T23:14:19.392Z","0.15.0":"2017-03-21T02:23:05.349Z","0.16.0":"2017-03-22T13:45:18.706Z","0.16.1":"2017-03-28T13:29:00.178Z","0.17.0":"2017-05-01T18:52:25.984Z","0.18.0":"2017-05-22T06:44:23.840Z","0.18.1":"2017-05-23T13:49:28.153Z","0.18.2":"2017-06-05T08:07:33.136Z"},"readmeFilename":"README.md","homepage":"https://github.com/webpack/style-loader#readme"}