{"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":"kees@webduck.nl","name":"spacek33z"},{"email":"mark.john.dalgleish@gmail.com","name":"markdalgleish"},{"email":"tobias.koppers@googlemail.com","name":"sokra"},{"email":"j.tangelder@gmail.com","name":"jtangelder"}],"dist-tags":{"latest":"0.28.4"},"author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","readme":"[![npm][npm]][npm-url]\n[![node][node]][node-url]\n[![deps][deps]][deps-url]\n[![tests][tests]][tests-url]\n[![coverage][cover]][cover-url]\n[![chat][chat]][chat-url]\n\n<div align=\"center\">\n  <img width=\"180\" height=\"180\" vspace=\"20\"\n    src=\"https://cdn.worldvectorlogo.com/logos/css-3.svg\">\n  <a href=\"https://github.com/webpack/webpack\">\n    <img width=\"200\" height=\"200\"\n      src=\"https://webpack.js.org/assets/icon-square-big.svg\">\n  </a>\n  <h1>CSS Loader</h1>\n</div>\n\n<h2 align=\"center\">Install</h2>\n\n```bash\nnpm install --save-dev css-loader\n```\n\n<h2 align=\"center\">Usage</h2>\n\nThe `css-loader` interprets `@import` and `url()` like `import/require()`\nand will resolve them.\n\nGood loaders for requiring your assets are the [file-loader](https://github.com/webpack/file-loader)\nand the [url-loader](https://github.com/webpack/url-loader) which you should specify in your config (see [below](https://github.com/michael-ciniawsky/css-loader#assets)).\n\n**file.js**\n```js\nimport css from 'file.css';\n```\n\n**webpack.config.js**\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/,\n        use: [ 'style-loader', 'css-loader' ]\n      }\n    ]\n  }\n}\n```\n\n### `toString`\n\nYou can also use the css-loader results directly as string, such as in Angular's component style.\n\n**webpack.config.js**\n```js\n{\n   test: /\\.css$/,\n   use: [\n     'to-string-loader',\n     'css-loader'\n   ]\n}\n```\n\nor\n\n```js\nconst css = require('./test.css').toString();\n\nconsole.log(css); // {String}\n```\n\nIf there are SourceMaps, they will also be included in the result string.\n\nIf, for one reason or another, you need to extract CSS as a\nplain string resource (i.e. not wrapped in a JS module) you\nmight want to check out the [extract-loader](https://github.com/peerigon/extract-loader).\nIt's useful when you, for instance, need to post process the CSS as a string.\n\n**webpack.config.js**\n```js\n{\n   test: /\\.css$/,\n   use: [\n     'handlebars-loader', // handlebars loader expects raw resource string\n     'extract-loader',\n     'css-loader'\n   ]\n}\n```\n\n<h2 align=\"center\">Options</h2>\n\n|Name|Type|Default|Description|\n|:--:|:--:|:-----:|:----------|\n|**`root`**|`{String}`|`/`|Path to resolve URLs, URLs starting with `/` will not be translated|\n|**`url`**|`{Boolean}`|`true`| Enable/Disable `url()` handling|\n|**`alias`**|`{Object}`|`{}`|Create aliases to import certain modules more easily|\n|**`import`** |`{Boolean}`|`true`| Enable/Disable @import handling|\n|**`modules`**|`{Boolean}`|`false`|Enable/Disable CSS Modules|\n|**`minimize`**|`{Boolean\\|Object}`|`false`|Enable/Disable minification|\n|**`sourceMap`**|`{Boolean}`|`false`|Enable/Disable Sourcemaps|\n|**`camelCase`**|`{Boolean\\|String}`|`false`|Export Classnames in CamelCase|\n|**`importLoaders`**|`{Number}`|`0`|Number of loaders applied before CSS loader|\n\n### `root`\n\nFor URLs that start with a `/`, the default behavior is to not translate them.\n\n`url(/image.png) => url(/image.png)`\n\nIf a `root` query parameter is set, however, it will be prepended to the URL\nand then translated.\n\n**webpack.config.js**\n```js\n{\n  loader: 'css-loader',\n  options: { root: '.' }\n}\n```\n\n`url(/image.png)` => `require('./image.png')`\n\nUsing 'Root-relative' urls is not recommended. You should only use it for legacy CSS files.\n\n### `url`\n\nTo disable `url()` resolving by `css-loader` set the option to `false`.\n\nTo be compatible with existing css files (if not in CSS Module mode).\n\n```\nurl(image.png) => require('./image.png')\nurl(~module/image.png) => require('module/image.png')\n```\n\n### `alias`\n\nRewrite your urls with alias, this is useful when it's hard to change url paths of your input files, for example, when you're using some css / sass files in another package (bootstrap, ratchet, font-awesome, etc.).\n\n`css-loader`'s `alias` follows the same syntax as webpack's `resolve.alias`, you can see the details at the [resolve docs] (https://webpack.js.org/configuration/resolve/#resolve-alias)\n\n**file.scss**\n```css\n@charset \"UTF-8\";\n@import \"bootstrap\";\n```\n\n**webpack.config.js**\n```js\n{\n  test: /\\.scss$/,\n  use: [\n    {\n      loader: \"style-loader\"\n    },\n    {\n      loader: \"css-loader\",\n      options: {\n        alias: {\n          \"../fonts/bootstrap\": \"bootstrap-sass/assets/fonts/bootstrap\"\n        }\n      }\n    },\n    {\n      loader: \"sass-loader\",\n      options: {\n        includePaths: [\n          path.resolve(\"./node_modules/bootstrap-sass/assets/stylesheets\")\n        ]\n      }\n    }\n  ]\n}\n```\n\nCheck out this [working bootstrap example](https://github.com/bbtfr/webpack2-bootstrap-sass-sample).\n\n### `import`\n\nTo disable `@import` resolving by `css-loader` set the option to `false`\n\n```css\n@import url('https://fonts.googleapis.com/css?family=Roboto');\n```\n\n> _⚠️ Use with caution, since this disables resolving for **all** `@import`s, including css modules `composes: xxx from 'path/to/file.css'` feature._\n\n### [`modules`](https://github.com/css-modules/css-modules)\n\nThe query parameter `modules` enables the **CSS Modules** spec.\n\nThis enables local scoped CSS by default. (You can switch it off with `:global(...)` or `:global` for selectors and/or rules.).\n\n#### `Scope`\n\nBy default CSS exports all classnames into a global selector scope. Styles can be locally scoped to avoid globally scoping styles.\n\nThe syntax `:local(.className)` can be used to declare `className` in the local scope. The local identifiers are exported by the module.\n\nWith `:local` (without brackets) local mode can be switched on for this selector. `:global(.className)` can be used to declare an explicit global selector. With `:global` (without brackets) global mode can be switched on for this selector.\n\nThe loader replaces local selectors with unique identifiers. The choosen unique identifiers are exported by the module.\n\n```css\n:local(.className) { background: red; }\n:local .className { color: green; }\n:local(.className .subClass) { color: green; }\n:local .className .subClass :global(.global-class-name) { color: blue; }\n```\n\n```css\n._23_aKvs-b8bW2Vg3fwHozO { background: red; }\n._23_aKvs-b8bW2Vg3fwHozO { color: green; }\n._23_aKvs-b8bW2Vg3fwHozO ._13LGdX8RMStbBE9w-t0gZ1 { color: green; }\n._23_aKvs-b8bW2Vg3fwHozO ._13LGdX8RMStbBE9w-t0gZ1 .global-class-name { color: blue; }\n```\n\n> :information_source: Identifiers are exported\n\n```js\nexports.locals = {\n  className: '_23_aKvs-b8bW2Vg3fwHozO',\n  subClass: '_13LGdX8RMStbBE9w-t0gZ1'\n}\n```\n\nCamelCase is recommended for local selectors. They are easier to use in the within the imported JS module.\n\n`url()` URLs in block scoped (`:local .abc`) rules behave like requests in modules.\n\n```\nfile.png => ./file.png\n~module/file.png => module/file.png\n```\n\nYou can use `:local(#someId)`, but this is not recommended. Use classes instead of ids.\nYou can configure the generated ident with the `localIdentName` query parameter (default `[hash:base64]`).\n\n **webpack.config.js**\n ```js\n{\n  test: /\\.css$/,\n  use: [\n    {\n      loader: 'css-loader',\n      options: {\n        modules: true,\n        localIdentName: '[path][name]__[local]--[hash:base64:5]'\n      }\n    }\n  ]\n}\n```\n\nYou can also specify the absolute path to your custom `getLocalIdent` function to generate classname based on a different schema. This requires `webpack >= 2.2.1` (it supports functions in the `options` object).\n\n**webpack.config.js**\n```js\n{\n  loader: 'css-loader',\n  options: {\n    modules: true,\n    localIdentName: '[path][name]__[local]--[hash:base64:5]',\n    getLocalIdent: (context, localIdentName, localName, options) => {\n      return 'whatever_random_class_name'\n    }\n  }\n}\n```\n\n> :information_source: For prerendering with extract-text-webpack-plugin you should use `css-loader/locals` instead of `style-loader!css-loader` **in the prerendering bundle**. It doesn't embed CSS but only exports the identifier mappings.\n\n#### `Composing`\n\nWhen declaring a local classname you can compose a local class from another local classname.\n\n```css\n:local(.className) {\n  background: red;\n  color: yellow;\n}\n\n:local(.subClass) {\n  composes: className;\n  background: blue;\n}\n```\n\nThis doesn't result in any change to the CSS itself but exports multiple classnames.\n\n```js\nexports.locals = {\n  className: '_23_aKvs-b8bW2Vg3fwHozO',\n  subClass: '_13LGdX8RMStbBE9w-t0gZ1 _23_aKvs-b8bW2Vg3fwHozO'\n}\n```\n\n``` css\n._23_aKvs-b8bW2Vg3fwHozO {\n  background: red;\n  color: yellow;\n}\n\n._13LGdX8RMStbBE9w-t0gZ1 {\n  background: blue;\n}\n```\n\n#### `Importing`\n\nTo import a local classname from another module.\n\n```css\n:local(.continueButton) {\n  composes: button from 'library/button.css';\n  background: red;\n}\n```\n\n```css\n:local(.nameEdit) {\n  composes: edit highlight from './edit.css';\n  background: red;\n}\n```\n\nTo import from multiple modules use multiple `composes:` rules.\n\n```css\n:local(.className) {\n  composes: edit hightlight from './edit.css';\n  composes: button from 'module/button.css';\n  composes: classFromThisModule;\n  background: red;\n}\n```\n\n### `minimize`\n\nBy default the css-loader minimizes the css if specified by the module system.\n\nIn some cases the minification is destructive to the css, so you can provide your own options to the minifier if needed. cssnano is used for minification and you find a [list of options here](http://cssnano.co/options/).\n\nYou can also disable or enforce minification with the `minimize` query parameter.\n\n**webpack.config.js**\n```js\n{\n  loader: 'css-loader',\n  options: {\n    minimize: true || {/* CSSNano Options */}\n  }\n}\n```\n\n### `sourceMap`\n\nTo include source maps set the `sourceMap` option.\n\nI. e. the extract-text-webpack-plugin can handle them.\n\nThey are not enabled by default because they expose a runtime overhead and increase in bundle size (JS source maps do not). In addition to that relative paths are buggy and you need to use an absolute public path which include the server URL.\n\n**webpack.config.js**\n```js\n{\n  loader: 'css-loader',\n  options: {\n    sourceMap: true\n  }\n}\n```\n\n### `camelCase`\n\nBy default, the exported JSON keys mirror the class names. If you want to camelize class names (useful in JS), pass the query parameter `camelCase` to css-loader.\n\n|Name|Type|Description|\n|:--:|:--:|:----------|\n|**`true`**|`{Boolean}`|Class names will be camelized|\n|**`'dashes'`**|`{String}`|Only dashes in class names will be camelized|\n|**`'only'`** |`{String}`|Introduced in `0.27.1`. Class names will be camelized, the original class name will be removed from the locals|\n|**`'dashesOnly'`**|`{String}`|Introduced in `0.27.1`. Dashes in class names will be camelized, the original class name will be removed from the locals|\n\n**file.css**\n```css\n.class-name {}\n```\n\n**file.js**\n```js\nimport { className } from 'file.css';\n```\n\n**webpack.config.js**\n```js\n{\n  loader: 'css-loader',\n  options: {\n    camelCase: true\n  }\n}\n```\n\n### `importLoaders`\n\nThe query parameter `importLoaders` allows to configure how many loaders before `css-loader` should be applied to `@import`ed resources.\n\n**webpack.config.js**\n```js\n{\n  test: /\\.css$/,\n  use: [\n    'style-loader',\n    {\n      loader: 'css-loader',\n      options: {\n        importLoaders: 1 // 0 => no loaders (default); 1 => postcss-loader; 2 => postcss-loader, sass-loader\n      }\n    },\n    'postcss-loader',\n    'sass-loader'\n  ]\n}\n```\n\nThis may change in the future, when the module system (i. e. webpack) supports loader matching by origin.\n\n<h2 align=\"center\">Examples</h2>\n\n### Assets\n\nThe following `webpack.config.js` can load CSS files, embed small PNG/JPG/GIF/SVG images as well as fonts as [Data URLs](https://tools.ietf.org/html/rfc2397) and copy larger files to the output directory.\n\n**webpack.config.js**\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/,\n        use: [ 'style-loader', 'css-loader' ]\n      },\n      {\n        test: /\\.(png|jpg|gif|svg|eot|ttf|woff|woff2)$/,\n        loader: 'url-loader',\n        options: {\n          limit: 10000\n        }\n      }\n    ]\n  }\n}\n```\n\n### Extract\n\nFor production builds it's recommended to extract the CSS from your bundle being able to use parallel loading of CSS/JS resources later on. This can be achieved by using the [extract-text-webpack-plugin](https://github.com/webpack-contrib/extract-text-webpack-plugin) to extract the CSS when running in production mode.\n\n**webpack.config.js**\n```js\nconst env = process.env.NODE_ENV\n\nconst ExtractTextPlugin = require('extract-text-webpack-plugin')\n\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/,\n        use: env === 'production'\n          ? ExtractTextPlugin.extract({\n              fallback: 'style-loader',\n              use: [ 'css-loader' ]\n          })\n          : [ 'style-loader', 'css-loader' ]\n      },\n    ]\n  },\n  plugins: env === 'production'\n    ? [\n        new ExtractTextPlugin({\n          filename: '[name].css'\n        })\n      ]\n    : []\n  ]\n}\n```\n\n<h2 align=\"center\">Maintainers</h2>\n\n<table>\n  <tbody>\n    <tr>\n      <td align=\"center\">\n        <img width=\"150\" height=\"150\"\n        src=\"https://github.com/bebraw.png?v=3&s=150\">\n        </br>\n        <a href=\"https://github.com/bebraw\">Juho Vepsäläinen</a>\n      </td>\n      <td align=\"center\">\n        <img width=\"150\" height=\"150\"\n        src=\"https://github.com/d3viant0ne.png?v=3&s=150\">\n        </br>\n        <a href=\"https://github.com/d3viant0ne\">Joshua Wiens</a>\n      </td>\n      <td align=\"center\">\n        <img width=\"150\" height=\"150\"\n        src=\"https://github.com/SpaceK33z.png?v=3&s=150\">\n        </br>\n        <a href=\"https://github.com/SpaceK33z\">Kees Kluskens</a>\n      </td>\n      <td align=\"center\">\n        <img width=\"150\" height=\"150\"\n        src=\"https://github.com/TheLarkInn.png?v=3&s=150\">\n        </br>\n        <a href=\"https://github.com/TheLarkInn\">Sean Larkin</a>\n      </td>\n    </tr>\n    <tr>\n      <td align=\"center\">\n        <img width=\"150\" height=\"150\"\n        src=\"https://github.com/michael-ciniawsky.png?v=3&s=150\">\n        </br>\n        <a href=\"https://github.com/michael-ciniawsky\">Michael Ciniawsky</a>\n      </td>\n      <td align=\"center\">\n        <img width=\"150\" height=\"150\"\n        src=\"https://github.com/evilebottnawi.png?v=3&s=150\">\n        </br>\n        <a href=\"https://github.com/evilebottnawi\">Evilebot Tnawi</a>\n      </td>\n      <td align=\"center\">\n        <img width=\"150\" height=\"150\"\n        src=\"https://github.com/joscha.png?v=3&s=150\">\n        </br>\n        <a href=\"https://github.com/joscha\">Joscha Feth</a>\n      </td>\n    </tr>\n  <tbody>\n</table>\n\n\n[npm]: https://img.shields.io/npm/v/css-loader.svg\n[npm-url]: https://npmjs.com/package/css-loader\n\n[node]: https://img.shields.io/node/v/css-loader.svg\n[node-url]: https://nodejs.org\n\n[deps]: https://david-dm.org/webpack-contrib/css-loader.svg\n[deps-url]: https://david-dm.org/webpack-contrib/css-loader\n\n[tests]: http://img.shields.io/travis/webpack-contrib/css-loader.svg\n[tests-url]: https://travis-ci.org/webpack-contrib/css-loader\n\n[cover]: https://codecov.io/gh/webpack-contrib/css-loader/branch/master/graph/badge.svg\n[cover-url]: https://codecov.io/gh/webpack-contrib/css-loader\n\n[chat]: https://badges.gitter.im/webpack/webpack.svg\n[chat-url]: https://gitter.im/webpack/webpack\n","repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"users":{"jehoshua02":true,"borjes":true,"leonardorb":true,"cusr":true,"boyw165":true,"junjiansyu":true,"lavir":true,"panlw":true,"rokeyzki":true,"modao":true,"aicest":true,"dkannan":true,"myxvisual":true,"cfleschhut":true,"fps20only":true,"abdul":true,"dhampik":true,"kimkee":true,"luxifertran":true,"abhisekp":true,"morganz":true,"ackhub":true,"zhenzhuquan":true,"horahora":true,"alexjsdev":true,"princetoad":true,"fadihania":true,"scotchulous":true,"codevelopit":true,"ghostcode521":true,"vipergtsrz":true,"langri-sha":true,"bapinney":true,"klimnikita":true,"yeoyou":true,"sunny_anna":true,"sarmstrongsmartling":true,"carly-lee":true,"wearevilla":true,"wujr5":true,"weerd":true,"sqrtthree":true,"drewigg":true,"evdokimovm":true,"hyteer":true,"juandaco":true,"marlongrape":true,"yong_a":true,"landy2014":true,"artem.tkachuck":true,"josokinas":true,"myorkgitis":true,"usex":true,"modood":true,"cl0udw4lk3r":true,"ferchoriverar":true,"orenschwartz":true,"jaymcoder":true,"fabioper":true,"nickolas_sv":true,"andrej-k":true,"organic":true,"karzanosman984":true},"bugs":{"url":"https://github.com/webpack/css-loader/issues"},"license":"MIT","versions":{"0.1.0":{"name":"css-loader","version":"0.1.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.2.x"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"_id":"css-loader@0.1.0","devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.1","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"5f3243710fdf7f4c13ba4a6baf37045294c9a991","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.1.0.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.1.1":{"name":"css-loader","version":"0.1.1","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.2.x"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"_id":"css-loader@0.1.1","devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.1","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"7ad26de67de39986e10d3b4c4b3e042c7639730f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.1.1.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.1.2":{"name":"css-loader","version":"0.1.2","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.2.x"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"_id":"css-loader@0.1.2","devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.1","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"b57cecbd6ddf3e7e9a944e853caa695eb313850e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.1.2.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.2.0":{"name":"css-loader","version":"0.2.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.2.x"},"devDependencies":{"vows":"0.6.2"},"scripts":{"test":"node node_modules/vows/bin/vows"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"_id":"css-loader@0.2.0","optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.21","_nodeVersion":"v0.6.17","_defaultsLoaded":true,"dist":{"shasum":"f472d142a5c5bf1f5711b93bb2ce55a7fa62f933","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.2.0.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.2.1":{"name":"css-loader","version":"0.2.1","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.2.x"},"devDependencies":{"vows":"0.6.2"},"scripts":{"test":"node node_modules/vows/bin/vows"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"_id":"css-loader@0.2.1","optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.21","_nodeVersion":"v0.6.17","_defaultsLoaded":true,"dist":{"shasum":"c190fecab688f953c0a17461282ac9274bc16ae1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.2.1.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.2.2":{"name":"css-loader","version":"0.2.2","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.2.x"},"devDependencies":{"vows":"0.6.2"},"scripts":{"test":"node node_modules/vows/bin/vows"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"_id":"css-loader@0.2.2","optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.21","_nodeVersion":"v0.6.17","_defaultsLoaded":true,"dist":{"shasum":"650e1a71546879c02cccead6c4af6aa8e339c58b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.2.2.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.2.3":{"name":"css-loader","version":"0.2.3","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.2.x"},"devDependencies":{"vows":"0.6.2"},"scripts":{"test":"node node_modules/vows/bin/vows"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"_id":"css-loader@0.2.3","optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.21","_nodeVersion":"v0.6.17","_defaultsLoaded":true,"dist":{"shasum":"60cd3beac1795b2d06e68966a9d668b7dda39745","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.2.3.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.2.4":{"name":"css-loader","version":"0.2.4","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.2.x"},"devDependencies":{"vows":"0.6.2"},"scripts":{"test":"node node_modules/vows/bin/vows"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_id":"css-loader@0.2.4","dist":{"shasum":"119756687148159fd3b15cf491bb377664540ad0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.2.4.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":"css-loader","version":"0.5.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x"},"devDependencies":{"vows":"0.6.2"},"scripts":{"test":"node node_modules/vows/bin/vows"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"css-loader@0.5.0","dist":{"shasum":"cdcac97ba22dc90596b7ea3f3ba568b9ca025ae4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-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":"css-loader","version":"0.5.1","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x"},"devDependencies":{"vows":"0.6.2"},"scripts":{"test":"node node_modules/vows/bin/vows"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"css-loader@0.5.1","dist":{"shasum":"4bb5f836cbbbbc64258762fab72af763b923a401","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.5.1.tgz"},"_npmVersion":"1.1.59","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.5.2":{"name":"css-loader","version":"0.5.2","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"css-loader@0.5.2","dist":{"shasum":"181ab33feb0e2878b5a6b564a96c4b29aa6f0256","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.5.2.tgz"},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.6.0":{"name":"css-loader","version":"0.6.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"css-loader@0.6.0","dist":{"shasum":"fabf130e7f7cc37f7968be202583cbf8e5fa1d5b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-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":"css-loader","version":"0.6.1","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"css-loader@0.6.1","dist":{"shasum":"960e521e926e2826ad886f94d7c573d3b9e2e933","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.6.1.tgz"},"_from":".","_npmVersion":"1.2.24","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.6.2":{"name":"css-loader","version":"0.6.2","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"css-loader@0.6.2","dist":{"shasum":"c50dc6443d25152fd211f3cba4ddb27b60b7d2d5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.6.2.tgz"},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.6.3":{"name":"css-loader","version":"0.6.3","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"css-loader@0.6.3","dist":{"shasum":"2d7068bc6c0189f113645fd23715cae69378d642","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.6.3.tgz"},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.6.4":{"name":"css-loader","version":"0.6.4","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"css-loader@0.6.4","dist":{"shasum":"c390a683ef41d789383f66fd2daf9179979448b7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.6.4.tgz"},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.6.5":{"name":"css-loader","version":"0.6.5","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"css-loader@0.6.5","dist":{"shasum":"a4809dc38ba52748ba86dbff6d513ce1041c7249","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.6.5.tgz"},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.6.6":{"name":"css-loader","version":"0.6.6","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"css-loader@0.6.6","dist":{"shasum":"1f1fc625a096e32112e86ae8d5f3bfbef92e62dc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.6.6.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.7":{"name":"css-loader","version":"0.6.7","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.6.7","dist":{"shasum":"f3316ebb63ecffc43cdb590196033ee46012240b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.6.7.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.8":{"name":"css-loader","version":"0.6.8","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.6.8","dist":{"shasum":"46d4522f951ad2607802084c5afd4012e5c2599f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.6.8.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.9":{"name":"css-loader","version":"0.6.9","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.6.9","dist":{"shasum":"9a439a1272c3ad660373a864aded8123becec8ac","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.6.9.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.10":{"name":"css-loader","version":"0.6.10","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.6.10","dist":{"shasum":"2cbd568ef8f9bbeeb13d807afeac566d6de7f851","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.6.10.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.11":{"name":"css-loader","version":"0.6.11","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"~0.2.2"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.6.11","dist":{"shasum":"49fa7b61f811c4d4cf77cf9cddc6c156f0bcd97a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.6.11.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.12":{"name":"css-loader","version":"0.6.12","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"~0.2.2"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.6.12","dist":{"shasum":"96ccf183ab38a5ec88aff8d9f821d478614d1a47","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.6.12.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":"css-loader","version":"0.7.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"~0.2.2"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.7.0","dist":{"shasum":"0c69aedb61542da9f0abec4054e675dd08193bcf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-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":"css-loader","version":"0.7.1","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"~0.2.2"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"3e14379d4d1d8a0bce1bec14723c49ae0d540d40","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.7.1","_shasum":"c5781fb16253dadb38794c6c327d3b4ada625823","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"c5781fb16253dadb38794c6c327d3b4ada625823","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.7.1.tgz"},"directories":{}},"0.8.0":{"name":"css-loader","version":"0.8.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"~0.1.38","loader-utils":"~0.2.2"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"e4d6ba5d7d6435faaa50660a2f199ac028031056","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.8.0","_shasum":"9e9385da04edb2e827d402440ad847ddcb903ec8","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"9e9385da04edb2e827d402440ad847ddcb903ec8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.8.0.tgz"},"directories":{}},"0.9.0":{"name":"css-loader","version":"0.9.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"~0.1.38","loader-utils":"~0.2.2"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"7b50d4f569adcaf5bf185180c15435bde03f4de7","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.9.0","_shasum":"079849c253c0a6a9fc8cdeea7d41eab12195a7a8","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"079849c253c0a6a9fc8cdeea7d41eab12195a7a8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.9.0.tgz"},"directories":{}},"0.9.1":{"name":"css-loader","version":"0.9.1","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"csso":"1.3.x","source-map":"~0.1.38","loader-utils":"~0.2.2"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"a8945739c067a7d7e492ac8de44f177278570692","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.9.1","_shasum":"2e1aa00ce7e30ef2c6a7a4b300a080a7c979e0dc","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"2e1aa00ce7e30ef2c6a7a4b300a080a7c979e0dc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.9.1.tgz"},"directories":{}},"0.10.0":{"name":"css-loader","version":"0.10.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.0.0","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"mocha":"^2.2.4","should":"^5.2.0"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"8a4fed26e9d952319a88a7f4ba86587202b911ee","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.10.0","_shasum":"9de2499639364acf54bfc1312179281793bb9aeb","_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":"9de2499639364acf54bfc1312179281793bb9aeb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.10.0.tgz"},"directories":{}},"0.10.1":{"name":"css-loader","version":"0.10.1","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.0.0","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"mocha":"^2.2.4","should":"^5.2.0"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"d1598603419d969f3bf382862e5b0090c6b6d197","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.10.1","_shasum":"3f1a3a77bd5f82fb93fd37fb5c13a1fc6d8fc8fe","_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":"3f1a3a77bd5f82fb93fd37fb5c13a1fc6d8fc8fe","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.10.1.tgz"},"directories":{}},"0.11.0":{"name":"css-loader","version":"0.11.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.0.0","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"mocha":"^2.2.4","should":"^5.2.0"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"397397dcacafda95e3fd2d179d2c95f9a00fbc0e","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.11.0","_shasum":"57e3fa63e791e10a36794b1e1f9af2abbb7ac6be","_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":"57e3fa63e791e10a36794b1e1f9af2abbb7ac6be","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.11.0.tgz"},"directories":{}},"0.11.1":{"name":"css-loader","version":"0.11.1","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.0.0","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"mocha":"^2.2.4","should":"^5.2.0"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"4d4269c14a26e8150ba0eccab54d863c7d8cae39","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.11.1","_shasum":"8a26e0e69f1a1d54f65be856c0bbada9662d1f6b","_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":"8a26e0e69f1a1d54f65be856c0bbada9662d1f6b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.11.1.tgz"},"directories":{}},"0.11.2":{"name":"css-loader","version":"0.11.2","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.0.0","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"mocha":"^2.2.4","should":"^5.2.0"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"2d8797db96034521d3984a7884fb4511d3377b70","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.11.2","_shasum":"d038d8c3bc4cb4e56e8ab38ea3bd398623668962","_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":"d038d8c3bc4cb4e56e8ab38ea3bd398623668962","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.11.2.tgz"},"directories":{}},"0.12.0":{"name":"css-loader","version":"0.12.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.0.0","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"mocha":"^2.2.4","should":"^5.2.0"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"21b0ea34c7f8781c0fc73a3c5100f97c9e566cb9","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.12.0","_shasum":"e622aa1c1f4434e8ca78e02c5f5ad452514b1d6d","_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":"e622aa1c1f4434e8ca78e02c5f5ad452514b1d6d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.12.0.tgz"},"directories":{}},"0.12.1":{"name":"css-loader","version":"0.12.1","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.0.0","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^5.2.0"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"69947fc1a710d112505342c536a15ff42e394951","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.12.1","_shasum":"2ae217edcba20050fbc7e52ca3b5492c73001885","_from":".","_npmVersion":"2.9.0","_nodeVersion":"0.12.2","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"2ae217edcba20050fbc7e52ca3b5492c73001885","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.12.1.tgz"},"directories":{}},"0.13.0":{"name":"css-loader","version":"0.13.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.0.0","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^5.2.0"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"22596d1a18eeb5e8aa9c6436e88e395ebf8b7dee","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.13.0","_shasum":"e2b5c2961b5573cae47b1740c839b1f41a734e0c","_from":".","_npmVersion":"2.9.0","_nodeVersion":"0.12.2","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"e2b5c2961b5573cae47b1740c839b1f41a734e0c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.13.0.tgz"},"directories":{}},"0.13.1":{"name":"css-loader","version":"0.13.1","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.0.0","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^5.2.0"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"c2584322426015ea0255bec1c21547ccad819705","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.13.1","_shasum":"2df4b8e03b26ff7438b15627986fa0e090663604","_from":".","_npmVersion":"2.9.0","_nodeVersion":"0.12.2","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"2df4b8e03b26ff7438b15627986fa0e090663604","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.13.1.tgz"},"directories":{}},"0.14.0":{"name":"css-loader","version":"0.14.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.0.0","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^5.2.0"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"20a86d87f1537f1401e0b5d067abff6b6e0a9c05","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.14.0","_shasum":"7e5acf45fc4d620dedda5b6de78f6738f1a2048b","_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":"7e5acf45fc4d620dedda5b6de78f6738f1a2048b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.14.0.tgz"},"directories":{}},"0.14.1":{"name":"css-loader","version":"0.14.1","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.0.0","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^5.2.0"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"29433bcab790a2f547844148a4a497e27c201ca8","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.14.1","_shasum":"3bc052411e09ecadbf849e1ca1cba25364f78c2e","_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":"3bc052411e09ecadbf849e1ca1cba25364f78c2e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.14.1.tgz"},"directories":{}},"0.14.2":{"name":"css-loader","version":"0.14.2","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.1.1","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^5.2.0"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"ef5cacda025de94b4059fdcf9990cc1a9fdf8228","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.14.2","_shasum":"b24ddee3c9496faf51237d31a4091ce90cb5bfa2","_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":"b24ddee3c9496faf51237d31a4091ce90cb5bfa2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.14.2.tgz"},"directories":{}},"0.14.3":{"name":"css-loader","version":"0.14.3","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.1.1","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^5.2.0"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"b0c89ebb73a154c5d9fffdb35865795ef2358f22","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.14.3","_shasum":"e07b1a5ebdce8f966e7017be2bfffc3f9bcefc33","_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":"e07b1a5ebdce8f966e7017be2bfffc3f9bcefc33","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.14.3.tgz"},"directories":{}},"0.14.4":{"name":"css-loader","version":"0.14.4","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.1.1","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^5.2.0"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git@github.com:webpack/css-loader.git"},"license":"MIT","gitHead":"4a55bb861b6f8793425896f873c558178b5bd8b8","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader","_id":"css-loader@0.14.4","_shasum":"2989ba629a3a2bd92ea04254b4a5291eb365352d","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"2989ba629a3a2bd92ea04254b4a5291eb365352d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.14.4.tgz"},"directories":{}},"0.14.5":{"name":"css-loader","version":"0.14.5","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.1.1","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^5.2.0"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"51e11f3588c8bde66c5cd6b6d7b9bbbdeda671c4","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.14.5","_shasum":"d65635b72adc487ac818a2e78b5bb9feca5352ad","_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":"d65635b72adc487ac818a2e78b5bb9feca5352ad","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.14.5.tgz"},"directories":{}},"0.15.0":{"name":"css-loader","version":"0.15.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":"^1.4.2","loader-utils":"~0.2.2","postcss":"^4.1.11","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.10","postcss-modules-scope":"0.0.7","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"0d366a66580a019cb20ba80467c08dc0521ab181","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.15.0","_shasum":"ca63daab9b869dbc8ff571554940b65e4f463845","_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":"ca63daab9b869dbc8ff571554940b65e4f463845","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.15.0.tgz"},"directories":{}},"0.15.1":{"name":"css-loader","version":"0.15.1","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":"^1.4.2","loader-utils":"~0.2.2","postcss":"^4.1.11","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.10","postcss-modules-scope":"0.0.7","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"ec7e8848303c3b43c0944a18fc7489e09d7088a8","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.15.1","_shasum":"4fcabe1d0aab596127870ab253cab94310778ef1","_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":"4fcabe1d0aab596127870ab253cab94310778ef1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.15.1.tgz"},"directories":{}},"0.15.2":{"name":"css-loader","version":"0.15.2","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":"^1.4.2","loader-utils":"~0.2.2","postcss":"^4.1.11","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.10","postcss-modules-scope":"0.0.7","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"446b6ef0ef756e4a41b37c1cabc5746083fcfc84","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.15.2","_shasum":"5bd9972c04085066f99a95c2fe2a93e784dd9447","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"dist":{"shasum":"5bd9972c04085066f99a95c2fe2a93e784dd9447","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.15.2.tgz"},"directories":{}},"0.15.3":{"name":"css-loader","version":"0.15.3","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":"^1.4.2","loader-utils":"~0.2.2","postcss":"^4.1.11","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.10","postcss-modules-scope":"0.0.7","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"06fb990f53cd82d356ca1f80fbc710e38521c1fc","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.15.3","_shasum":"68f4d0e92d9060b33056c369414f94a289a1d285","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.10.36","_npmUser":{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"dist":{"shasum":"68f4d0e92d9060b33056c369414f94a289a1d285","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.15.3.tgz"},"directories":{}},"0.15.4":{"name":"css-loader","version":"0.15.4","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":"^1.4.2","loader-utils":"~0.2.2","postcss":"^4.1.11","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.10","postcss-modules-scope":"0.0.7","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"c9030e7466a7e46b31c0350c74b03d66ac851041","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.15.4","_shasum":"d84d045b1e639bd7aea1f56adfe7d50d676df672","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.10.36","_npmUser":{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"dist":{"shasum":"d84d045b1e639bd7aea1f56adfe7d50d676df672","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.15.4.tgz"},"directories":{}},"0.15.5":{"name":"css-loader","version":"0.15.5","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":"^1.4.2","loader-utils":"~0.2.2","postcss":"^4.1.11","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.10","postcss-modules-scope":"0.0.7","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"05eb97493688b6ca38dc6d0e82d0b7aed3e36b57","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.15.5","_shasum":"9fedcd198c7460f7141f57fe952b4246c6795982","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"dist":{"shasum":"9fedcd198c7460f7141f57fe952b4246c6795982","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.15.5.tgz"},"directories":{}},"0.15.6":{"name":"css-loader","version":"0.15.6","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":"^2.1.0","loader-utils":"~0.2.2","postcss":"^4.1.11","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.11","postcss-modules-scope":"0.0.8","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"5bf1893a980144b4a2ab88b387914f332a0c0bf7","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.15.6","_shasum":"2287dee284829ebfb81fac0b294da729b3bfa144","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"dist":{"shasum":"2287dee284829ebfb81fac0b294da729b3bfa144","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.15.6.tgz"},"directories":{}},"0.16.0":{"name":"css-loader","version":"0.16.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":"^2.1.0","loader-utils":"~0.2.2","postcss":"^4.1.11","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.11","postcss-modules-scope":"0.0.8","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"9e1c248e6b1adc676a0821152231025104708ac0","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.16.0","_shasum":"96906844059882cc1b3b555a9712cdac55e85f2e","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"dist":{"shasum":"96906844059882cc1b3b555a9712cdac55e85f2e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.16.0.tgz"},"directories":{}},"0.17.0":{"name":"css-loader","version":"0.17.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":"^2.6.1","loader-utils":"~0.2.2","postcss":"^4.1.11","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.12","postcss-modules-scope":"0.0.8","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"c2f9150caba481e7506265860e0f81216ee11e41","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.17.0","_shasum":"a1ddf2df86ba08fbd22781bb33379fc3b08da6eb","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"dist":{"shasum":"a1ddf2df86ba08fbd22781bb33379fc3b08da6eb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.17.0.tgz"},"directories":{}},"0.18.0":{"name":"css-loader","version":"0.18.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":">=2.6.1 <4","loader-utils":"~0.2.2","postcss":">=4.1.11 <6","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.12","postcss-modules-scope":"0.0.8","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"b6d12a41dad74268a4d0163530a09ac799547c7a","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.18.0","_shasum":"deecd9ad99bc47611e811b1c8cacc572e23ddad8","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"dist":{"shasum":"deecd9ad99bc47611e811b1c8cacc572e23ddad8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.18.0.tgz"},"directories":{}},"0.19.0":{"name":"css-loader","version":"0.19.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":">=2.6.1 <4","loader-utils":"~0.2.2","postcss":"^5.0.6","postcss-modules-extract-imports":"1.0.0-beta2","postcss-modules-local-by-default":"1.0.0-beta1","postcss-modules-scope":"1.0.0-beta2","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"54cb5ec1af541585f75ad90ea0d20e1eaf8d984e","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.19.0","_shasum":"7383db6a20fcc42395bada4b8abc25c2735577b8","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"dist":{"shasum":"7383db6a20fcc42395bada4b8abc25c2735577b8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.19.0.tgz"},"directories":{}},"0.20.0":{"name":"css-loader","version":"0.20.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":">=2.6.1 <4","loader-utils":"~0.2.2","postcss":"^5.0.6","postcss-modules-extract-imports":"1.0.0-beta2","postcss-modules-local-by-default":"1.0.0-beta1","postcss-modules-scope":"1.0.0-beta2","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"e93914cb1b3a822b12ff80b15be3226a86b9f3c8","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.20.0","_shasum":"60999c9540453fb1fce2ab42e2b70531917135d4","_from":".","_npmVersion":"3.3.3","_nodeVersion":"4.0.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"60999c9540453fb1fce2ab42e2b70531917135d4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.20.0.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"directories":{}},"0.20.1":{"name":"css-loader","version":"0.20.1","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":">=2.6.1 <4","loader-utils":"~0.2.2","object-assign":"^4.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"1.0.0-beta2","postcss-modules-local-by-default":"1.0.0-beta1","postcss-modules-scope":"1.0.0-beta2","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"909f8e67cbdbc4bd601ef0d92b52299a0ac0b109","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.20.1","_shasum":"73475037c3eec2a1994ae625fead9a2c4ab33d8a","_from":".","_npmVersion":"3.3.3","_nodeVersion":"4.0.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"73475037c3eec2a1994ae625fead9a2c4ab33d8a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.20.1.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"directories":{}},"0.20.2":{"name":"css-loader","version":"0.20.2","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":">=2.6.1 <4","loader-utils":"~0.2.2","object-assign":"^4.0.1","lodash.camelcase":"^3.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"1.0.0-beta2","postcss-modules-local-by-default":"^1.0.0","postcss-modules-scope":"1.0.0-beta2","postcss-modules-values":"^1.1.0","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"e5b308d4705ac4ff68a2a696b2ea472c6517c3ec","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.20.2","_shasum":"6aa37dce1582d3ba359a1b63a0615762d355a1b5","_from":".","_npmVersion":"3.3.3","_nodeVersion":"4.0.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"6aa37dce1582d3ba359a1b63a0615762d355a1b5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.20.2.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"directories":{}},"0.21.0":{"name":"css-loader","version":"0.21.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":">=2.6.1 <4","loader-utils":"~0.2.2","object-assign":"^4.0.1","lodash.camelcase":"^3.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"1.0.0-beta2","postcss-modules-local-by-default":"^1.0.0","postcss-modules-scope":"1.0.0-beta2","postcss-modules-values":"^1.1.0","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"05f8d227702254eb7430fcbe1ce70fdabf04f61e","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.21.0","_shasum":"50335b231152df44663f3b54bd62e24f3c8d66ec","_from":".","_npmVersion":"3.3.3","_nodeVersion":"4.0.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"50335b231152df44663f3b54bd62e24f3c8d66ec","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.21.0.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"directories":{}},"0.22.0":{"name":"css-loader","version":"0.22.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":">=2.6.1 <4","loader-utils":"~0.2.2","object-assign":"^4.0.1","lodash.camelcase":"^3.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"1.0.0-beta2","postcss-modules-local-by-default":"^1.0.0","postcss-modules-scope":"1.0.0-beta2","postcss-modules-values":"^1.1.0","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"4f9543a4a7bb018ac3074ba69458a553abd36092","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.22.0","_shasum":"4892913960cd3dedf8807702c24283f84e97c70f","_from":".","_npmVersion":"3.3.3","_nodeVersion":"4.0.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"4892913960cd3dedf8807702c24283f84e97c70f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.22.0.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"directories":{}},"0.23.0":{"name":"css-loader","version":"0.23.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":">=2.6.1 <4","loader-utils":"~0.2.2","object-assign":"^4.0.1","lodash.camelcase":"^3.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.0","postcss-modules-scope":"^1.0.0","postcss-modules-values":"^1.1.0","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"1298d2b38c4770dbf853ff1eed632fe239881cc2","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.23.0","_shasum":"bddbb3cafe72aa66f8c4faf69210ad1312208f79","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"dist":{"shasum":"bddbb3cafe72aa66f8c4faf69210ad1312208f79","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.23.0.tgz"},"directories":{}},"0.23.1":{"name":"css-loader","version":"0.23.1","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","dependencies":{"css-selector-tokenizer":"^0.5.1","cssnano":">=2.6.1 <4","loader-utils":"~0.2.2","object-assign":"^4.0.1","lodash.camelcase":"^3.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1","postcss-modules-scope":"^1.0.0","postcss-modules-values":"^1.1.0","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"7d2abbaa82a093fa9b71223e1b5ab485cf7e9623","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.23.1","_shasum":"9fa23f2b5c0965235910ad5ecef3b8a36390fe50","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"dist":{"shasum":"9fa23f2b5c0965235910ad5ecef3b8a36390fe50","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.23.1.tgz"},"directories":{}},"0.24.0":{"name":"css-loader","version":"0.24.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","engines":{"node":">=0.12.0"},"dependencies":{"babel-code-frame":"^6.11.0","css-selector-tokenizer":"^0.6.0","cssnano":">=2.6.1 <4","loader-utils":"~0.2.2","lodash.camelcase":"^3.0.1","object-assign":"^4.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1","postcss-modules-scope":"^1.0.0","postcss-modules-values":"^1.1.0","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"278d6cce09aba7d1364b051e03733e510560eabb","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.24.0","_shasum":"7afaafb4c0fb2f90b335ed10a1c77b34d64843fe","_from":".","_npmVersion":"3.3.3","_nodeVersion":"6.3.1","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"7afaafb4c0fb2f90b335ed10a1c77b34d64843fe","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.24.0.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/css-loader-0.24.0.tgz_1472022051595_0.8643808413762599"},"directories":{}},"0.25.0":{"name":"css-loader","version":"0.25.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","engines":{"node":">=0.12.0"},"dependencies":{"babel-code-frame":"^6.11.0","css-selector-tokenizer":"^0.6.0","cssnano":">=2.6.1 <4","loader-utils":"~0.2.2","lodash.camelcase":"^3.0.1","object-assign":"^4.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1","postcss-modules-scope":"^1.0.0","postcss-modules-values":"^1.1.0","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.3.13","mocha":"^2.2.4","should":"^7.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"22f6621a175e858bb604f5ea19f9860982305f16","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.25.0","_shasum":"c3febc8ce28f4c83576b6b13707f47f90c390223","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"c3febc8ce28f4c83576b6b13707f47f90c390223","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.25.0.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/css-loader-0.25.0.tgz_1473090923812_0.8617390526924282"},"directories":{}},"0.26.0":{"name":"css-loader","version":"0.26.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","engines":{"node":">=0.12.0"},"dependencies":{"babel-code-frame":"^6.11.0","css-selector-tokenizer":"^0.7.0","cssnano":">=2.6.1 <4","loader-utils":"~0.2.2","lodash.camelcase":"^4.3.0","object-assign":"^4.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1","postcss-modules-scope":"^1.0.0","postcss-modules-values":"^1.1.0","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.4.5","mocha":"^3.1.2","should":"^11.1.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"9497d74d35a72e22d056b711fdfc7f3166482b36","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.26.0","_shasum":"160d378f5b8e0fd4ff6daf4f3580e2219b33025f","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.8.1","_npmUser":{"name":"spacek33z","email":"kees@webduck.nl"},"dist":{"shasum":"160d378f5b8e0fd4ff6daf4f3580e2219b33025f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.26.0.tgz"},"maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/css-loader-0.26.0.tgz_1479390924176_0.7508776378817856"},"directories":{}},"0.26.1":{"name":"css-loader","version":"0.26.1","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","engines":{"node":">=0.12.0"},"dependencies":{"babel-code-frame":"^6.11.0","css-selector-tokenizer":"^0.7.0","cssnano":">=2.6.1 <4","loader-utils":"~0.2.2","lodash.camelcase":"^4.3.0","object-assign":"^4.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1","postcss-modules-scope":"^1.0.0","postcss-modules-values":"^1.1.0","source-list-map":"^0.1.4"},"devDependencies":{"codecov.io":"^0.1.2","coveralls":"^2.11.2","istanbul":"^0.4.5","mocha":"^3.1.2","should":"^11.1.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"5b856b2c923cad34763486e43254db4c49d25f4e","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.26.1","_shasum":"2ba7f20131b93597496b3e9bb500785a49cd29ea","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"2ba7f20131b93597496b3e9bb500785a49cd29ea","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.26.1.tgz"},"maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/css-loader-0.26.1.tgz_1480687506283_0.7062110011465847"},"directories":{}},"0.26.2":{"name":"css-loader","version":"0.26.2","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"files":["index.js","locals.js","lib"],"dependencies":{"babel-code-frame":"^6.11.0","css-selector-tokenizer":"^0.7.0","cssnano":">=2.6.1 <4","loader-utils":"^1.0.2","lodash.camelcase":"^4.3.0","object-assign":"^4.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1","postcss-modules-scope":"^1.0.0","postcss-modules-values":"^1.1.0","source-list-map":"^0.1.7"},"devDependencies":{"codecov":"^1.0.1","eslint":"3.14.0","istanbul":"^0.4.5","mocha":"^3.2.0","should":"^11.1.2"},"scripts":{"test":"mocha","test:cover":"npm run cover -- --report lcovonly","lint":"eslint lib test","travis:test":"npm run cover","travis:lint":"npm run lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"d7317ca45a77d959051de26651967baa37f4ad85","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.26.2","_shasum":"a9cd4c2b1a559b45d8efc04fc311ab5d2aaccb9d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"a9cd4c2b1a559b45d8efc04fc311ab5d2aaccb9d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.26.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":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/css-loader-0.26.2.tgz_1487954998236_0.5928431514184922"},"directories":{}},"0.26.4":{"name":"css-loader","version":"0.26.4","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"files":["index.js","locals.js","lib"],"dependencies":{"babel-code-frame":"^6.11.0","css-selector-tokenizer":"^0.7.0","cssnano":">=2.6.1 <4","loader-utils":"^1.0.2","lodash.camelcase":"^4.3.0","object-assign":"^4.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1","postcss-modules-scope":"^1.0.0","postcss-modules-values":"^1.1.0","source-list-map":"^0.1.7"},"devDependencies":{"codecov":"^1.0.1","eslint":"3.14.0","istanbul":"^0.4.5","mocha":"^3.2.0","should":"^11.1.2"},"scripts":{"test":"mocha","test:cover":"npm run cover -- --report lcovonly","lint":"eslint lib test","travis:test":"npm run cover","travis:lint":"npm run lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"7cb4cb75c4c850282ec79647dbdbf45a06897ce6","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.26.4","_shasum":"b61e9e30db94303e6ffc892f10ecd09ad025a1fd","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"b61e9e30db94303e6ffc892f10ecd09ad025a1fd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.26.4.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":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/css-loader-0.26.4.tgz_1488981199943_0.17918122466653585"},"directories":{}},"0.27.0":{"name":"css-loader","version":"0.27.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"files":["index.js","locals.js","lib"],"dependencies":{"babel-code-frame":"^6.11.0","convert-source-map":"^1.3.0","css-selector-tokenizer":"^0.7.0","cssnano":">=2.6.1 <4","loader-utils":"^1.0.2","lodash.camelcase":"^4.3.0","object-assign":"^4.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1","postcss-modules-scope":"^1.0.0","postcss-modules-values":"^1.1.0","source-list-map":"^0.1.7"},"devDependencies":{"codecov":"^1.0.1","eslint":"3.14.0","istanbul":"^0.4.5","mocha":"^3.2.0","should":"^11.1.2","standard-version":"^4.0.0"},"scripts":{"test":"mocha","test:cover":"npm run cover -- --report lcovonly","lint":"eslint lib test","travis:test":"npm run cover","travis:lint":"npm run lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"9504ea5d751088fc41a769d7f3b74830d0827871","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.27.0","_shasum":"9730da488ba98b69f11a670a629414aee7c797eb","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"9730da488ba98b69f11a670a629414aee7c797eb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.27.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":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/css-loader-0.27.0.tgz_1489124068541_0.14711664547212422"},"directories":{}},"0.27.1":{"name":"css-loader","version":"0.27.1","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"files":["index.js","locals.js","lib"],"dependencies":{"babel-code-frame":"^6.11.0","convert-source-map":"^1.3.0","css-selector-tokenizer":"^0.7.0","cssnano":">=2.6.1 <4","loader-utils":"^1.0.2","lodash.camelcase":"^4.3.0","object-assign":"^4.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1","postcss-modules-scope":"^1.0.0","postcss-modules-values":"^1.1.0","source-list-map":"^0.1.7"},"devDependencies":{"codecov":"^1.0.1","eslint":"3.14.0","istanbul":"^0.4.5","mocha":"^3.2.0","should":"^11.1.2","standard-version":"^4.0.0"},"scripts":{"test":"mocha","test:cover":"npm run cover -- --report lcovonly","lint":"eslint lib test","travis:test":"npm run cover","travis:lint":"npm run lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"0252643ba32f7087f6531479a6e00baf9d138ae3","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.27.1","_shasum":"bfbc97430fea4b65e1dd48be8216f79cf5521091","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.1","_npmUser":{"name":"bebraw","email":"bebraw@gmail.com"},"dist":{"shasum":"bfbc97430fea4b65e1dd48be8216f79cf5521091","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.27.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":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/css-loader-0.27.1.tgz_1489133760376_0.6213989660609514"},"directories":{}},"0.27.2":{"name":"css-loader","version":"0.27.2","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"files":["index.js","locals.js","lib"],"dependencies":{"babel-code-frame":"^6.11.0","css-selector-tokenizer":"^0.7.0","cssnano":">=2.6.1 <4","loader-utils":"^1.0.2","lodash.camelcase":"^4.3.0","object-assign":"^4.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1","postcss-modules-scope":"^1.0.0","postcss-modules-values":"^1.1.0","source-list-map":"^0.1.7"},"devDependencies":{"codecov":"^1.0.1","eslint":"3.14.0","istanbul":"^0.4.5","mocha":"^3.2.0","should":"^11.1.2","standard-version":"^4.0.0"},"scripts":{"test":"mocha","test:cover":"npm run cover -- --report lcovonly","lint":"eslint lib test","travis:test":"npm run cover","travis:lint":"npm run lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"ee7234bb3c7d24b4faea9229a7b6b3e5c0b3c00e","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.27.2","_shasum":"1522fafc8dd2323414355e304b6f92a96cef7f40","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.1","_npmUser":{"name":"bebraw","email":"bebraw@gmail.com"},"dist":{"shasum":"1522fafc8dd2323414355e304b6f92a96cef7f40","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.27.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":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/css-loader-0.27.2.tgz_1489343254588_0.80490597570315"},"directories":{}},"0.27.3":{"name":"css-loader","version":"0.27.3","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"files":["index.js","locals.js","lib"],"dependencies":{"babel-code-frame":"^6.11.0","css-selector-tokenizer":"^0.7.0","cssnano":">=2.6.1 <4","loader-utils":"^1.0.2","lodash.camelcase":"^4.3.0","object-assign":"^4.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1","postcss-modules-scope":"^1.0.0","postcss-modules-values":"^1.1.0","source-list-map":"^0.1.7"},"devDependencies":{"codecov":"^1.0.1","eslint":"3.14.0","istanbul":"^0.4.5","mocha":"^3.2.0","should":"^11.1.2","standard-version":"^4.0.0"},"scripts":{"test":"mocha","test:cover":"npm run cover -- --report lcovonly","lint":"eslint lib test","travis:test":"npm run cover","travis:lint":"npm run lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"76ee8c2d04de2cb5e7e08251376b79873d9190f3","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.27.3","_shasum":"69ab6f47b69bfb1b5acee61bac2aab14302ff0dc","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.1","_npmUser":{"name":"bebraw","email":"bebraw@gmail.com"},"dist":{"shasum":"69ab6f47b69bfb1b5acee61bac2aab14302ff0dc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.27.3.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":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/css-loader-0.27.3.tgz_1489412702522_0.6339922593906522"},"directories":{}},"0.28.0":{"name":"css-loader","version":"0.28.0","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"files":["index.js","locals.js","lib"],"dependencies":{"babel-code-frame":"^6.11.0","css-selector-tokenizer":"^0.7.0","cssnano":">=2.6.1 <4","loader-utils":"^1.0.2","lodash.camelcase":"^4.3.0","object-assign":"^4.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1","postcss-modules-scope":"^1.0.0","postcss-modules-values":"^1.1.0","source-list-map":"^0.1.7"},"devDependencies":{"codecov":"^1.0.1","eslint":"3.14.0","istanbul":"^0.4.5","mocha":"^3.2.0","should":"^11.1.2","standard-version":"^4.0.0"},"scripts":{"test":"mocha","test:cover":"npm run cover -- --report lcovonly","lint":"eslint lib test","travis:test":"npm run cover","travis:lint":"npm run lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"2f562f8c3a8a222dd3a5d66b44e219e5b2e8fd2f","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.28.0","_shasum":"417cfa9789f8cde59a30ccbf3e4da7a806889bad","_from":".","_npmVersion":"4.2.0","_nodeVersion":"6.9.1","_npmUser":{"name":"bebraw","email":"bebraw@gmail.com"},"dist":{"shasum":"417cfa9789f8cde59a30ccbf3e4da7a806889bad","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.28.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":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/css-loader-0.28.0.tgz_1490856148102_0.6066412949003279"},"directories":{}},"0.28.1":{"name":"css-loader","version":"0.28.1","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"files":["index.js","locals.js","lib"],"dependencies":{"babel-code-frame":"^6.11.0","css-selector-tokenizer":"^0.7.0","cssnano":">=2.6.1 <4","loader-utils":"^1.0.2","lodash.camelcase":"^4.3.0","object-assign":"^4.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1","postcss-modules-scope":"^1.0.0","postcss-modules-values":"^1.1.0","postcss-value-parser":"^3.3.0","source-list-map":"^0.1.7"},"devDependencies":{"codecov":"^1.0.1","eslint":"3.14.0","istanbul":"^0.4.5","mocha":"^3.2.0","should":"^11.1.2","standard-version":"^4.0.0"},"scripts":{"test":"mocha","test:cover":"npm run cover -- --report lcovonly","lint":"eslint lib test","travis:test":"npm run cover","travis:lint":"npm run lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"ae67b2a9eab5b4e27146ac73aff8854b227a081a","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.28.1","_shasum":"220325599f8f00452d9ceb4c3ca6c8a66798642d","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"220325599f8f00452d9ceb4c3ca6c8a66798642d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.28.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":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/css-loader-0.28.1.tgz_1493709528964_0.2846518950536847"},"directories":{}},"0.28.2":{"name":"css-loader","version":"0.28.2","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"files":["index.js","locals.js","lib"],"dependencies":{"babel-code-frame":"^6.11.0","css-selector-tokenizer":"^0.7.0","cssnano":">=2.6.1 <4","loader-utils":"^1.0.2","lodash.camelcase":"^4.3.0","object-assign":"^4.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1","postcss-modules-scope":"^1.0.0","postcss-modules-values":"^1.1.0","postcss-value-parser":"^3.3.0","source-list-map":"^0.1.7"},"devDependencies":{"codecov":"^1.0.1","eslint":"3.14.0","istanbul":"^0.4.5","mocha":"^3.2.0","should":"^11.1.2","standard-version":"^4.0.0"},"scripts":{"test":"mocha","test:cover":"npm run cover -- --report lcovonly","lint":"eslint lib test","travis:test":"npm run cover","travis:lint":"npm run lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"72947b04ef9bc1f5eaf0816212c7b5cf7e555373","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.28.2","_shasum":"0ff48e1d6013afcdb585d46c1e61a5fcd036404e","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"0ff48e1d6013afcdb585d46c1e61a5fcd036404e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.28.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":"kees@webduck.nl","name":"spacek33z"},{"email":"mark.john.dalgleish@gmail.com","name":"markdalgleish"},{"email":"tobias.koppers@googlemail.com","name":"sokra"},{"email":"j.tangelder@gmail.com","name":"jtangelder"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/css-loader-0.28.2.tgz_1495435633010_0.623906533466652"},"directories":{}},"0.28.3":{"name":"css-loader","version":"0.28.3","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"files":["index.js","locals.js","lib"],"dependencies":{"babel-code-frame":"^6.11.0","css-selector-tokenizer":"^0.7.0","cssnano":">=2.6.1 <4","loader-utils":"^1.0.2","lodash.camelcase":"^4.3.0","object-assign":"^4.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1","postcss-modules-scope":"^1.0.0","postcss-modules-values":"^1.1.0","postcss-value-parser":"^3.3.0","source-list-map":"^0.1.7"},"devDependencies":{"codecov":"^1.0.1","eslint":"3.14.0","istanbul":"^0.4.5","mocha":"^3.2.0","should":"^11.1.2","standard-version":"^4.0.0"},"scripts":{"test":"mocha","test:cover":"npm run cover -- --report lcovonly","lint":"eslint lib test","travis:test":"npm run cover","travis:lint":"npm run lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"1a6b17da03b2a99a0bdefcf1c35c7767a715968e","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.28.3","_shasum":"9fd5e0b8c405b6df927ba1103887015d360640ce","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"9fd5e0b8c405b6df927ba1103887015d360640ce","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.28.3.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":"kees@webduck.nl","name":"spacek33z"},{"email":"mark.john.dalgleish@gmail.com","name":"markdalgleish"},{"email":"tobias.koppers@googlemail.com","name":"sokra"},{"email":"j.tangelder@gmail.com","name":"jtangelder"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/css-loader-0.28.3.tgz_1495744628684_0.5916301829274744"},"directories":{}},"0.28.4":{"name":"css-loader","version":"0.28.4","author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"files":["index.js","locals.js","lib"],"dependencies":{"babel-code-frame":"^6.11.0","css-selector-tokenizer":"^0.7.0","cssnano":">=2.6.1 <4","icss-utils":"^2.1.0","loader-utils":"^1.0.2","lodash.camelcase":"^4.3.0","object-assign":"^4.0.1","postcss":"^5.0.6","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1","postcss-modules-scope":"^1.0.0","postcss-modules-values":"^1.1.0","postcss-value-parser":"^3.3.0","source-list-map":"^0.1.7"},"devDependencies":{"codecov":"^1.0.1","eslint":"3.14.0","istanbul":"^0.4.5","mocha":"^3.2.0","should":"^11.1.2","standard-version":"^4.0.0"},"scripts":{"test":"mocha","test:cover":"npm run cover -- --report lcovonly","lint":"eslint lib test","travis:test":"npm run cover","travis:lint":"npm run lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/css-loader.git"},"license":"MIT","gitHead":"ec4006c69083f139adc5a8b599c6d85d59954c3e","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"homepage":"https://github.com/webpack/css-loader#readme","_id":"css-loader@0.28.4","_shasum":"6cf3579192ce355e8b38d5f42dd7a1f2ec898d0f","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"6cf3579192ce355e8b38d5f42dd7a1f2ec898d0f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/css-loader/-/css-loader-0.28.4.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":"kees@webduck.nl","name":"spacek33z"},{"email":"mark.john.dalgleish@gmail.com","name":"markdalgleish"},{"email":"tobias.koppers@googlemail.com","name":"sokra"},{"email":"j.tangelder@gmail.com","name":"jtangelder"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/css-loader-0.28.4.tgz_1496106787797_0.7531535218004137"},"directories":{}}},"name":"css-loader","time":{"modified":"2017-08-12T15:06:21.276Z","created":"2012-04-07T01:04:25.612Z","0.1.0":"2012-04-07T01:04:28.211Z","0.1.1":"2012-04-07T19:02:29.898Z","0.1.2":"2012-05-02T11:21:01.419Z","0.2.0":"2012-05-13T20:58:56.803Z","0.2.1":"2012-05-13T21:04:44.477Z","0.2.2":"2012-05-13T21:31:41.777Z","0.2.3":"2012-05-20T22:04:57.877Z","0.2.4":"2012-09-26T11:20:39.260Z","0.5.0":"2013-02-01T07:45:52.478Z","0.5.1":"2013-02-10T17:34:39.106Z","0.5.2":"2013-02-13T12:27:30.126Z","0.6.0":"2013-03-25T23:15:24.549Z","0.6.1":"2013-06-10T10:42:38.046Z","0.6.2":"2013-09-16T14:07:07.102Z","0.6.3":"2013-11-15T12:09:37.747Z","0.6.4":"2013-11-28T11:31:29.978Z","0.6.5":"2013-12-13T11:34:45.254Z","0.6.6":"2013-12-22T10:36:03.705Z","0.6.7":"2014-01-23T08:04:42.852Z","0.6.8":"2014-02-11T11:35:47.206Z","0.6.9":"2014-03-26T09:36:13.765Z","0.6.10":"2014-03-31T07:52:16.539Z","0.6.11":"2014-03-31T07:52:47.184Z","0.6.12":"2014-03-31T07:58:08.014Z","0.7.0":"2014-07-07T11:03:53.991Z","0.7.1":"2014-08-10T21:15:58.020Z","0.8.0":"2014-09-07T20:55:12.367Z","0.9.0":"2014-09-22T05:55:13.342Z","0.9.1":"2015-01-11T08:39:18.582Z","0.10.0":"2015-04-09T21:06:37.862Z","0.10.1":"2015-04-09T21:37:26.878Z","0.11.0":"2015-04-21T21:35:34.175Z","0.11.1":"2015-04-24T16:10:16.294Z","0.11.2":"2015-04-24T16:33:08.492Z","0.12.0":"2015-04-25T12:41:26.626Z","0.12.1":"2015-05-14T13:56:51.397Z","0.13.0":"2015-05-20T22:13:41.179Z","0.13.1":"2015-05-20T22:58:03.994Z","0.14.0":"2015-05-23T16:44:01.362Z","0.14.1":"2015-05-24T07:28:05.002Z","0.14.2":"2015-05-24T19:51:24.330Z","0.14.3":"2015-05-25T20:18:00.141Z","0.14.4":"2015-05-27T15:29:17.433Z","0.14.5":"2015-06-09T18:37:50.351Z","0.15.0":"2015-06-18T14:42:01.339Z","0.15.1":"2015-06-18T14:45:40.953Z","0.15.2":"2015-07-07T21:42:06.720Z","0.15.3":"2015-07-13T07:11:18.121Z","0.15.4":"2015-07-14T21:11:27.233Z","0.15.5":"2015-07-18T16:24:09.881Z","0.15.6":"2015-07-26T21:32:06.971Z","0.16.0":"2015-08-12T19:59:53.757Z","0.17.0":"2015-09-02T13:51:36.090Z","0.18.0":"2015-09-10T07:18:48.999Z","0.19.0":"2015-09-22T17:54:28.677Z","0.20.0":"2015-10-18T20:48:20.564Z","0.20.1":"2015-10-18T21:05:17.018Z","0.20.2":"2015-10-19T21:44:28.017Z","0.21.0":"2015-10-21T15:14:36.048Z","0.22.0":"2015-11-04T22:50:38.264Z","0.23.0":"2015-11-14T08:19:48.556Z","0.23.1":"2015-12-22T09:52:29.031Z","0.24.0":"2016-08-24T07:00:54.115Z","0.25.0":"2016-09-05T15:55:25.964Z","0.26.0":"2016-11-17T13:55:24.838Z","0.26.1":"2016-12-02T14:05:07.047Z","0.26.2":"2017-02-24T16:49:58.988Z","0.26.4":"2017-03-08T13:53:21.861Z","0.27.0":"2017-03-10T05:34:30.663Z","0.27.1":"2017-03-10T08:16:01.099Z","0.27.2":"2017-03-12T18:27:37.018Z","0.27.3":"2017-03-13T13:45:04.335Z","0.28.0":"2017-03-30T06:42:30.029Z","0.28.1":"2017-05-02T07:18:51.042Z","0.28.2":"2017-05-22T06:47:13.952Z","0.28.3":"2017-05-25T20:37:09.841Z","0.28.4":"2017-05-30T01:13:08.887Z"},"readmeFilename":"README.md","homepage":"https://github.com/webpack/css-loader#readme"}