{"_id":"css-loader","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"keywords":["webpack","css","loader","url","import"],"dist-tags":{"latest":"7.1.4"},"author":{"name":"Tobias Koppers @sokra"},"description":"css loader module for webpack","readme":"<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</div>\n\n[![npm][npm]][npm-url]\n[![node][node]][node-url]\n[![tests][tests]][tests-url]\n[![coverage][cover]][cover-url]\n[![discussion][discussion]][discussion-url]\n[![size][size]][size-url]\n\n# css-loader\n\nThe `css-loader` interprets `@import` and `url()` like `import/require()` and resolves them.\n\n## Getting Started\n\n> [!WARNING]\n>\n> To use the latest version of css-loader, webpack@5 is required\n\nTo begin, you'll need to install `css-loader`:\n\n```console\nnpm install --save-dev css-loader\n```\n\nor\n\n```console\nyarn add -D css-loader\n```\n\nor\n\n```console\npnpm add -D css-loader\n```\n\nThen, add the loader to your `webpack` configuration. For example:\n\n**file.js**\n\n```js\nimport * as css from \"file.css\";\n```\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        use: [\"style-loader\", \"css-loader\"],\n      },\n    ],\n  },\n};\n```\n\nFinally, run `webpack` using the method you normally use (e.g., via CLI or an npm script).\n\nIf you need to extract CSS into a separate file (i.e. do not store CSS in a JS module), consider using the [recommend example](https://github.com/webpack/css-loader#recommend).\n\n## Options\n\n- **[`url`](#url)**\n- **[`import`](#import)**\n- **[`modules`](#modules)**\n- **[`sourceMap`](#sourcemap)**\n- **[`importLoaders`](#importloaders)**\n- **[`esModule`](#esmodule)**\n- **[`exportType`](#exporttype)**\n\n### `url`\n\nType:\n\n```ts\ntype url =\n  | boolean\n  | {\n      filter: (url: string, resourcePath: string) => boolean;\n    };\n```\n\nDefault: `true`\n\nEnables or disables handling the CSS functions `url` and `image-set`.\n\n- If set to `false`, `css-loader` will not parse any paths specified in `url` or `image-set`.\n- You can also pass a function to control this behavior dynamically based on the asset path.\n\nAs of version [4.0.0](https://github.com/webpack/css-loader/main/CHANGELOG.md#400-2020-07-25), absolute paths are resolved based on the server root.\n\nExamples resolutions:\n\n```js\nurl(image.png) => require('./image.png')\nurl('image.png') => require('./image.png')\nurl(./image.png) => require('./image.png')\nurl('./image.png') => require('./image.png')\nurl('http://dontwritehorriblecode.com/2112.png') => require('http://dontwritehorriblecode.com/2112.png')\nimage-set(url('image2x.png') 1x, url('image1x.png') 2x) => require('./image1x.png') and require('./image2x.png')\n```\n\nTo import assets from a `node_modules` path (including `resolve.modules`) or an `alias`, prefix it with a `~`:\n\n```js\nurl(~module/image.png) => require('module/image.png')\nurl('~module/image.png') => require('module/image.png')\nurl(~aliasDirectory/image.png) => require('otherDirectory/image.png')\n```\n\n#### `boolean`\n\nEnable/disable `url()` resolving.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          url: true,\n        },\n      },\n    ],\n  },\n};\n```\n\n#### `object`\n\nAllows filtering of `url()` values.\n\nAny filtered `url()` will not be resolved (left in the code as they were written).\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          url: {\n            filter: (url, resourcePath) => {\n              // resourcePath - path to css file\n\n              // Don't handle `img.png` urls\n              if (url.includes(\"img.png\")) {\n                return false;\n              }\n\n              // Don't handle images under root-relative /external_images/\n              if (/^\\/external_images\\//.test(url)) {\n                return false;\n              }\n\n              return true;\n            },\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n### `import`\n\nType:\n\n<!-- use other name to prettify since import is reserved keyword -->\n\n```ts\ntype importFn =\n  | boolean\n  | {\n      filter: (\n        url: string,\n        media: string,\n        resourcePath: string,\n        supports?: string,\n        layer?: string,\n      ) => boolean;\n    };\n```\n\nDefault: `true`\n\nAllows you to enable or disable handling of `@import` at-rules.\n\nControls how `@import` statements are resolved.\n\nAbsolute URLs in `@import` will be moved in runtime code.\n\nExamples resolutions:\n\n```\n@import 'style.css' => require('./style.css')\n@import url(style.css) => require('./style.css')\n@import url('style.css') => require('./style.css')\n@import './style.css' => require('./style.css')\n@import url(./style.css) => require('./style.css')\n@import url('./style.css') => require('./style.css')\n@import url('http://dontwritehorriblecode.com/style.css') => @import url('http://dontwritehorriblecode.com/style.css') in runtime\n```\n\nTo import styles from a `node_modules` path (include `resolve.modules`) or an `alias`, prefix it with a `~`:\n\n```\n@import url(~module/style.css) => require('module/style.css')\n@import url('~module/style.css') => require('module/style.css')\n@import url(~aliasDirectory/style.css) => require('otherDirectory/style.css')\n```\n\n#### `boolean`\n\nEnable/disable `@import` resolving.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          import: true,\n        },\n      },\n    ],\n  },\n};\n```\n\n#### `object`\n\n##### `filter`\n\nType:\n\n```ts\ntype filter = (url: string, media: string, resourcePath: string) => boolean;\n```\n\nDefault: `undefined`\n\nAllows filtering of `@import`.\n\nAny filtered `@import` will not be resolved (left in the code as they were written).\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          import: {\n            filter: (url, media, resourcePath) => {\n              // resourcePath - path to css file\n\n              // Don't handle `style.css` import\n              if (url.includes(\"style.css\")) {\n                return false;\n              }\n\n              return true;\n            },\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n### `modules`\n\nType:\n\n```ts\ntype modules =\n  | boolean\n  | \"local\"\n  | \"global\"\n  | \"pure\"\n  | \"icss\"\n  | {\n      auto: boolean | regExp | ((resourcePath: string) => boolean);\n      mode:\n        | \"local\"\n        | \"global\"\n        | \"pure\"\n        | \"icss\"\n        | ((resourcePath) => \"local\" | \"global\" | \"pure\" | \"icss\");\n      localIdentName: string;\n      localIdentContext: string;\n      localIdentHashSalt: string;\n      localIdentHashFunction: string;\n      localIdentHashDigest: string;\n      localIdentRegExp: string | regExp;\n      getLocalIdent: (\n        context: LoaderContext,\n        localIdentName: string,\n        localName: string,\n      ) => string;\n      namedExport: boolean;\n      exportGlobals: boolean;\n      exportLocalsConvention:\n        | \"as-is\"\n        | \"camel-case\"\n        | \"camel-case-only\"\n        | \"dashes\"\n        | \"dashes-only\"\n        | ((name: string) => string);\n      exportOnlyLocals: boolean;\n      getJSON: ({\n        resourcePath,\n        imports,\n        exports,\n        replacements,\n      }: {\n        resourcePath: string;\n        imports: object[];\n        exports: object[];\n        replacements: object[];\n      }) => Promise<void> | void;\n    };\n```\n\nDefault: `undefined`\n\nAllows you to enable or disable CSS Modules or ICSS and configure them:\n\n- `undefined`: Enables CSS modules for all files matching `/\\.module\\.\\w+$/i.test(filename)` or `/\\.icss\\.\\w+$/i.test(filename)` regexp.\n- `true`: Enables CSS modules for all files.\n- `false`: Disables CSS Modules for all files.\n- `string`: Disables CSS Modules for all files and set the `mode` option (see [mode](https://github.com/webpack/css-loader#mode) for details).\n- `object`: Enables CSS modules for all files unless the `modules.auto` option is provided. otherwise the `modules.auto` option will determine whether if it is CSS Modules or not (see [auto](https://github.com/webpack/css-loader#auto) for more details).\n\nThe `modules` option enables/disables the **[CSS Modules](https://github.com/css-modules/css-modules)** specification and configures its behavior.\n\nSetting `modules: false` can improve performance because we avoid parsing **CSS Modules** features, this is useful for developers using use vanilla CSS or other technologies.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: true,\n        },\n      },\n    ],\n  },\n};\n```\n\n#### `Features`\n\n##### `Scope`\n\n- Using `local` value requires you to specify `:global` classes.\n- Using `global` value requires you to specify `:local` classes.\n- Using `pure` value requires selectors must contain at least one local class or ID.\n\nYou can find more information on scoping module [here](https://github.com/css-modules/css-modules).\n\nWith CSS Modules, styles are scoped locally, preventing conflicts with global styles.\n\nUse `:local(.className)` to declare a `className` in the local scope. The local identifiers are exported by the module.\n\n- With `:local` (without parentheses) local mode can be switched `on` for this selector.\n- The `:global(.className)` notation can be used to declare an explicit global selector.\n- With `:global` (without parentheses) global mode can be switched `on` for this selector.\n\nThe loader replaces local selectors with unique, scoped identifiers. The chosen unique identifiers are exported by the module.\n\n```css\n:local(.className) {\n  background: red;\n}\n:local .className {\n  color: green;\n}\n:local(.className .subClass) {\n  color: green;\n}\n:local .className .subClass :global(.global-class-name) {\n  color: blue;\n}\n```\n\nOutput (example):\n\n```css\n._23_aKvs-b8bW2Vg3fwHozO {\n  background: red;\n}\n._23_aKvs-b8bW2Vg3fwHozO {\n  color: green;\n}\n._23_aKvs-b8bW2Vg3fwHozO ._13LGdX8RMStbBE9w-t0gZ1 {\n  color: green;\n}\n._23_aKvs-b8bW2Vg3fwHozO ._13LGdX8RMStbBE9w-t0gZ1 .global-class-name {\n  color: blue;\n}\n```\n\n> [!NOTE]\n>\n> Identifiers are exported\n\n```js\nexports.locals = {\n  className: \"_23_aKvs-b8bW2Vg3fwHozO\",\n  subClass: \"_13LGdX8RMStbBE9w-t0gZ1\",\n};\n```\n\nCamelCase naming is recommended for local selectors, as it simplifies usage in imported JS modules.\n\nAlthough you can use `:local(#someId)`, but this is not recommended. Prefer classes instead of IDs for modular styling.\n\n##### `Composing`\n\nWhen declaring a local class name, you can compose it from one or more other local class names.\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 does not alter the final CSS output, but the generated `subClass` will include both class names in its export.\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 class names from another module.\n\n> [!NOTE]\n>\n> It is highly recommended to include file extensions when importing a file, since it is possible to import a file with any extension and it is not known in advance which file to use.\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:\n    edit highlight from \"./edit.css\",\n    button from \"module/button.css\",\n    classFromThisModule;\n  background: red;\n}\n```\n\nor\n\n```css\n:local(.className) {\n  composes: edit highlight from \"./edit.css\";\n  composes: button from \"module/button.css\";\n  composes: classFromThisModule;\n  background: red;\n}\n```\n\n##### `Values`\n\nYou can use `@value` to specific values to be reused throughout a document.\n\nWe recommend following a naming convention:\n\n- `v-` prefix for values\n- `s-` prefix for selectors\n- `m-` prefix for media at-rules.\n\n```css\n@value v-primary: #BF4040;\n@value s-black: black-selector;\n@value m-large: (min-width: 960px);\n\n.header {\n  color: v-primary;\n  padding: 0 10px;\n}\n\n.s-black {\n  color: black;\n}\n\n@media m-large {\n  .header {\n    padding: 0 20px;\n  }\n}\n```\n\n#### `boolean`\n\nEnable **CSS Modules** features.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: true,\n        },\n      },\n    ],\n  },\n};\n```\n\n#### `string`\n\nEnable **CSS Modules** features and setup `mode`.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          // Using `local` value has same effect like using `modules: true`\n          modules: \"global\",\n        },\n      },\n    ],\n  },\n};\n```\n\n#### `object`\n\nEnable **CSS Modules** features and configure its behavior through `options`.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            mode: \"local\",\n            auto: true,\n            exportGlobals: true,\n            localIdentName: \"[path][name]__[local]--[hash:base64:5]\",\n            localIdentContext: path.resolve(__dirname, \"src\"),\n            localIdentHashSalt: \"my-custom-hash\",\n            namedExport: true,\n            exportLocalsConvention: \"as-is\",\n            exportOnlyLocals: false,\n            getJSON: ({ resourcePath, imports, exports, replacements }) => {},\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n##### `auto`\n\nType:\n\n```ts\ntype auto =\n  | boolean\n  | regExp\n  | ((\n      resourcePath: string,\n      resourceQuery: string,\n      resourceFragment: string,\n    ) => boolean);\n```\n\nDefault: `undefined`\n\nAllows auto enable CSS modules or ICSS based on the file name, query or fragment when `modules` option is an object.\n\nPossible values:\n\n- `undefined`: Enables CSS modules for all files.\n- `true`: Enables CSS modules for files matching `/\\.module\\.\\w+$/i.test(filename)` and `/\\.icss\\.\\w+$/i.test(filename)` regexp.\n- `false`: Disables CSS Modules for all files.\n- `RegExp`: Enables CSS modules for all files matching `/RegExp/i.test(filename)` regexp.\n- `function`: Enables CSS Modules for files based on the file name satisfying your filter function check.\n\n###### `boolean`\n\nPossible values:\n\n- `true`: Enables CSS modules or Interoperable CSS (ICSS) format, sets the [`modules.mode`](#mode) option to `local` value for all files which satisfy `/\\.module(s)?\\.\\w+$/i.test(filename)` condition or sets the [`modules.mode`](#mode) option to `icss` value for all files which satisfy `/\\.icss\\.\\w+$/i.test(filename)` condition.\n- `false`: Disables CSS modules or ICSS format based on filename for all files.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            auto: true,\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n###### `RegExp`\n\nEnables CSS modules for files based on the filename satisfying your regex check.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            auto: /\\.custom-module\\.\\w+$/i,\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n###### `function`\n\nEnables CSS Modules for files based on the filename, query or fragment satisfying your filter function check.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            auto: (resourcePath, resourceQuery, resourceFragment) => {\n              return resourcePath.endsWith(\".custom-module.css\");\n            },\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n##### `mode`\n\nType:\n\n```ts\ntype mode =\n  | \"local\"\n  | \"global\"\n  | \"pure\"\n  | \"icss\"\n  | ((\n      resourcePath: string,\n      resourceQuery: string,\n      resourceFragment: string,\n    ) => \"local\" | \"global\" | \"pure\" | \"icss\");\n```\n\nDefault: `'local'`\n\nSetup `mode` option. You can omit the value when you want `local` mode.\n\nControls the level of compilation applied to the input styles.\n\n- The `local`, `global`, and `pure` handles `class` and `id` scoping and `@value` values.\n- The `icss` will only compile the low level `Interoperable CSS (ICSS)` format for declaring `:import` and `:export` dependencies between CSS and other languages.\n\nICSS underpins CSS Module support, and provides a low level syntax for other tools to implement CSS-module variations of their own.\n\n###### `string`\n\nPossible values - `local`, `global`, `pure`, and `icss`.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            mode: \"global\",\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n###### `function`\n\nAllows setting different values for the `mode` option based on the filename, query or fragment.\nPossible return values - `local`, `global`, `pure` and `icss`.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            // Callback must return \"local\", \"global\", or \"pure\" values\n            mode: (resourcePath, resourceQuery, resourceFragment) => {\n              if (/pure.css$/i.test(resourcePath)) {\n                return \"pure\";\n              }\n\n              if (/global.css$/i.test(resourcePath)) {\n                return \"global\";\n              }\n\n              return \"local\";\n            },\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n##### `localIdentName`\n\nType:\n\n```ts\ntype localIdentName = string;\n```\n\nDefault: `'[hash:base64]'`\n\nAllows to configure the generated local ident name.\n\nFor more information on options see:\n\n- [webpack template strings](https://webpack.js.org/configuration/output/#template-strings),\n- [output.hashDigest](https://webpack.js.org/configuration/output/#outputhashdigest),\n- [output.hashDigestLength](https://webpack.js.org/configuration/output/#outputhashdigestlength),\n- [output.hashFunction](https://webpack.js.org/configuration/output/#outputhashfunction),\n- [output.hashSalt](https://webpack.js.org/configuration/output/#outputhashsalt).\n\nSupported template strings:\n\n- `[name]` the basename of the resource\n- `[folder]` the folder the resource relative to the `compiler.context` option or `modules.localIdentContext` option.\n- `[path]` the path of the resource relative to the `compiler.context` option or `modules.localIdentContext` option.\n- `[file]` - filename and path.\n- `[ext]` - extension with leading `.`.\n- `[hash]` - the hash of the string, generated based on `localIdentHashSalt`, `localIdentHashFunction`, `localIdentHashDigest`, `localIdentHashDigestLength`, `localIdentContext`, `resourcePath` and `exportName`\n- `[<hashFunction>:hash:<hashDigest>:<hashDigestLength>]` - hash with hash settings.\n- `[local]` - original class.\n\nRecommendations:\n\n- Use `'[path][name]__[local]'` for development\n- Use `'[hash:base64]'` for production\n\nThe `[local]` placeholder contains original class.\n\n**Note:** all reserved characters (`<>:\"/\\|?*`) and control filesystem characters (excluding characters in the `[local]` placeholder) will be converted to `-`.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            localIdentName: \"[path][name]__[local]--[hash:base64:5]\",\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n##### `localIdentContext`\n\nType:\n\n```ts\ntype localIdentContex = string;\n```\n\nDefault: `compiler.context`\n\nAllows redefining the basic loader context for local ident name.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            localIdentContext: path.resolve(__dirname, \"src\"),\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n##### `localIdentHashSalt`\n\nType:\n\n```ts\ntype localIdentHashSalt = string;\n```\n\nDefault: `undefined`\n\nAllows to add custom hash to generate more unique classes.\n\nFor more information see [output.hashSalt](https://webpack.js.org/configuration/output/#outputhashsalt).\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            localIdentHashSalt: \"hash\",\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n##### `localIdentHashFunction`\n\nType:\n\n```ts\ntype localIdentHashFunction = string;\n```\n\nDefault: `md4`\n\nAllows to specify hash function to generate classes .\n\nFor more information see [output.hashFunction](https://webpack.js.org/configuration/output/#outputhashfunction).\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            localIdentHashFunction: \"md4\",\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n##### `localIdentHashDigest`\n\nType:\n\n```ts\ntype localIdentHashDigest = string;\n```\n\nDefault: `hex`\n\nAllows to specify hash digest to generate classes.\n\nFor more information see [output.hashDigest](https://webpack.js.org/configuration/output/#outputhashdigest).\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            localIdentHashDigest: \"base64\",\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n##### `localIdentHashDigestLength`\n\nType:\n\n```ts\ntype localIdentHashDigestLength = number;\n```\n\nDefault: `20`\n\nAllows to specify hash digest length to generate classes.\n\nFor more information, see [output.hashDigestLength](https://webpack.js.org/configuration/output/#outputhashdigestlength).\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            localIdentHashDigestLength: 5,\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n##### `hashStrategy`\n\nType: `'resource-path-and-local-name' | 'minimal-subset'`\nDefault: `'resource-path-and-local-name'`\n\nShould local name be used when computing the hash.\n\n- `'resource-path-and-local-name'` Both resource path and local name are used when hashing. Each identifier in a module gets its own hash digest, always.\n- `'minimal-subset'` Auto detect if identifier names can be omitted from hashing. Use this value to optimize the output for better GZIP or Brotli compression.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            hashStrategy: \"minimal-subset\",\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n##### `localIdentRegExp`\n\nType:\n\n```ts\ntype localIdentRegExp = string | RegExp;\n```\n\nDefault: `undefined`\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            localIdentRegExp: /page-(.*)\\.css/i,\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n##### `getLocalIdent`\n\nType:\n\n```ts\ntype getLocalIdent = (\n  context: LoaderContext,\n  localIdentName: string,\n  localName: string,\n) => string;\n```\n\nDefault: `undefined`\n\nAllows to specify a function to generate the classname.\n\nBy default we use built-in function to generate a classname.\n\nIf your custom function returns `null` or `undefined`, the built-in generator is used as a `fallback`.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            getLocalIdent: (context, localIdentName, localName, options) => {\n              return \"whatever_random_class_name\";\n            },\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n##### `namedExport`\n\nType:\n\n```ts\ntype namedExport = boolean;\n```\n\nDefault: Depends on the value of the `esModule` option. If the value of the `esModule` options is `true`, `namedExport` defaults to `true` ; otherwise, it defaults to `false`.\n\nEnables or disables ES modules named export for locals.\n\n> [!WARNING]\n>\n> The `default` class name cannot be used directly when `namedExport` is `true` because `default` is a reserved keyword in ECMAScript modules. It is automatically renamed to `_default`.\n\n**styles.css**\n\n```css\n.foo-baz {\n  color: red;\n}\n.bar {\n  color: blue;\n}\n.default {\n  color: green;\n}\n```\n\n**index.js**\n\n```js\nimport * as styles from \"./styles.css\";\n\n// If using `exportLocalsConvention: \"as-is\"` (default value):\nconsole.log(styles[\"foo-baz\"], styles.bar);\n\n// If using `exportLocalsConvention: \"camel-case-only\"`:\nconsole.log(styles.fooBaz, styles.bar);\n\n// For the `default` classname\nconsole.log(styles[\"_default\"]);\n```\n\nYou can enable ES module named export using:\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          esModule: true,\n          modules: {\n            namedExport: true,\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\nTo set a custom name for namedExport, can use [`exportLocalsConvention`](#exportLocalsConvention) option as a function.\n\nSee below in the [`examples`](#examples) section.\n\n##### `exportGlobals`\n\nType:\n\n```ts\ntype exportsGLobals = boolean;\n```\n\nDefault: `false`\n\nAllow `css-loader` to export names from global class or ID, so you can use that as local name.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            exportGlobals: true,\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n##### `exportLocalsConvention`\n\nType:\n\n```ts\ntype exportLocalsConvention =\n  | \"as-is\"\n  | \"camel-case\"\n  | \"camel-case-only\"\n  | \"dashes\"\n  | \"dashes-only\"\n  | ((name: string) => string);\n```\n\nDefault: Depends on the value of the `modules.namedExport` option:\n\n- If `true` - `as-is`\n- Otherwise `camel-case-only` (class names converted to camelCase, original name removed).\n\n> [!WARNING]\n>\n> Names of locals are converted to camelCase when the named export is `false`, i.e. the `exportLocalsConvention` option has`camelCaseOnly` value by default.\n> You can set this back to any other valid option but selectors which are not valid JavaScript identifiers may run into problems which do not implement the entire modules specification.\n\nStyle of exported class names.\n\n###### `string`\n\nBy default, the exported JSON keys mirror the class names (i.e `as-is` value).\n\n|          Name           |   Type   | Description                                                                                         |\n| :---------------------: | :------: | :-------------------------------------------------------------------------------------------------- |\n|      **`'as-is'`**      | `string` | Class names will be exported as is.                                                                 |\n|   **`'camel-case'`**    | `string` | Class names will be camelCased, but the original class name will not to be removed from the locals. |\n| **`'camel-case-only'`** | `string` | Class names will be camelCased, and original class name will be removed from the locals.            |\n|     **`'dashes'`**      | `string` | Only dashes in class names will be camelCased                                                       |\n|   **`'dashes-only'`**   | `string` | Dashes in class names will be camelCased, the original class name will be removed from the locals   |\n\n**file.css**\n\n```css\n.class-name {\n}\n```\n\n**file.js**\n\n```js\nimport { className } from \"file.css\";\n```\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            exportLocalsConvention: \"camel-case-only\",\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n###### `function`\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            exportLocalsConvention: function (name) {\n              return name.replace(/-/g, \"_\");\n            },\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            exportLocalsConvention: function (name) {\n              return [\n                name.replace(/-/g, \"_\"),\n                // dashesCamelCase\n                name.replace(/-+(\\w)/g, (match, firstLetter) =>\n                  firstLetter.toUpperCase(),\n                ),\n              ];\n            },\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n##### `exportOnlyLocals`\n\nType:\n\n```ts\ntype exportOnlyLocals = boolean;\n```\n\nDefault: `false`\n\nExport only locals.\n\n**Useful** when you use **css modules** for pre-rendering (for example SSR).\n\nFor pre-rendering with `mini-css-extract-plugin` you should use this option instead of `style-loader!css-loader` **in the pre-rendering bundle**.\n\nIt doesn't embed CSS; it only exports the identifier mappings.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            exportOnlyLocals: true,\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n##### `getJSON`\n\nType:\n\n```ts\ntype getJSON = ({\n  resourcePath,\n  imports,\n  exports,\n  replacements,\n}: {\n  resourcePath: string;\n  imports: object[];\n  exports: object[];\n  replacements: object[];\n}) => Promise<void> | void;\n```\n\nDefault: `undefined`\n\nEnables a callback to output the CSS modules mapping JSON.\n\nThe callback is invoked with an object containing the following:\n\n- `resourcePath`: the absolute path of the original resource, e.g., `/foo/bar/baz.module.css`\n\n- `imports`: an array of import objects with data about import types and file paths, e.g.,\n\n```json\n[\n  {\n    \"type\": \"icss_import\",\n    \"importName\": \"___CSS_LOADER_ICSS_IMPORT_0___\",\n    \"url\": \"\\\"-!../../../../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!../../../../../node_modules/postcss-loader/dist/cjs.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../baz.module.css\\\"\",\n    \"icss\": true,\n    \"index\": 0\n  }\n]\n```\n\n(Note that this will include all imports, not just those relevant to CSS Modules.)\n\n- `exports`: an array of export objects with exported names and values, e.g.,\n\n```json\n[\n  {\n    \"name\": \"main\",\n    \"value\": \"D2Oy\"\n  }\n]\n```\n\n- `replacements`: an array of import replacement objects used for linking `imports` and `exports`, e.g.,\n\n```json\n{\n  \"replacementName\": \"___CSS_LOADER_ICSS_IMPORT_0_REPLACEMENT_0___\",\n  \"importName\": \"___CSS_LOADER_ICSS_IMPORT_0___\",\n  \"localName\": \"main\"\n}\n```\n\nUsing `getJSON`, it's possible to output a file with all CSS module mappings.\n\nIn the following example, we use `getJSON` to cache canonical mappings and add stand-ins for any composed values (through `composes`), and we use a custom plugin to consolidate the values and output them to a file:\n\n**webpack.config.js**\n\n```js\nconst path = require(\"path\");\nconst fs = require(\"fs\");\n\nconst CSS_LOADER_REPLACEMENT_REGEX =\n  /(___CSS_LOADER_ICSS_IMPORT_\\d+_REPLACEMENT_\\d+___)/g;\nconst REPLACEMENT_REGEX = /___REPLACEMENT\\[(.*?)]\\[(.*?)]___/g;\nconst IDENTIFIER_REGEX = /\\[(.*?)]\\[(.*?)]/;\nconst replacementsMap = {};\nconst canonicalValuesMap = {};\nconst allExportsJson = {};\n\nfunction generateIdentifier(resourcePath, localName) {\n  return `[${resourcePath}][${localName}]`;\n}\n\nfunction addReplacements(resourcePath, imports, exportsJson, replacements) {\n  const importReplacementsMap = {};\n\n  // create a dict to quickly identify imports and get their absolute stand-in strings in the currently loaded file\n  // e.g., { '___CSS_LOADER_ICSS_IMPORT_0_REPLACEMENT_0___': '___REPLACEMENT[/foo/bar/baz.css][main]___' }\n  importReplacementsMap[resourcePath] = replacements.reduce(\n    (acc, { replacementName, importName, localName }) => {\n      const replacementImportUrl = imports.find(\n        (importData) => importData.importName === importName,\n      ).url;\n      const relativePathRe = /.*!(.*)\"/;\n      const [, relativePath] = replacementImportUrl.match(relativePathRe);\n      const importPath = path.resolve(path.dirname(resourcePath), relativePath);\n      const identifier = generateIdentifier(importPath, localName);\n      return { ...acc, [replacementName]: `___REPLACEMENT${identifier}___` };\n    },\n    {},\n  );\n\n  // iterate through the raw exports and add stand-in variables\n  // ('___REPLACEMENT[<absolute_path>][<class_name>]___')\n  // to be replaced in the plugin below\n  for (const [localName, classNames] of Object.entries(exportsJson)) {\n    const identifier = generateIdentifier(resourcePath, localName);\n\n    if (CSS_LOADER_REPLACEMENT_REGEX.test(classNames)) {\n      // if there are any replacements needed in the concatenated class names,\n      // add them all to the replacements map to be replaced altogether later\n      replacementsMap[identifier] = classNames.replaceAll(\n        CSS_LOADER_REPLACEMENT_REGEX,\n        (_, replacementName) =>\n          importReplacementsMap[resourcePath][replacementName],\n      );\n    } else {\n      // otherwise, no class names need replacements so we can add them to\n      // canonical values map and all exports JSON verbatim\n      canonicalValuesMap[identifier] = classNames;\n\n      allExportsJson[resourcePath] = allExportsJson[resourcePath] || {};\n      allExportsJson[resourcePath][localName] = classNames;\n    }\n  }\n}\n\nfunction replaceReplacements(classNames) {\n  return classNames.replaceAll(\n    REPLACEMENT_REGEX,\n    (_, resourcePath, localName) => {\n      const identifier = generateIdentifier(resourcePath, localName);\n\n      if (identifier in canonicalValuesMap) {\n        return canonicalValuesMap[identifier];\n      }\n\n      // Recurse through other stand-in that may be imports\n      const canonicalValue = replaceReplacements(replacementsMap[identifier]);\n\n      canonicalValuesMap[identifier] = canonicalValue;\n\n      return canonicalValue;\n    },\n  );\n}\n\nfunction getJSON({ resourcePath, imports, exports, replacements }) {\n  const exportsJson = exports.reduce((acc, { name, value }) => {\n    return { ...acc, [name]: value };\n  }, {});\n\n  if (replacements.length > 0) {\n    // replacements present --> add stand-in values for absolute paths and local names,\n    // which will be resolved to their canonical values in the plugin below\n    addReplacements(resourcePath, imports, exportsJson, replacements);\n  } else {\n    // no replacements present --> add to canonicalValuesMap verbatim\n    // since all values here are canonical/don't need resolution\n    for (const [key, value] of Object.entries(exportsJson)) {\n      const id = `[${resourcePath}][${key}]`;\n\n      canonicalValuesMap[id] = value;\n    }\n\n    allExportsJson[resourcePath] = exportsJson;\n  }\n}\n\nclass CssModulesJsonPlugin {\n  constructor(options) {\n    this.options = options;\n  }\n\n  // eslint-disable-next-line class-methods-use-this\n  apply(compiler) {\n    compiler.hooks.emit.tap(\"CssModulesJsonPlugin\", () => {\n      for (const [identifier, classNames] of Object.entries(replacementsMap)) {\n        const adjustedClassNames = replaceReplacements(classNames);\n\n        replacementsMap[identifier] = adjustedClassNames;\n\n        const [, resourcePath, localName] = identifier.match(IDENTIFIER_REGEX);\n\n        allExportsJson[resourcePath] = allExportsJson[resourcePath] || {};\n        allExportsJson[resourcePath][localName] = adjustedClassNames;\n      }\n\n      fs.writeFileSync(\n        this.options.filepath,\n        JSON.stringify(\n          // Make path to be relative to `context` (your project root)\n          Object.fromEntries(\n            Object.entries(allExportsJson).map((key) => {\n              key[0] = path\n                .relative(compiler.context, key[0])\n                .replace(/\\\\/g, \"/\");\n\n              return key;\n            }),\n          ),\n          null,\n          2,\n        ),\n        \"utf8\",\n      );\n    });\n  }\n}\n\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: { modules: { getJSON } },\n      },\n    ],\n  },\n  plugins: [\n    new CssModulesJsonPlugin({\n      filepath: path.resolve(__dirname, \"./output.css.json\"),\n    }),\n  ],\n};\n```\n\nIn the above, all import aliases are replaced with `___REPLACEMENT[<resourcePath>][<localName>]___` in `getJSON`, and they're resolved in the custom plugin. All CSS mappings are contained in `allExportsJson`:\n\n```json\n{\n  \"foo/bar/baz.module.css\": {\n    \"main\": \"D2Oy\",\n    \"header\": \"thNN\"\n  },\n  \"foot/bear/bath.module.css\": {\n    \"logo\": \"sqiR\",\n    \"info\": \"XMyI\"\n  }\n}\n```\n\nThis is saved to a local file named `output.css.json`.\n\n### `importLoaders`\n\nType:\n\n```ts\ntype importLoaders = number;\n```\n\nDefault: `0`\n\nAllows to enables/disables or sets up the number of loaders applied before CSS loader for `@import` at-rules, CSS Modules and ICSS imports, i.e. `@import`/`composes`/`@value value from './values.css'`/etc.\n\nThe option `importLoaders` allows you to configure how many loaders before `css-loader` should be applied to `@import`ed resources and CSS Modules/ICSS imports.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        use: [\n          \"style-loader\",\n          {\n            loader: \"css-loader\",\n            options: {\n              importLoaders: 2,\n              // 0 => no loaders (default);\n              // 1 => postcss-loader;\n              // 2 => postcss-loader, sass-loader\n            },\n          },\n          \"postcss-loader\",\n          \"sass-loader\",\n        ],\n      },\n    ],\n  },\n};\n```\n\nThis may change in the future when the module system (i. e. webpack) supports loader matching by origin.\n\n### `sourceMap`\n\nType:\n\n```ts\ntype sourceMap = boolean;\n```\n\nDefault: depends on the `compiler.devtool` value\n\nBy default generation of source maps depends on the [`devtool`](https://webpack.js.org/configuration/devtool/) option. All values enable source map generation except `eval` and `false` values.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          sourceMap: true,\n        },\n      },\n    ],\n  },\n};\n```\n\n### `esModule`\n\nType:\n\n```ts\ntype esModule = boolean;\n```\n\nDefault: `true`\n\nBy default, `css-loader` generates JS modules that use the ES modules syntax.\n\nThere are some cases in which using ES modules is beneficial, like in the case of [module concatenation](https://webpack.js.org/plugins/module-concatenation-plugin/) and [tree shaking](https://webpack.js.org/guides/tree-shaking/).\n\nYou can enable CommonJS module syntax using:\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          esModule: false,\n        },\n      },\n    ],\n  },\n};\n```\n\n### `exportType`\n\nType:\n\n```ts\ntype exportType = \"array\" | \"string\" | \"css-style-sheet\";\n```\n\nDefault: `'array'`\n\nAllows exporting styles as array with modules, string or [constructable stylesheet](https://developers.google.com/web/updates/2019/02/constructable-stylesheets) (i.e. [`CSSStyleSheet`](https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleSheet)).\n\nThe default value is `'array'`, i.e. loader exports an array of modules with a specific API which is used in `style-loader` or other.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        assert: { type: \"css\" },\n        loader: \"css-loader\",\n        options: {\n          exportType: \"css-style-sheet\",\n        },\n      },\n    ],\n  },\n};\n```\n\n**src/index.js**\n\n```js\nimport sheet from \"./styles.css\" assert { type: \"css\" };\n\ndocument.adoptedStyleSheets = [sheet];\nshadowRoot.adoptedStyleSheets = [sheet];\n```\n\n#### `'array'`\n\nThe default export is array of modules with specific API which is used in `style-loader` or other.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.(sa|sc|c)ss$/i,\n        use: [\"style-loader\", \"css-loader\", \"postcss-loader\", \"sass-loader\"],\n      },\n    ],\n  },\n};\n```\n\n**src/index.js**\n\n```js\n// `style-loader` applies styles to DOM\nimport \"./styles.css\";\n```\n\n#### `'string'`\n\n> [!WARNING]\n>\n> You should not use [`style-loader`](https://github.com/webpack/style-loader) or [`mini-css-extract-plugin`](https://github.com/webpack/mini-css-extract-plugin) with this value.\n>\n> The `esModule` option should be enabled if you want to use it with [`CSS modules`](https://github.com/webpack/css-loader#modules). By default for locals [named export](https://github.com/webpack/css-loader#namedexport) will be used.\n\nThe default export is `string`.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.(sa|sc|c)ss$/i,\n        use: [\"css-loader\", \"postcss-loader\", \"sass-loader\"],\n      },\n    ],\n  },\n};\n```\n\n**src/index.js**\n\n```js\nimport sheet from \"./styles.css\";\n\nconsole.log(sheet);\n```\n\n#### `'css-style-sheet'`\n\n> [!WARNING]\n>\n> `@import` rules not yet allowed, more [information](https://web.dev/css-module-scripts/#@import-rules-not-yet-allowed)\n\n> [!WARNING]\n>\n> You don't need [`style-loader`](https://github.com/webpack/style-loader) anymore, please remove it.\n\n> [!WARNING]\n>\n> The `esModule` option should be enabled if you want to use it with [`CSS modules`](https://github.com/webpack/css-loader#modules). By default for locals [named export](https://github.com/webpack/css-loader#namedexport) will be used.\n\n> [!WARNING]\n>\n> Source maps are not currently supported in `Chrome` due to a [bug](https://bugs.chromium.org/p/chromium/issues/detail?id=1174094&q=CSSStyleSheet%20source%20maps&can=2)\n\nThe default export is a [constructable stylesheet](https://developers.google.com/web/updates/2019/02/constructable-stylesheets) (i.e. [`CSSStyleSheet`](https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleSheet)).\n\nUseful for [custom elements](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements) and shadow DOM.\n\nMore information:\n\n- [Using CSS Module Scripts to import stylesheets](https://web.dev/css-module-scripts/)\n- [Constructable Stylesheets: seamless reusable styles](https://developers.google.com/web/updates/2019/02/constructable-stylesheets)\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        assert: { type: \"css\" },\n        loader: \"css-loader\",\n        options: {\n          exportType: \"css-style-sheet\",\n        },\n      },\n\n      // For Sass/SCSS:\n      //\n      // {\n      //   assert: { type: \"css\" },\n      //   rules: [\n      //     {\n      //       loader: \"css-loader\",\n      //       options: {\n      //         exportType: \"css-style-sheet\",\n      //         // Other options\n      //       },\n      //     },\n      //     {\n      //       loader: \"sass-loader\",\n      //       options: {\n      //         // Other options\n      //       },\n      //     },\n      //   ],\n      // },\n    ],\n  },\n};\n```\n\n**src/index.js**\n\n```js\n// Example for Sass/SCSS:\n// import sheet from \"./styles.scss\" assert { type: \"css\" };\n\n// Example for CSS modules:\n// import sheet, { myClass } from \"./styles.scss\" assert { type: \"css\" };\n\n// Example for CSS:\nimport sheet from \"./styles.css\" assert { type: \"css\" };\n\ndocument.adoptedStyleSheets = [sheet];\nshadowRoot.adoptedStyleSheets = [sheet];\n```\n\nFor migration purposes, you can use the following configuration:\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        oneOf: [\n          {\n            assert: { type: \"css\" },\n            loader: \"css-loader\",\n            options: {\n              exportType: \"css-style-sheet\",\n              // Other options\n            },\n          },\n          {\n            use: [\n              \"style-loader\",\n              {\n                loader: \"css-loader\",\n                options: {\n                  // Other options\n                },\n              },\n            ],\n          },\n        ],\n      },\n    ],\n  },\n};\n```\n\n## Examples\n\n### Recommend\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.\n\nThis can be achieved by using the [mini-css-extract-plugin](https://github.com/webpack/mini-css-extract-plugin), because it creates separate css files.\n\nFor `development` mode (including `webpack-dev-server`) you can use [style-loader](https://github.com/webpack/style-loader), because it injects CSS into the DOM using multiple `<style></style>` and works faster.\n\n> [!NOTE]\n>\n> Do not use `style-loader` and `mini-css-extract-plugin` together.\n\n**webpack.config.js**\n\n```js\nconst MiniCssExtractPlugin = require(\"mini-css-extract-plugin\");\nconst devMode = process.env.NODE_ENV !== \"production\";\n\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        // If you enable `experiments.css` or `experiments.futureDefaults`, please uncomment line below\n        // type: \"javascript/auto\",\n        test: /\\.(sa|sc|c)ss$/i,\n        use: [\n          devMode ? \"style-loader\" : MiniCssExtractPlugin.loader,\n          \"css-loader\",\n          \"postcss-loader\",\n          \"sass-loader\",\n        ],\n      },\n    ],\n  },\n  plugins: [].concat(devMode ? [] : [new MiniCssExtractPlugin()]),\n};\n```\n\n### Disable URL resolving using the `/* webpackIgnore: true */` comment\n\nWith the help of the `/* webpackIgnore: true */`comment, it is possible to disable sources handling for rules and for individual declarations.\n\n```css\n/* webpackIgnore: true */\n@import url(./basic.css);\n@import /* webpackIgnore: true */ url(./imported.css);\n\n.class {\n  /* Disabled url handling for the all urls in the 'background' declaration */\n  color: red;\n  /* webpackIgnore: true */\n  background: url(\"./url/img.png\"), url(\"./url/img.png\");\n}\n\n.class {\n  /* Disabled url handling for the first url in the 'background' declaration */\n  color: red;\n  background:\n    /* webpackIgnore: true */ url(\"./url/img.png\"), url(\"./url/img.png\");\n}\n\n.class {\n  /* Disabled url handling for the second url in the 'background' declaration */\n  color: red;\n  background:\n    url(\"./url/img.png\"),\n    /* webpackIgnore: true */ url(\"./url/img.png\");\n}\n\n/* prettier-ignore */\n.class {\n  /* Disabled url handling for the second url in the 'background' declaration */\n  color: red;\n  background: url(\"./url/img.png\"),\n    /* webpackIgnore: true */\n    url(\"./url/img.png\");\n}\n\n/* prettier-ignore */\n.class {\n  /* Disabled url handling for third and sixth urls in the 'background-image' declaration */\n  background-image: image-set(\n    url(./url/img.png) 2x,\n    url(./url/img.png) 3x,\n    /* webpackIgnore:  true */ url(./url/img.png) 4x,\n    url(./url/img.png) 5x,\n    url(./url/img.png) 6x,\n    /* webpackIgnore:  true */\n    url(./url/img.png) 7x\n  );\n}\n```\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**For webpack v5:**\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        use: [\"style-loader\", \"css-loader\"],\n      },\n      {\n        test: /\\.(png|jpe?g|gif|svg|eot|ttf|woff|woff2)$/i,\n        // More information here https://webpack.js.org/guides/asset-modules/\n        type: \"asset\",\n      },\n    ],\n  },\n};\n```\n\n### Extract\n\nFor production builds it's recommended to extract the CSS from your bundle to enable parallel loading of CSS/JS resources later on.\n\n- This can be achieved by using the [mini-css-extract-plugin](https://github.com/webpack/mini-css-extract-plugin) to extract the CSS when running in production mode.\n\n- As an alternative, if seeking better development performance and css outputs that mimic production. [extract-css-chunks-webpack-plugin](https://github.com/faceyspacey/extract-css-chunks-webpack-plugin) offers a hot module reload friendly, extended version of mini-css-extract-plugin. HMR real CSS files in dev, works like mini-css in non-dev.\n\n### Pure CSS, CSS Modules and PostCSS\n\nWhen you have pure CSS (without CSS modules), CSS modules and PostCSS in your project, you can use this setup:\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        // For pure CSS - /\\.css$/i,\n        // For Sass/SCSS - /\\.((c|sa|sc)ss)$/i,\n        // For Less - /\\.((c|le)ss)$/i,\n        test: /\\.((c|sa|sc)ss)$/i,\n        use: [\n          \"style-loader\",\n          {\n            loader: \"css-loader\",\n            options: {\n              // Run `postcss-loader` on each CSS `@import` and CSS modules/ICSS imports, do not forget that `sass-loader` compile non CSS `@import`'s into a single file\n              // If you need run `sass-loader` and `postcss-loader` on each CSS `@import` please set it to `2`\n              importLoaders: 1,\n            },\n          },\n          {\n            loader: \"postcss-loader\",\n            options: { plugins: () => [postcssPresetEnv({ stage: 0 })] },\n          },\n          // Can be `less-loader`\n          {\n            loader: \"sass-loader\",\n          },\n        ],\n      },\n      // For webpack v5\n      {\n        test: /\\.(png|jpe?g|gif|svg|eot|ttf|woff|woff2)$/i,\n        // More information here https://webpack.js.org/guides/asset-modules/\n        type: \"asset\",\n      },\n    ],\n  },\n};\n```\n\n### Resolve unresolved URLs using an alias\n\n**index.css**\n\n```css\n.class {\n  background: url(/assets/unresolved/img.png);\n}\n```\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        use: [\"style-loader\", \"css-loader\"],\n      },\n    ],\n  },\n  resolve: {\n    alias: {\n      \"/assets/unresolved/img.png\": path.resolve(\n        __dirname,\n        \"assets/real-path-to-img/img.png\",\n      ),\n    },\n  },\n};\n```\n\n### Named export with custom export names\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.css$/i,\n        loader: \"css-loader\",\n        options: {\n          modules: {\n            namedExport: true,\n            exportLocalsConvention: function (name) {\n              return name.replace(/-/g, \"_\");\n            },\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n### Separating `Interoperable CSS`-only and `CSS Module` features\n\nThe following setup is an example of allowing `Interoperable CSS` features only (such as `:import` and `:export`) without using further `CSS Module` functionality by setting the `mode` option for all files that do not match the `*.module.scss` naming convention. This is for reference, as having `ICSS` features applied to all files was default `css-loader` behavior before v4.\n\nMeanwhile, all files matching `*.module.scss` are treated as `CSS Modules` in this example.\n\nAn example case is assumed where a project requires canvas drawing variables to be synchronized with CSS - canvas drawing uses the same color (set by color name in JavaScript) as HTML background (set by class name in CSS).\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      // ...\n      // --------\n      // SCSS ALL EXCEPT MODULES\n      {\n        test: /\\.scss$/i,\n        exclude: /\\.module\\.scss$/i,\n        use: [\n          {\n            loader: \"style-loader\",\n          },\n          {\n            loader: \"css-loader\",\n            options: {\n              importLoaders: 1,\n              modules: {\n                mode: \"icss\",\n              },\n            },\n          },\n          {\n            loader: \"sass-loader\",\n          },\n        ],\n      },\n      // --------\n      // SCSS MODULES\n      {\n        test: /\\.module\\.scss$/i,\n        use: [\n          {\n            loader: \"style-loader\",\n          },\n          {\n            loader: \"css-loader\",\n            options: {\n              importLoaders: 1,\n              modules: {\n                mode: \"local\",\n              },\n            },\n          },\n          {\n            loader: \"sass-loader\",\n          },\n        ],\n      },\n      // --------\n      // ...\n    ],\n  },\n};\n```\n\n**variables.scss**\n\nFile treated as `ICSS`-only.\n\n```scss\n$colorBackground: red;\n:export {\n  colorBackgroundCanvas: $colorBackground;\n}\n```\n\n**Component.module.scss**\n\nFile treated as `CSS Module`.\n\n```scss\n@import \"variables.scss\";\n.componentClass {\n  background-color: $colorBackground;\n}\n```\n\n**Component.jsx**\n\nUsing both `CSS Module` functionality as well as SCSS variables directly in JavaScript.\n\n```jsx\nimport * as svars from \"variables.scss\";\nimport * as styles from \"Component.module.scss\";\n\n// Render DOM with CSS modules class name\n// <div className={styles.componentClass}>\n//   <canvas ref={mountsCanvas}/>\n// </div>\n\n// Somewhere in JavaScript canvas drawing code use the variable directly\n// const ctx = mountsCanvas.current.getContext('2d',{alpha: false});\nctx.fillStyle = `${svars.colorBackgroundCanvas}`;\n```\n\n## Contributing\n\nWe welcome all contributions!\n\nIf you are new here, please take a moment to review our contributing guidelines before submitting issues or pull requests.\n\n[CONTRIBUTING](https://github.com/webpack/css-loader?tab=contributing-ov-file#contributing)\n\n## License\n\n[MIT](./LICENSE)\n\n[npm]: https://img.shields.io/npm/v/css-loader.svg\n[npm-url]: https://npmjs.com/package/css-loader\n[node]: https://img.shields.io/node/v/css-loader.svg\n[node-url]: https://nodejs.org\n[tests]: https://github.com/webpack/css-loader/workflows/css-loader/badge.svg\n[tests-url]: https://github.com/webpack/css-loader/actions\n[cover]: https://codecov.io/gh/webpack/css-loader/branch/main/graph/badge.svg\n[cover-url]: https://codecov.io/gh/webpack/css-loader\n[discussion]: https://img.shields.io/github/discussions/webpack/webpack\n[discussion-url]: https://github.com/webpack/webpack/discussions\n[size]: https://packagephobia.now.sh/badge?p=css-loader\n[size-url]: https://packagephobia.now.sh/result?p=css-loader\n","repository":{"type":"git","url":"git+https://github.com/webpack/css-loader.git"},"users":{"xfloops":true,"jream":true,"leonel-ai":true,"vipergtsrz":true,"endsoul":true,"dhampik":true,"aicest":true,"xinwangwang":true,"sunny_anna":true,"akh-rman":true,"codevelopit":true,"marlongrape":true,"sunzhixun":true,"flumpus-dev":true,"langri-sha":true,"hyteer":true,"tiggem1993":true,"princetoad":true,"borjes":true,"fakefarm":true,"leonardorb":true,"fearnbuster":true,"flayks":true,"fps20only":true,"landy2014":true,"karzanosman984":true,"wearevilla":true,"tomchao":true,"sqrtthree":true,"juandaco":true,"salvationz":true,"myxvisual":true,"gpmetheny":true,"jaymcoder":true,"yeming":true,"alexjsdev":true,"yeoyou":true,"andrej-k":true,"bapinney":true,"cfleschhut":true,"rokeyzki":true,"fadihania":true,"weerd":true,"drewigg":true,"myorkgitis":true,"ferchoriverar":true,"cslasher":true,"cusr":true,"orenschwartz":true,"jehoshua02":true,"modao":true,"lqweb":true,"cl0udw4lk3r":true,"wujr5":true,"kimkee":true,"luffy84217":true,"luojianet":true,"lavir":true,"sarmstrongsmartling":true,"ghostcode521":true,"fstgeorge":true,"npmmurali":true,"th3mon":true,"klimnikita":true,"panlw":true,"horahora":true,"arcticicestudio":true,"nickolas_sv":true,"dennisli87":true,"dkannan":true,"yangzw":true,"yong_a":true,"fabioper":true,"junjiansyu":true,"abdul":true,"mskjp":true,"maddas":true,"scotchulous":true,"jaredwilli":true,"boyw165":true,"luxifertran":true,"zhenzhuquan":true,"artem.tkachuck":true,"ttionya":true,"morganz":true,"jakedalus":true,"maxwhite":true,"xerullian":true,"organic":true,"smtnkc":true,"dacheng":true,"usex":true,"ackhub":true,"evdokimovm":true,"abhisekp":true,"jalik":true,"haoxiaodan":true,"carly-lee":true,"azertypow":true,"renishskills":true},"bugs":{"url":"https://github.com/webpack/css-loader/issues"},"license":"MIT","versions":{"0.2.4":{"name":"css-loader","version":"0.2.4","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.2.4","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"119756687148159fd3b15cf491bb377664540ad0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.2.4.tgz","integrity":"sha512-vI1IYPEs8tkS4UvuzAKXvJLVZqPv0NoEzx5FvfjjDzbZuVZrzP5av3A7VEytbLq7O2m2zdYVo12EEQCd3CdvZg==","signatures":[{"sig":"MEUCIQC/COYOqYcxAKdEZ8m63y9eop8FqLHtDSAh9LmVcwf6mwIgSdNhjii1XF5F5/qSFH+4JMwae3lKOnJUBADjYoPYNAI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"scripts":{"test":"node node_modules/vows/bin/vows"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.1.61","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.2.x"},"devDependencies":{"vows":"0.6.2"}},"0.6.0":{"name":"css-loader","version":"0.6.0","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.6.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"fabf130e7f7cc37f7968be202583cbf8e5fa1d5b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.6.0.tgz","integrity":"sha512-YXgghOHYejh1eCYyohyOfZiLIA7Yj9C2dRRbA9BWDQ3C+MbhzLdpW4ABCyl3UKbpwvUcznPk1kKYm97hybogcw==","signatures":[{"sig":"MEQCIGnzo0Ll7gaqgmHR6yVkL/svh5IiGZAPXxTa1YYOML3QAiB5weHkM1RkLfrSi6vrftjix8LhlXVrd4ATZsMhak6Ynw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.2.11","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"0.28.2":{"name":"css-loader","version":"0.28.2","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.28.2","maintainers":[{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jtangelder","email":"j.tangelder@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"0ff48e1d6013afcdb585d46c1e61a5fcd036404e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.28.2.tgz","integrity":"sha512-78gEKUox9IBNUVqRHqAFxb9ZAT5AEEfNg9vqlKuAbc7kf+8nCBSquO3xhLLi0M/3gYPURN1XaKTsYgyKUIfvXQ==","signatures":[{"sig":"MEYCIQC37NyHBnbCIyb2Dlseh0yh2IqgAKGP8k+gDX1in9fisgIhAM0w1ZtMurEGlBPhXvAP9Qh5hkgps0dxafwmMK0bgUWr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","locals.js","lib"],"_shasum":"0ff48e1d6013afcdb585d46c1e61a5fcd036404e","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"gitHead":"72947b04ef9bc1f5eaf0816212c7b5cf7e555373","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"4.2.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"7.9.0","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"^1.0.2","object-assign":"^4.0.1","source-list-map":"^0.1.7","babel-code-frame":"^6.11.0","lodash.camelcase":"^4.3.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.28.2.tgz_1495435633010_0.623906533466652","host":"s3://npm-registry-packages"}},"0.6.1":{"name":"css-loader","version":"0.6.1","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.6.1","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"960e521e926e2826ad886f94d7c573d3b9e2e933","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.6.1.tgz","integrity":"sha512-4DNGT7mxjn67mltHlgUV4lvVzvxy2Xe0yZ+b6601Mx4r+ZFcU/gLqeXEESgTbDFfkdZ0noYeaK1cMvOH5RwoDA==","signatures":[{"sig":"MEUCIQCtVOyOohReieQEo4LMmH3w4tbTDlTfbIgHCT/rlm1aFgIgJXJXmt0SggZz+G4Ym67S1+Rtkr6sokFIXkUy5Cm0rH4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.2.24","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"0.28.3":{"name":"css-loader","version":"0.28.3","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.28.3","maintainers":[{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jtangelder","email":"j.tangelder@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"9fd5e0b8c405b6df927ba1103887015d360640ce","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.28.3.tgz","integrity":"sha512-u8IJf6sSFVsohzdWqtdKLBr9EYFJ6RCTXSAS9+Yx2fmBBcQwmOleE+x2HKajO0/nPgRaDJV2kY6yCYm3a2ZH+A==","signatures":[{"sig":"MEQCIA2KiaXU1xpksmSNAQwVX0RcZkbFun77uKPLfEzRxqc0AiBCy5yabQLZTlV3zFuZltybGoxIe34Ktpj1Y2WOt623Og==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","locals.js","lib"],"_shasum":"9fd5e0b8c405b6df927ba1103887015d360640ce","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"gitHead":"1a6b17da03b2a99a0bdefcf1c35c7767a715968e","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"4.2.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"7.9.0","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"^1.0.2","object-assign":"^4.0.1","source-list-map":"^0.1.7","babel-code-frame":"^6.11.0","lodash.camelcase":"^4.3.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.28.3.tgz_1495744628684_0.5916301829274744","host":"s3://npm-registry-packages"}},"0.2.2":{"name":"css-loader","version":"0.2.2","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.2.2","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"650e1a71546879c02cccead6c4af6aa8e339c58b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.2.2.tgz","integrity":"sha512-Z5IoKQKdZX5gcXAsiB7FDmu+OV1DaaaZstjZ42VYEMBhM9vIxtSA6oAJpfw80PnX48vWuMvr0JTbTNDdUtHmFQ==","signatures":[{"sig":"MEQCIG1l1LpUNiJjlow6+m4181SA6fTeQe5eMPA4pu9ipa5NAiAlIXjDt83SEGwaHjhgqx4Ky+RTnC++kJ8Ivr8hQWTF0g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"engines":{"node":"*"},"scripts":{"test":"node node_modules/vows/bin/vows"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.1.21","description":"css loader module for webpack","directories":{},"_nodeVersion":"v0.6.17","dependencies":{"csso":"1.2.x"},"_defaultsLoaded":true,"devDependencies":{"vows":"0.6.2"},"_engineSupported":true,"optionalDependencies":{}},"0.28.4":{"name":"css-loader","version":"0.28.4","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.28.4","maintainers":[{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jtangelder","email":"j.tangelder@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"6cf3579192ce355e8b38d5f42dd7a1f2ec898d0f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.28.4.tgz","integrity":"sha512-umVjsx1rY6Nozzi01Ni32aicDaZ6fBgMC8X3Xk1hqFgYpS5k3YT30K8cqMVVX8YKpkjMCDDdsQ07uLZCShSAmQ==","signatures":[{"sig":"MEYCIQDHB9LVdX76qvKYZo2X2wGxjqZ6nCcZhZEFVq9xieetyQIhAN/wlHTJQ52Ojxf+eqmou1fvR/sUWhFaiOcyW1AdAdhc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","locals.js","lib"],"_shasum":"6cf3579192ce355e8b38d5f42dd7a1f2ec898d0f","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"gitHead":"ec4006c69083f139adc5a8b599c6d85d59954c3e","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"4.2.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"7.10.0","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","icss-utils":"^2.1.0","loader-utils":"^1.0.2","object-assign":"^4.0.1","source-list-map":"^0.1.7","babel-code-frame":"^6.11.0","lodash.camelcase":"^4.3.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.28.4.tgz_1496106787797_0.7531535218004137","host":"s3://npm-registry-packages"}},"0.2.3":{"name":"css-loader","version":"0.2.3","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.2.3","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"60cd3beac1795b2d06e68966a9d668b7dda39745","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.2.3.tgz","integrity":"sha512-67+MXQ5P6Hw2cLtz10+so7JjMv37E1Rnogwc2jjmhPM5+CtZscJe8J0qUBnOoGgpeFQBWv8w0XLTrKvFkI/yew==","signatures":[{"sig":"MEQCIBuDhtYAiaparqRJ7KQUHLja08kmUvS5ekgEH2FVh3WeAiBPK8ONW7XA4rzPxf3VqjJXecbLkNOAiBaytOTWnxB1yg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"engines":{"node":"*"},"scripts":{"test":"node node_modules/vows/bin/vows"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.1.21","description":"css loader module for webpack","directories":{},"_nodeVersion":"v0.6.17","dependencies":{"csso":"1.2.x"},"_defaultsLoaded":true,"devDependencies":{"vows":"0.6.2"},"_engineSupported":true,"optionalDependencies":{}},"0.28.5":{"name":"css-loader","version":"0.28.5","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.28.5","maintainers":[{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jtangelder","email":"j.tangelder@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"dd02bb91b94545710212ef7f6aaa66663113d754","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.28.5.tgz","integrity":"sha512-/FJmsDD8e6xZOBHMFShN/BCjnrEybq0spYaTZ1QoZ10/jhUa1LDDojQELu/JJ1ykZZjt0nSwkYrb2Mfx3bZx3Q==","signatures":[{"sig":"MEQCIASes2gWryX/kBQVz6x+FVoaDtreWtrLdQQQ7re3KbZlAiB1HbjJnpnqlUXG8eDhI/KFSGvHP0qN1YbHDbLBvs3mJA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js","locals.js","lib"],"engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"gitHead":"e16bdeb0ec404861c3799c069e56fb0147006075","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"5.3.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"8.2.1","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","icss-utils":"^2.1.0","loader-utils":"^1.0.2","object-assign":"^4.0.1","source-list-map":"^2.0.0","babel-code-frame":"^6.11.0","lodash.camelcase":"^4.3.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.28.5.tgz_1502957823516_0.5494546045083553","host":"s3://npm-registry-packages"}},"0.6.4":{"name":"css-loader","version":"0.6.4","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.6.4","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"c390a683ef41d789383f66fd2daf9179979448b7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.6.4.tgz","integrity":"sha512-Iubae8dIf142HH/Iu5gmTECGOow8QkcuYf4DMDpbnFgXJTRwa/fDKGtz7gz0NkPqeEOjZiM1go5638UYV8pIFA==","signatures":[{"sig":"MEUCIGpmud3LMKeaZEybbuc1zeKSmND3MfQCfedcgiSCRxpdAiEAp1fJqHDC2iZVpb2ZPyN6yEdOZEnBn7ykTwGjtTaWWs0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.2.30","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"0.28.6":{"name":"css-loader","version":"0.28.6","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.28.6","maintainers":[{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jtangelder","email":"j.tangelder@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"9cc15eeee3f8d2f4eeb4c37556581ac84f39bad1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.28.6.tgz","integrity":"sha512-i3k2sLTweSFeLWosniuZSWCof3uAvg6IUqO1xN+2YSEEzpeQnT+rpobWpT6X+F39SdN8Qk74yLs94DHVpNp+IA==","signatures":[{"sig":"MEQCIGufOo/5URr/aI7Xf2qmD7GDIvGCEosFCkF6P2CqHsJoAiAgTIGySsV+aukRebTiG2kAtJud+3Qt4E0LSZ3N2An4Gg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js","locals.js","lib"],"engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"gitHead":"d18ee04e12edb76ed7937df5183e239131cbdaeb","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"5.3.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"8.4.0","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","icss-utils":"^2.1.0","loader-utils":"^1.0.2","object-assign":"^4.0.1","source-list-map":"^2.0.0","babel-code-frame":"^6.11.0","lodash.camelcase":"^4.3.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.28.6.tgz_1504110515069_0.732880384195596","host":"s3://npm-registry-packages"}},"0.6.5":{"name":"css-loader","version":"0.6.5","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.6.5","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"a4809dc38ba52748ba86dbff6d513ce1041c7249","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.6.5.tgz","integrity":"sha512-2YiXpT2GILyGG8IMXo/tDOV0c7riVW1FQVQBpg11mmrdFQEBHFrSPETL6j4+0g/CISA/GoQ0ryPxxY4Xl94gNw==","signatures":[{"sig":"MEYCIQC/qwyrywQjc8IB4KXYZZ3M+jFF+tLBaLH+MERHfrA7PwIhAJpFEKV8BGyUFSU0E7p7DINOBdHQk9WfwTJDq59K6dnM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.3.11","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"0.28.7":{"name":"css-loader","version":"0.28.7","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.28.7","maintainers":[{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jtangelder","email":"j.tangelder@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"5f2ee989dd32edd907717f953317656160999c1b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.28.7.tgz","integrity":"sha512-GxMpax8a/VgcfRrVy0gXD6yLd5ePYbXX/5zGgTVYp4wXtJklS8Z2VaUArJgc//f6/Dzil7BaJObdSv8eKKCPgg==","signatures":[{"sig":"MEYCIQCJM0NPUjij2DXazOSpjlX9UF4z+p67IFWIy/0QgQnpJAIhANJ+TK3WVsVijnvGkids7S2aXeO7CjvZxp53QSGvkIcV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js","locals.js","lib"],"engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"gitHead":"7b5295135302d5db9ef337a803ca76174f5af1f0","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"5.3.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"8.4.0","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","icss-utils":"^2.1.0","loader-utils":"^1.0.2","object-assign":"^4.0.1","source-list-map":"^2.0.0","babel-code-frame":"^6.11.0","lodash.camelcase":"^4.3.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.28.7.tgz_1504127907013_0.3832489368505776","host":"s3://npm-registry-packages"}},"0.6.2":{"name":"css-loader","version":"0.6.2","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.6.2","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"c50dc6443d25152fd211f3cba4ddb27b60b7d2d5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.6.2.tgz","integrity":"sha512-Tgb8bsmWYZo0vrSJ0DwqsewnAdymXhTFoFwodF8vFV4zPkO6xeK7hn9DLrJEm0WxChw1Yig83blqIW5aTgzRWg==","signatures":[{"sig":"MEUCIQCq6VOgPefI3SJUuMIQXXTjSpwdNTWRm6kr7uVxrfb1+QIgJ11GQ2ImDH5VkCMXxW045WKM5FKKpvgvolSc/iJR3LA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.2.30","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"0.28.8":{"name":"css-loader","version":"0.28.8","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.28.8","maintainers":[{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jtangelder","email":"j.tangelder@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"ff36381464dea18fe60f2601a060ba6445886bd5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.28.8.tgz","integrity":"sha512-4jGj7Ag6WUZ5lQyE4te9sJLn0lgkz6HI3WDE4aw98AkW1IAKXPP4blTpPeorlLDpNsYvojo0SYgRJOdz2KbuAw==","signatures":[{"sig":"MEYCIQDaN96xEQ6h0UB+3CHF0zC71qImoKLx3z+hoySdQcXPZwIhAJEZbQRGM+KK68Li+emH7TjRwgGFA4iGhDPvQ6y36sqd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["lib","index.js","locals.js"],"engines":{"node":">=0.12.0 || >= 4.3.0 < 5.0.0 || >=5.10"},"gitHead":"0fc46c791ce449a5e41cbe1af12eff8b74706053","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"5.6.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"9.2.0","dependencies":{"cssnano":"^3.10.0","postcss":"^5.0.6","icss-utils":"^2.1.0","loader-utils":"^1.0.2","object-assign":"^4.1.1","source-list-map":"^2.0.0","babel-code-frame":"^6.26.0","lodash.camelcase":"^4.3.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^1.1.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.3.0","postcss-modules-extract-imports":"^1.1.0","postcss-modules-local-by-default":"^1.2.0"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.28.8.tgz_1515133535541_0.04165705619379878","host":"s3://npm-registry-packages"}},"0.6.3":{"name":"css-loader","version":"0.6.3","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.6.3","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"2d7068bc6c0189f113645fd23715cae69378d642","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.6.3.tgz","integrity":"sha512-6ykRmWDum4eGSDntDGUcaqltYbcvlj6Jdhrh6MHzkZ7G3pYUJvsC8V7ggfmPcs4pnvPaxQi0PtXclc6XowZUgQ==","signatures":[{"sig":"MEQCICeAmSlfghWBLK686PXKPq0vN2AUrA+lPPCdQa0O7/VGAiAPEOb0wN2kV4fzLg/ECHqvhkebf0iWyeeGweGoRRmufg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.3.11","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"0.28.9":{"name":"css-loader","version":"0.28.9","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.28.9","maintainers":[{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jtangelder","email":"j.tangelder@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"68064b85f4e271d7ce4c48a58300928e535d1c95","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.28.9.tgz","integrity":"sha512-r3dgelMm/mkPz5Y7m9SeiGE46i2VsEU/OYbez+1llfxtv8b2y5/b5StaeEvPK3S5tlNQI+tDW/xDIhKJoZgDtw==","signatures":[{"sig":"MEUCIQCVp+g9dExerYFeWJnuRlXN7Vkq7RvExe6M6f1tKH+aMAIgNeBX5P3TjfUR5bpx6ZiRZMJ3WgP2EiEBrbTpbjOTD7A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["lib","index.js","locals.js"],"engines":{"node":">=0.12.0 || >= 4.3.0 < 5.0.0 || >=5.10"},"gitHead":"630579d01e9d28a2032e707dcea2ad9f4ec613da","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"5.6.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"9.2.0","dependencies":{"cssnano":"^3.10.0","postcss":"^5.0.6","icss-utils":"^2.1.0","loader-utils":"^1.0.2","object-assign":"^4.1.1","source-list-map":"^2.0.0","babel-code-frame":"^6.26.0","lodash.camelcase":"^4.3.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^1.1.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.3.0","postcss-modules-extract-imports":"^1.2.0","postcss-modules-local-by-default":"^1.2.0"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.28.9.tgz_1516195515912_0.626879506977275","host":"s3://npm-registry-packages"}},"0.20.2":{"name":"css-loader","version":"0.20.2","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.20.2","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"6aa37dce1582d3ba359a1b63a0615762d355a1b5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.20.2.tgz","integrity":"sha512-DdbIyryAdKc+tOjFvgVhTHuH4zaJGYgg0CgVWTVqM+h5kvyq3Xu0smBlNgDNn6a/zZrd7jzvmozPDEAT5Jf/KQ==","signatures":[{"sig":"MEYCIQDc87g+sOAXs5+pKjJDQx6vvNFWT7N+PYpC+MIGMcxvNgIhAOdutYPdjVB4PcEALZoI2b3gZ3ZO3v0K/E8HO9/hlade","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"6aa37dce1582d3ba359a1b63a0615762d355a1b5","gitHead":"e5b308d4705ac4ff68a2a696b2ea472c6517c3ec","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"3.3.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"4.0.0","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"~0.2.2","object-assign":"^4.0.1","source-list-map":"^0.1.4","lodash.camelcase":"^3.0.1","postcss-modules-scope":"1.0.0-beta2","css-selector-tokenizer":"^0.5.1","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"1.0.0-beta2","postcss-modules-local-by-default":"^1.0.0"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"4.1.1":{"name":"css-loader","version":"4.1.1","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@4.1.1","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"48342f098784e75bbfc0933dea2853314fb737d8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-4.1.1.tgz","fileCount":16,"integrity":"sha512-nZ4OC2g88+wOOdkVQ0yYy7T6uXSkb7I7UyMNnaevQQvVWskTSDRAz08ETl91et4ghVL6jfnzWUt0o2XaY0gyRg==","signatures":[{"sig":"MEUCIQCZ/nZliLeX4TT8mo5aCwjw5KiwyGMUJVop1fTM+nUHmwIgUDtToJOC6aY7/7DjsvqHV63I6RZSspvG/O5DzKM/WBU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":108223,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfIqCCCRA9TVsSAnZWagAAh+4P/3HRIjp29qzQjC2sUImm\n6Cvs7LPL9CICXJD3VVlwtqAoPuyTMno9aUHazeomUJ+Y2le5O48xGx5Y2rz1\nOdAtPLJa+7MLmaO8TL4cGRdpo2un7azCBDT0yT+tAIoePnorZLziDZ5Bl6W7\nl/wcYvchgRxVz06OyU87Ek9Y8dhVXQpKaquKkOeAkC5ScFNqEljh8fMPJ/8F\nSH7ukEILPmQpU26cPl/uq46p0dCAy2racF+kY9YeGj69N/DE0zEmje0Vskr/\n0dJm5sYK9pulNkUG+YRBxCNaD/RacWrq09RXrsQU+K1cSVGfdL8nHca7EsRy\nv90csUYbkNPq5KtwREmyCgnJK3UZbE8gw6NFHeorM9gPjBLAb8beyUNOIiC2\n3cwv0Pu+kaRpgunsiN3JEP+3a9haIgdSVrxZHxCXD0D+JhthFNh2fzXiQbyb\nAF2ael1vAPiSFxkurSwQR6Hy7h6TRPiqumbWR5uMuptYXhdrjFPd4962iWSU\n/YsWr0UOw43sEHP9Besn9c2Ktfu9jsDmgxM7TxVGxs+2EiOG8d7nfXEPxDFg\nqun/XzAEaxRGDidzJocaL7xquvc3yUyiI041zHVCWhOY1isIzDeh0OIZdrsY\ny7kiDWKjoMEa5YLJptkq14TLR3FkVY/etiI6MF1dcgjzvoZlEHVIbMjlvKH/\n1E8G\r\n=SjBo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"9070ba94f6ffa7719733bebdccb613fd64de668c","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.14.7","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","semver":"^7.3.2","postcss":"^7.0.32","camelcase":"^6.0.0","icss-utils":"^4.1.1","loader-utils":"^2.0.0","schema-utils":"^2.7.0","normalize-path":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^2.2.0","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.3"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^26.1.0","sass":"^1.26.10","husky":"^4.2.5","memfs":"^3.2.0","eslint":"^7.5.0","del-cli":"^3.0.1","webpack":"^4.44.0","es-check":"^5.1.0","prettier":"^2.0.5","cross-env":"^7.0.2","@babel/cli":"^7.10.5","babel-jest":"^26.1.0","strip-ansi":"^6.0.0","url-loader":"^4.1.0","@babel/core":"^7.10.5","file-loader":"^6.0.0","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","sass-loader":"^9.0.2","style-loader":"^1.2.1","postcss-loader":"^3.0.0","@commitlint/cli":"^9.1.2","standard-version":"^8.0.2","@babel/preset-env":"^7.10.4","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.0","eslint-config-prettier":"^6.11.0","mini-css-extract-plugin":"^0.9.0","@webpack-contrib/defaults":"^6.3.0","@commitlint/config-conventional":"^9.1.1","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_4.1.1_1596104833690_0.6580619801418286","host":"s3://npm-registry-packages"}},"0.24.0":{"name":"css-loader","version":"0.24.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.24.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"7afaafb4c0fb2f90b335ed10a1c77b34d64843fe","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.24.0.tgz","integrity":"sha512-oYxKWQuF/ebPOQdxIYN9Y3/bLlYkebs3xeK2lW5Kp1hO/pLqQBTYpednC0L6u8/zkx16tZQjsxJYoOjwjrff1w==","signatures":[{"sig":"MEQCIAmbdz9gnUCHvMsD/AQIY6dKlCdrvoj42OfDzYTPK0voAiAWgihrXN+jC/kMsbR9kCppzBb1QiJNHCeU5512dugw3g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"7afaafb4c0fb2f90b335ed10a1c77b34d64843fe","engines":{"node":">=0.12.0"},"gitHead":"278d6cce09aba7d1364b051e03733e510560eabb","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"3.3.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"6.3.1","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"~0.2.2","object-assign":"^4.0.1","source-list-map":"^0.1.4","babel-code-frame":"^6.11.0","lodash.camelcase":"^3.0.1","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.6.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.24.0.tgz_1472022051595_0.8643808413762599","host":"packages-16-east.internal.npmjs.com"}},"6.9.1":{"name":"css-loader","version":"6.9.1","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.9.1","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"9ec9a434368f2bdfeffbf8f6901a1ce773586c6b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.9.1.tgz","fileCount":15,"integrity":"sha512-OzABOh0+26JKFdMzlK6PY1u5Zx8+Ck7CVRlcGNZoY9qwJjdfu2VWFuprTIpPW+Av5TZTVViYWcFQaEEQURLknQ==","signatures":[{"sig":"MEUCICryARbe5eliofGrOLBScp5LkqTTpjHPFEq58I58udXlAiEA4OnfBk+FyrBhK3qfh9EDYlQcvHHTfg3/DP9iUWnF6B4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":131291},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"f9192eeb2773d8c5ea8e6424363ad6b8fb2b397b","scripts":{"fix":"npm-run-all -l fix:js fix:prettier","lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","fix:js":"npm run lint:js -- --fix","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","fix:prettier":"npm run lint:prettier -- --write","lint:prettier":"prettier --list-different .","lint:spelling":"cspell \"**/*.*\"","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"10.2.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"18.19.0","dependencies":{"semver":"^7.5.4","postcss":"^8.4.33","icss-utils":"^5.1.0","postcss-value-parser":"^4.2.0","postcss-modules-scope":"^3.1.1","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.4"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.1.1","jest":"^28.1.3","less":"^4.2.0","sass":"^1.69.7","husky":"^7.0.1","memfs":"^3.5.3","cspell":"^6.31.2","eslint":"^8.54.0","stylus":"^0.59.0","del-cli":"^4.0.1","webpack":"^5.89.0","es-check":"^7.1.0","prettier":"^2.8.7","cross-env":"^7.0.3","@babel/cli":"^7.23.4","babel-jest":"^28.1.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.23.7","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^12.5.0","npm-run-all":"^4.1.5","sass-loader":"^12.6.0","style-loader":"^3.3.2","stylus-loader":"^6.1.0","postcss-loader":"^6.2.1","@commitlint/cli":"^16.3.0","standard-version":"^9.5.0","@babel/preset-env":"^7.23.7","postcss-preset-env":"^7.8.3","eslint-plugin-import":"^2.29.0","eslint-config-prettier":"^8.9.0","jest-environment-jsdom":"^28.1.3","mini-css-extract-plugin":"^2.7.5","@commitlint/config-conventional":"^16.2.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.9.1_1705603240463_0.5254190780339507","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"css-loader","version":"4.1.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@4.1.0","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"8d1ecb1ba280438c0b80444cc44e2caef96ae81a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-4.1.0.tgz","fileCount":16,"integrity":"sha512-oa8XGmieQF+dfTOpv89LQ2DxkBA+HABE2I8yq5xzf1ikKv6mcwkncFWCqVrgNc4rVsTBPrt5or1pW7u5WaNiKA==","signatures":[{"sig":"MEYCIQDWgYFbBJ0SEaUoXvz7jGe2I7GgHcaT56sy6tOvJwQtOwIhAO7D7+Q+dBTJmYzr8KvQBPn4rPcg62PF8arn2OLaJMUV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":107469,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfIaIOCRA9TVsSAnZWagAAnEkP/A2LVDh81IkdRqT7Ruiz\nOS5Perp3NwhszC5UktEdWtp9aArEHouY43EO0xAJvfpm63pe60Zu9cGyWZyQ\n5BpF0EKdyNW+Gb50Fo+np49wrQtrwbaQ1HjnEY49mWC4xF9SJOP8EuzEgYUQ\nkWKnhljYW5ZbgKeUisCmKBt6k8np54LbxeDoN5kMyi7L2s17PehT4wqsDp/i\nGNIy2htN2DtqwEZHBug1T6Mjs46sbfWkpuRfm4Cb8UfuX9YsUGYrXNR4Uurl\nov1cBUipS++7FuSoABSeI3GVMdanr9o6KyWQv+hjghv/Ji42mZgYltClnrj7\nNZtcgf56nVO4q/0gKVaXzXcwXITP1iKn4XLU9B2TllQTh7o7JNh/71xxDxAW\nuRORuci+uOEb10xsAIfoC+JOmxs6QlTJfUgdniYyCnAYYx+9ABYCqWYk6coD\nOzaPwAVY+9M+8BoDOLtIvNWRpo06CMcwZPw1U3a3FVolxOabcGzZDdMExk9v\nnqfJkK90248RiOmM2weUWyrE1mjvaCvpawwU16sNDLYJt9jryICiB5QuxK8x\ncV9TVuLFpUOAse/surNx4v0fKwqKoEI1xHOxkR/XNfecZaBTUX9yOAIYg43b\nIt/ewuZdHZrl14u8R1l9o51WJWG67y3quB6Gm/CFCDTYEphMyP4sYkmKtUKe\nGWj/\r\n=31XG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"35dee96ee359b20d8a5b89f6ec57d53fcd55e6b0","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.14.7","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","semver":"^7.3.2","postcss":"^7.0.32","camelcase":"^6.0.0","icss-utils":"^4.1.1","loader-utils":"^2.0.0","schema-utils":"^2.7.0","normalize-path":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^2.2.0","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.3"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^26.1.0","sass":"^1.26.10","husky":"^4.2.5","memfs":"^3.2.0","eslint":"^7.5.0","del-cli":"^3.0.1","webpack":"^4.44.0","es-check":"^5.1.0","prettier":"^2.0.5","cross-env":"^7.0.2","@babel/cli":"^7.10.5","babel-jest":"^26.1.0","strip-ansi":"^6.0.0","url-loader":"^4.1.0","@babel/core":"^7.10.5","file-loader":"^6.0.0","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","sass-loader":"^9.0.2","style-loader":"^1.2.1","postcss-loader":"^3.0.0","@commitlint/cli":"^9.1.2","standard-version":"^8.0.2","@babel/preset-env":"^7.10.4","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.0","eslint-config-prettier":"^6.11.0","mini-css-extract-plugin":"^0.9.0","@webpack-contrib/defaults":"^6.3.0","@commitlint/config-conventional":"^9.1.1","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_4.1.0_1596039694225_0.0791848280530476","host":"s3://npm-registry-packages"}},"0.2.0":{"name":"css-loader","version":"0.2.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.2.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"f472d142a5c5bf1f5711b93bb2ce55a7fa62f933","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.2.0.tgz","integrity":"sha512-D39FYaRKjws2b91cFIrx4WdnjMX+q0AHxGWJDd28CMNUgOBNEiYBwyOkthVLR7BYBZZ6SWcUSZO9He3mKVV0sg==","signatures":[{"sig":"MEQCIDyG/tYWoVDTAfmByOBawFG8KyTgSyAkwFkBmExfXLpkAiAureWDF99bzM9awemD4aGNbaV3IyP9MMOaHmqvbwHVrg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"engines":{"node":"*"},"scripts":{"test":"node node_modules/vows/bin/vows"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.1.21","description":"css loader module for webpack","directories":{},"_nodeVersion":"v0.6.17","dependencies":{"csso":"1.2.x"},"_defaultsLoaded":true,"devDependencies":{"vows":"0.6.2"},"_engineSupported":true,"optionalDependencies":{}},"0.2.1":{"name":"css-loader","version":"0.2.1","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.2.1","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"c190fecab688f953c0a17461282ac9274bc16ae1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.2.1.tgz","integrity":"sha512-8fGqUCRFSXsvN3IqezrkEBvve9e5vPmbP3FnPrB1UAKj+yfCma10nqhnUG4HWbg924Ew18dAAW4AFgZgudLJzw==","signatures":[{"sig":"MEUCIQChd1LHxayIG7Ynzs/vHyHKIBjTPQ2pzy8iUVQmWHfTZwIgE7YJC1Rx83lDeXwUFCrLXTHLbZqHZv+OiRO50E44WBc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"engines":{"node":"*"},"scripts":{"test":"node node_modules/vows/bin/vows"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.1.21","description":"css loader module for webpack","directories":{},"_nodeVersion":"v0.6.17","dependencies":{"csso":"1.2.x"},"_defaultsLoaded":true,"devDependencies":{"vows":"0.6.2"},"_engineSupported":true,"optionalDependencies":{}},"0.28.10":{"name":"css-loader","version":"0.28.10","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.28.10","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":"jtangelder","email":"j.tangelder@gmail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"40282e79230f7bcb4e483efa631d670b735ebf42","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.28.10.tgz","fileCount":15,"integrity":"sha512-X1IJteKnW9Llmrd+lJ0f7QZHh9Arf+11S7iRcoT2+riig3BK0QaCaOtubAulMK6Itbo08W6d3l8sW21r+Jhp5Q==","signatures":[{"sig":"MEUCIByJvBz5LRne5WbV+CC4R2UUlbWoelYssWn+EPfFGdysAiEAlFbvWgZtOkaO0ibWTbF+bf7ctRbJNzmb2EkPikvuUew=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44781},"files":["lib","index.js","locals.js"],"engines":{"node":">=0.12.0 || >= 4.3.0 < 5.0.0 || >=5.10"},"gitHead":"c35d8bd12676662c01120acbc53e3ed3b2c59779","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"5.6.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"9.5.0","dependencies":{"cssnano":"^3.10.0","postcss":"^5.0.6","icss-utils":"^2.1.0","loader-utils":"^1.0.2","object-assign":"^4.1.1","source-list-map":"^2.0.0","babel-code-frame":"^6.26.0","lodash.camelcase":"^4.3.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^1.1.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.3.0","postcss-modules-extract-imports":"^1.2.0","postcss-modules-local-by-default":"^1.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_0.28.10_1519321845361_0.815031274910694","host":"s3://npm-registry-packages"}},"6.9.0":{"name":"css-loader","version":"6.9.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.9.0","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"0cc2f14df94ed97c526c5ae42b6b13916d1d8d0e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.9.0.tgz","fileCount":15,"integrity":"sha512-3I5Nu4ytWlHvOP6zItjiHlefBNtrH+oehq8tnQa2kO305qpVyx9XNIT1CXIj5bgCJs7qICBCkgCYxQLKPANoLA==","signatures":[{"sig":"MEUCIQDwj2j8Pl4LcLEj5jWZZqh3IEIs2+Jl16ERWWIk53XqZwIgd4mWuYZ3OqhQYXFBGLbgVdQOfqYkxHp/BozvsFQZJhY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":131206},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"2d17551deea6e4513de70c471cf91fd504075e59","scripts":{"fix":"npm-run-all -l fix:js fix:prettier","lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","fix:js":"npm run lint:js -- --fix","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","fix:prettier":"npm run lint:prettier -- --write","lint:prettier":"prettier --list-different .","lint:spelling":"cspell \"**/*.*\"","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"10.2.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"18.19.0","dependencies":{"semver":"^7.5.4","postcss":"^8.4.31","icss-utils":"^5.1.0","postcss-value-parser":"^4.2.0","postcss-modules-scope":"^3.1.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.3"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.1.1","jest":"^28.1.3","less":"^4.2.0","sass":"^1.69.7","husky":"^7.0.1","memfs":"^3.5.3","cspell":"^6.31.2","eslint":"^8.54.0","stylus":"^0.59.0","del-cli":"^4.0.1","webpack":"^5.89.0","es-check":"^7.1.0","prettier":"^2.8.7","cross-env":"^7.0.3","@babel/cli":"^7.23.4","babel-jest":"^28.1.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.23.7","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^12.5.0","npm-run-all":"^4.1.5","sass-loader":"^12.6.0","style-loader":"^3.3.2","stylus-loader":"^6.1.0","postcss-loader":"^6.2.1","@commitlint/cli":"^16.3.0","standard-version":"^9.5.0","@babel/preset-env":"^7.23.7","postcss-preset-env":"^7.8.3","eslint-plugin-import":"^2.29.0","eslint-config-prettier":"^8.9.0","jest-environment-jsdom":"^28.1.3","mini-css-extract-plugin":"^2.7.5","@commitlint/config-conventional":"^16.2.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.9.0_1704814931242_0.41481782218558494","host":"s3://npm-registry-packages"}},"0.28.0":{"name":"css-loader","version":"0.28.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.28.0","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"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"417cfa9789f8cde59a30ccbf3e4da7a806889bad","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.28.0.tgz","integrity":"sha512-mMr5h1el+Oqw+OtZgWNzADQU8OzoJXSDeH0Rkjno4gpfVLVfkQHe1vqi9+fgbM9Uv/NaviFR+Qx61mWtw7tYkg==","signatures":[{"sig":"MEUCIDoKYXHm5Pq4iS5tek0UNTOrybkXMJ3f6p4o2JzNxZu/AiEAgJD9kmW0FaxV8bPFfF4GnzaR+gGwqXFT7L/2fO+BQIA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","locals.js","lib"],"_shasum":"417cfa9789f8cde59a30ccbf3e4da7a806889bad","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"gitHead":"2f562f8c3a8a222dd3a5d66b44e219e5b2e8fd2f","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"bebraw","email":"bebraw@gmail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"4.2.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"6.9.1","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"^1.0.2","object-assign":"^4.0.1","source-list-map":"^0.1.7","babel-code-frame":"^6.11.0","lodash.camelcase":"^4.3.0","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.28.0.tgz_1490856148102_0.6066412949003279","host":"packages-12-west.internal.npmjs.com"}},"0.28.11":{"name":"css-loader","version":"0.28.11","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.28.11","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":"jtangelder","email":"j.tangelder@gmail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"c3f9864a700be2711bb5a2462b2389b1a392dab7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.28.11.tgz","fileCount":15,"integrity":"sha512-wovHgjAx8ZIMGSL8pTys7edA1ClmzxHeY6n/d97gg5odgsxEgKjULPR0viqyC+FWMCL9sfqoC/QCUBo62tLvPg==","signatures":[{"sig":"MEYCIQCl5NsnxXDd6U5wtj/3Xi5P9lktXpgkldKhf7mcy0g4kwIhANdaz7wRVDizpfEyLmYvGWvZLlruCZ6BarUcbRT+iBsZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45119},"files":["lib","index.js","locals.js"],"engines":{"node":">=0.12.0 || >= 4.3.0 < 5.0.0 || >=5.10"},"gitHead":"df497db9fee094ac97bc82d729689eea46b89bc2","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"5.7.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"9.8.0","dependencies":{"cssnano":"^3.10.0","postcss":"^5.0.6","icss-utils":"^2.1.0","loader-utils":"^1.0.2","object-assign":"^4.1.1","source-list-map":"^2.0.0","babel-code-frame":"^6.26.0","lodash.camelcase":"^4.3.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^1.1.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.3.0","postcss-modules-extract-imports":"^1.2.0","postcss-modules-local-by-default":"^1.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_0.28.11_1521196534212_0.4464090010748294","host":"s3://npm-registry-packages"}},"6.5.1":{"name":"css-loader","version":"6.5.1","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.5.1","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"0c43d4fbe0d97f699c91e9818cb585759091d1b1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.5.1.tgz","fileCount":18,"integrity":"sha512-gEy2w9AnJNnD9Kuo4XAP9VflW/ujKoS9c/syO+uWMlm5igc7LysKzPXaDoR2vroROkSwsTS2tGr1yGGEbZOYZQ==","signatures":[{"sig":"MEUCIQDkWQ6RTA2wx42fdV4xbdXwl49E7G1pdrZ+JkVKk3vtqAIgLlsHcIraJsasOyfIgZb91CxoKwd2E+tIgKSYAe2CjFM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":172754},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"e857d7121eb6c907aa7484d4e40b0b67929a4484","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.14.10","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.20.1","dependencies":{"semver":"^7.3.5","postcss":"^8.2.15","icss-utils":"^5.1.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^27.0.6","less":"^4.1.1","sass":"^1.35.2","husky":"^7.0.1","memfs":"^3.2.2","eslint":"^8.1.0","stylus":"^0.55.0","del-cli":"^4.0.1","webpack":"^5.45.1","es-check":"^6.0.0","prettier":"^2.3.2","cross-env":"^7.0.3","@babel/cli":"^7.14.5","babel-jest":"^27.0.6","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.14.6","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^11.0.1","npm-run-all":"^4.1.5","sass-loader":"^12.1.0","style-loader":"^3.1.0","stylus-loader":"^6.1.0","postcss-loader":"^6.1.1","@commitlint/cli":"^14.1.0","standard-version":"^9.3.1","@babel/preset-env":"^7.14.7","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.23.4","eslint-config-prettier":"^8.3.0","mini-css-extract-plugin":"^2.1.0","@commitlint/config-conventional":"^14.1.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.5.1_1635967909994_0.49974195873263394","host":"s3://npm-registry-packages"}},"0.28.1":{"name":"css-loader","version":"0.28.1","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.28.1","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"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"220325599f8f00452d9ceb4c3ca6c8a66798642d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.28.1.tgz","integrity":"sha512-euBxqMuBkc4AumjDSeDXBmiBTfawyht8l74oxQpDjk48n8iHN4QF4bziFoPbuenMbMVIbrTIBQURpIyJmfLDPA==","signatures":[{"sig":"MEUCIQDo7/YP8CyysR4Z9lnnGY7zglJu+uEm+jjUOG1X/VhYQQIgeh1ZboNmS0oYOOqmqadYnfOGK9Pgh6Eca5Th7w2+diU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","locals.js","lib"],"_shasum":"220325599f8f00452d9ceb4c3ca6c8a66798642d","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"gitHead":"ae67b2a9eab5b4e27146ac73aff8854b227a081a","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"4.2.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"7.9.0","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"^1.0.2","object-assign":"^4.0.1","source-list-map":"^0.1.7","babel-code-frame":"^6.11.0","lodash.camelcase":"^4.3.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.28.1.tgz_1493709528964_0.2846518950536847","host":"packages-12-west.internal.npmjs.com"}},"3.3.2":{"name":"css-loader","version":"3.3.2","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@3.3.2","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"41b2086528aa4fbf8c0692e874bc14f081129b21","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-3.3.2.tgz","fileCount":16,"integrity":"sha512-4XSiURS+YEK2fQhmSaM1onnUm0VKWNf6WWBYjkp9YbSDGCBTVZ5XOM6Gkxo8tLgQlzkZOBJvk9trHlDk4gjEYg==","signatures":[{"sig":"MEUCIQDxdr3v9DJWl+F7Cx+EIOQMK/8iHY3Ybio40yTEB5uzaAIgOOpB/yfde0sWC93BubFHtB0PEOlYL3BsSAQzkp72D1s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":82785,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd8m+mCRA9TVsSAnZWagAADD8P/2Mjd9SmANbv1Co31S4Z\nlKDmO0TIFWyMbbK3ybNgNniPw3CqTpdn5o0cvfPUfcrY/SeuohRwAAtxaaqG\nuHRUjm6PWkfQWfDWOARQjHFvHtFG04eV9BaVbmMknKseCYwQcGcu317weWDv\n79XEBOnLTHFpVxk+4FmQjf1th6aP+kN5xDFRvCI48nmn5U/JAOmbSeh/aGkX\nXeWx62q2MNoP407fpIbiK1UmR3G05VaiEOm90Vfpa0kZ7WCRaTcbKTd0Nsoq\njaDnNNKeGAi3A11eKwRe0ULj+8j8OqJOMRiIAnJcytXe6zHZPceV0+RORMFA\ndZ+cvlNqP2DA5xKa+T0OmmnekXwLkK03MTjUxs0xB3l+w5Ra+DR0I8MjySRM\ndKNO2hKHZMeQdMDWxI5DkCtDygTYg65TWl+mIpkoPim9d6JMilqVXrHw4yey\nwo0XOuMwtCZLWJBALFop5qCI7y0RQ452Uynk/MxuCnlOnpNc0ooge0j/KFJC\nhhmHYk4YCp7ex41tivWwwknOp4mihsMbgQ4PUD/dmnbiSDrVWkOcC3hejCRC\nyX7UNMRfyJaDWw85RqzyCLDTt03QcM5rTwEdDdTNAGWpBReLndjo8a20/nf5\nhYTli1cu0dH0vU+XV0+6NehvidzpCqCHkOmzEIdxPrhHAGjXirtnJilMKB1W\nyhk3\r\n=qaQN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 8.9.0"},"gitHead":"b3477a0d9cf707057001c28238b49de536945ed1","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"cross-env NODE_ENV=test npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --ignore \"src/**/*.test.js\" --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache src test","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"cross-env NODE_ENV=test jest --watch","lint:prettier":"prettier \"{**/*,*}.{js,json,md,yml,css}\" --list-different","test:coverage":"cross-env NODE_ENV=test jest --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.13.4","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","postcss":"^7.0.23","camelcase":"^5.3.1","icss-utils":"^4.1.1","loader-utils":"^1.2.3","schema-utils":"^2.6.0","normalize-path":"^3.0.0","postcss-value-parser":"^4.0.2","postcss-modules-scope":"^2.1.1","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^24.9.0","sass":"^1.23.7","husky":"^3.1.0","eslint":"^6.7.1","del-cli":"^3.0.0","webpack":"^4.41.2","es-check":"^5.1.0","prettier":"^1.19.1","cross-env":"^6.0.3","memory-fs":"^0.5.0","@babel/cli":"^7.7.4","babel-jest":"^24.9.0","jest-junit":"^9.0.0","strip-ansi":"^6.0.0","url-loader":"^3.0.0","@babel/core":"^7.7.4","file-loader":"^5.0.2","lint-staged":"^9.5.0","npm-run-all":"^4.1.5","sass-loader":"^8.0.0","postcss-loader":"^3.0.0","@commitlint/cli":"^8.2.0","standard-version":"^7.0.1","@babel/preset-env":"^7.7.4","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.18.2","eslint-config-prettier":"^6.7.0","@webpack-contrib/defaults":"^5.0.2","commitlint-azure-pipelines-cli":"^1.0.2","@commitlint/config-conventional":"^8.2.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_3.3.2_1576169381641_0.36312629385277373","host":"s3://npm-registry-packages"}},"6.10.0":{"name":"css-loader","version":"6.10.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.10.0","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"7c172b270ec7b833951b52c348861206b184a4b7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.10.0.tgz","fileCount":15,"integrity":"sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==","signatures":[{"sig":"MEYCIQC2EOH8/uOEDNEl8iuCm8RkmxiYZheJI+QMox1/Ql/j5gIhAIbxoYjq10FVU1PDCPkkOZZpCHQa4YFi8mId0TC/IqxN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":132612},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"7bbb57c9b54dbcba89d5598a7f32f9098917b867","scripts":{"fix":"npm-run-all -l fix:js fix:prettier","lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","fix:js":"npm run lint:js -- --fix","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","fix:prettier":"npm run lint:prettier -- --write","lint:prettier":"prettier --list-different .","lint:spelling":"cspell \"**/*.*\"","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"10.2.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"18.19.0","dependencies":{"semver":"^7.5.4","postcss":"^8.4.33","icss-utils":"^5.1.0","postcss-value-parser":"^4.2.0","postcss-modules-scope":"^3.1.1","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.4"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.1.1","jest":"^28.1.3","less":"^4.2.0","sass":"^1.69.7","husky":"^7.0.1","memfs":"^3.5.3","cspell":"^6.31.2","eslint":"^8.54.0","stylus":"^0.59.0","del-cli":"^4.0.1","webpack":"^5.89.0","es-check":"^7.1.0","prettier":"^2.8.7","cross-env":"^7.0.3","@babel/cli":"^7.23.4","babel-jest":"^28.1.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.23.7","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^12.5.0","npm-run-all":"^4.1.5","sass-loader":"^12.6.0","style-loader":"^3.3.2","stylus-loader":"^6.1.0","postcss-loader":"^6.2.1","@commitlint/cli":"^16.3.0","standard-version":"^9.5.0","@babel/preset-env":"^7.23.7","postcss-preset-env":"^7.8.3","eslint-plugin-import":"^2.29.0","eslint-config-prettier":"^8.9.0","jest-environment-jsdom":"^28.1.3","mini-css-extract-plugin":"^2.7.5","@commitlint/config-conventional":"^16.2.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0","@rspack/core":"0.x || 1.x"},"peerDependenciesMeta":{"webpack":{"optional":true},"@rspack/core":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.10.0_1706631994343_0.014528831985963997","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"css-loader","version":"3.3.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@3.3.0","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"65f889807baec3197313965d6cda9899f936734d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-3.3.0.tgz","fileCount":16,"integrity":"sha512-x9Y1vvHe5RR+4tzwFdWExPueK00uqFTCw7mZy+9aE/X1SKWOArm5luaOrtJ4d05IpOwJ6S86b/tVcIdhw1Bu4A==","signatures":[{"sig":"MEUCIQDM56EMp5RD+Z1hFhlpo6drWoVmrEVtXNdTF0c90ynTUQIgT8CxML3MAxr4+f3GphNhnQJNYkqOCYZc2/cQTFSlEkI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80210,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd7nNXCRA9TVsSAnZWagAACcIP/RDpPucAP2tapSkzrtFX\nmW/37CIPGqubOely4potn6U9Xor3gJbDSt4v2D8cROXQDcmNx+I6I+M+lPDd\n6+l4XLoV6tgTTsdfSnr5yx9nTceiPuytdiPkV2gXht5QW1RJD8XX7dd8HDSn\nKYdniWT5JdBZNddyHKkG4tEYuvTKlhc5CxfQyTWcb63Au/6Fnd4Ifpdaois5\n+RMlMlnL8IjrNisYE03w+Mlwg5gtQ0a09yxYbfAxise95maNbd5+08Bf36P3\nYrx1kstDOcPAVQymM7REeLmIJy1JxZ8XcWPsnuBpuGC0wjh7NHBSoje4K3Xj\neD5oXz8YI5ktNtKhtUEXJUj1Iv1qKDy2J21RBmqCO38uSfoL6sPmdycegCfw\n1ZylTl0kLIlFCuI9kz0sOCpgH6TFxiVdD1MvqoDYiZF1c7vQ50U/uadneiWo\nImVhVEhYHGdAK+k7kT7swx3b/g2I95Qyf4ktobH/sL6St4x8876q+4bGDLTu\ndERCC5/qLr55aTy4m1hjPKX5msXWI1ZucoVLA5jYwyq4nu2ztFghFCOSiFgW\nYJ9ZJsf9yDGu3noj6fLKCfc8Qd3998x+HrPiF8R4RvgqPKuQnPuI6MuJWb+D\nK4ZkLKUlxtZOOC1TMfva/UTuwmu8WSEqBrBqXQLJtE9i4o4CjsLCrocUYQ/A\nPqKm\r\n=maa0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 8.9.0"},"gitHead":"889807a72ee614fbf6469fd2b789947f03b6e819","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"cross-env NODE_ENV=test npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --ignore \"src/**/*.test.js\" --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache src test","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"cross-env NODE_ENV=test jest --watch","lint:prettier":"prettier \"{**/*,*}.{js,json,md,yml,css}\" --list-different","test:coverage":"cross-env NODE_ENV=test jest --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.13.2","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","postcss":"^7.0.23","camelcase":"^5.3.1","icss-utils":"^4.1.1","loader-utils":"^1.2.3","schema-utils":"^2.6.0","normalize-path":"^3.0.0","postcss-value-parser":"^4.0.2","postcss-modules-scope":"^2.1.1","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^24.9.0","sass":"^1.23.7","husky":"^3.1.0","eslint":"^6.7.1","del-cli":"^3.0.0","webpack":"^4.41.2","es-check":"^5.1.0","prettier":"^1.19.1","cross-env":"^6.0.3","memory-fs":"^0.5.0","@babel/cli":"^7.7.4","babel-jest":"^24.9.0","jest-junit":"^9.0.0","strip-ansi":"^6.0.0","url-loader":"^3.0.0","@babel/core":"^7.7.4","file-loader":"^5.0.2","lint-staged":"^9.5.0","npm-run-all":"^4.1.5","sass-loader":"^8.0.0","postcss-loader":"^3.0.0","@commitlint/cli":"^8.2.0","standard-version":"^7.0.1","@babel/preset-env":"^7.7.4","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.18.2","eslint-config-prettier":"^6.7.0","@webpack-contrib/defaults":"^5.0.2","commitlint-azure-pipelines-cli":"^1.0.2","@commitlint/config-conventional":"^8.2.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_3.3.0_1575908182762_0.9620843242264525","host":"s3://npm-registry-packages"}},"3.3.1":{"name":"css-loader","version":"3.3.1","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@3.3.1","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"7e80ee995e96adbd8cc08cca9cfbd8109121f312","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-3.3.1.tgz","fileCount":16,"integrity":"sha512-I2Sz5X81b2pJ4SM2UwxWcIu6uXcCvfCHgRHa1j0J8PmZj7qXu9ZkFdBeIwl6brZPseW982MrBoPfCfHqbkAUZw==","signatures":[{"sig":"MEYCIQCHn3EK0yoWcusKVb2pLGq9Tg8XahnHTQ5mlcNwoum+ZwIhAKdJGPVlNOT/5y8Wot/r69lTbtyq2Vto/Ts7dzQJyBNF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":83109,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd8lGFCRA9TVsSAnZWagAAJy8P/0CXFvKFArFe8qkIYpex\nk/VkgkAkAqbtzLhaKZgwOpzqIx9c5ZxwlqEZ+v7krHPF53L6GQUskdR0/Mef\nLugwHlSpSo3Vv2hpoaVZy/KmaX/hsDiaCJAI1jiwhTDbSau54UFdnaz60XqE\nhGvoGJn7bZDXswN5YB2lBoLQ+Zs0cZ9EfQ0ndDWh5iId6jwHS6vHDsgUwX+i\nJNBGVDc0Df9eZ0e4VcschxH2GiwCcw4zq7gxA4+6+HU1Hk68JTIlc1ihCcVQ\npMgVVwsygNPW9OPewrH8Z3oKWI+fNhYD9E7fhKJMxzjLcvxyaPIUEJyV8Z/e\n3qS0mYRmlzBGtpz/LWRJn1YVEu9tWm1EtwBqS3oVlm3WtVxyYnn4f81HELgK\nL32wDZux8nAnkiUC5bg95RHggb1rZMtzyn6fLMEfvFKcOk7JsY9iGZm72bL8\ndO69JGxD+6VsGAuonxejF8TQ5coZdjeGmFuiooGRL9EGtFz75DFttUk9pS3W\n/It8h/L3gshbkL6/df8ZVJNzNIncAppC1gBDKuXEroKT/oaWw3mgpkMMfj0a\npDlsEBPzV1ks1/la8MwKIZcxTL38Z5tHqyt9kPE7cHMhm3EQbwEKeIyPE7KC\nuNMbdZioQ/fq2Ae4qDafZCt1FY7/DFqTC7J9VJvUVuiEfDlmPm2dCe6z2Fos\nayyv\r\n=4kdR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 8.9.0"},"gitHead":"cbca64d7df68f5312bb9b5422c6c9a56404e0a93","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"cross-env NODE_ENV=test npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --ignore \"src/**/*.test.js\" --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache src test","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"cross-env NODE_ENV=test jest --watch","lint:prettier":"prettier \"{**/*,*}.{js,json,md,yml,css}\" --list-different","test:coverage":"cross-env NODE_ENV=test jest --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.13.4","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","postcss":"^7.0.23","camelcase":"^5.3.1","icss-utils":"^4.1.1","loader-utils":"^1.2.3","schema-utils":"^2.6.0","normalize-path":"^3.0.0","postcss-value-parser":"^4.0.2","postcss-modules-scope":"^2.1.1","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^24.9.0","sass":"^1.23.7","husky":"^3.1.0","eslint":"^6.7.1","del-cli":"^3.0.0","webpack":"^4.41.2","es-check":"^5.1.0","prettier":"^1.19.1","cross-env":"^6.0.3","memory-fs":"^0.5.0","@babel/cli":"^7.7.4","babel-jest":"^24.9.0","jest-junit":"^9.0.0","strip-ansi":"^6.0.0","url-loader":"^3.0.0","@babel/core":"^7.7.4","file-loader":"^5.0.2","lint-staged":"^9.5.0","npm-run-all":"^4.1.5","sass-loader":"^8.0.0","postcss-loader":"^3.0.0","@commitlint/cli":"^8.2.0","standard-version":"^7.0.1","@babel/preset-env":"^7.7.4","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.18.2","eslint-config-prettier":"^6.7.0","@webpack-contrib/defaults":"^5.0.2","commitlint-azure-pipelines-cli":"^1.0.2","@commitlint/config-conventional":"^8.2.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_3.3.1_1576161668952_0.42677534063058564","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"css-loader","version":"2.1.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@2.1.0","maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"jtangelder","email":"j.tangelder@gmail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"42952ac22bca5d076978638e9813abce49b8f0cc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-2.1.0.tgz","fileCount":16,"integrity":"sha512-MoOu+CStsGrSt5K2OeZ89q3Snf+IkxRfAIt9aAKg4piioTrhtP1iEFPu+OVn3Ohz24FO6L+rw9UJxBILiSBw5Q==","signatures":[{"sig":"MEUCIBWfRvPhgLVsqc8TwRkB9UONF2fc3r1IoJpHIQJ+8Il7AiEA6PzFbnYPA85YBwU0ufMmH+1daKtpAjfW1mUhM9B9npc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64396,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcIoxsCRA9TVsSAnZWagAAOS0P/2Gpq8OeLRotqihqgePv\nWDT/+aPWiN69VSGiYENGxdUhwDCtOmGOuKa5dXCLVzlxmvoqe0QGkGWxIYrP\nSGaID08tUc+5K5YniBu0Z2NsnmOkeGrz/fZR666O4Im/F/isuuakf+khKw7E\nslPXPVrka53Al2JrDaNlkCP56GZmOaiXO+fCizxrCBPVK2xVm/Px5MXd6ol9\nQsGhVh93cDxbvRvi7xFaY+cg+mK9Lt7C/eq/gJHsnWlRafSxTUJSqyREtIgZ\nGBESEN/8zctlt6CVcWdA0F9NNNsc5AbVkp+OzSH1oIiiICTVumojJrYBf2OH\nmiGvDSjZm+avGmIpVmxcOsWTPhjDHWKBRCZDHb1AM76yk/cBrNBY/MJ4A8rI\nECMB1+203dBz9yW6YKE7LAe6ny0KtzOJ6mGY+ET9NtPX0bsAicAhTobYzAO4\nHnKIznPjdT9kR76eX4bOsOj3GRyLkNjKYO6N6v0ophQ6mfoxIqEnTUaoEYuL\nb/xFRezqwlhMLYe/o8HstO/9nE4yyg2XOwnj67edEMZSAgwaSrdxdRchS0o1\nvadh0L40X9ZL2bv/FnJV8bE5OgYVYyzFPPMHLoqcyNscTPjeNUAst2fkfcTF\n8y02ianmKz2zlxY7LJteSplJgWt/mTKgqPdvjMZxryeXvs1SYBQ2cv6J0GjH\n4O5K\r\n=UczQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","babel":{"presets":[["@babel/preset-env",{"targets":{"node":"6.9.0"},"useBuiltIns":"usage"}]]},"husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">= 6.9.0"},"gitHead":"98bdf2a2b303f286e59882fd3cbb710da9fa73cd","scripts":{"lint":"eslint --cache src test","test":"jest","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","clean":"del-cli dist","start":"npm run build -- -w","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","commitmsg":"commitlint -e $GIT_PARAMS","commitlint":"commitlint","prepublish":"npm run build","test:watch":"jest --watch","ci:coverage":"npm run test:coverage -- --runInBand","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","ci:lint:commits":"commitlint --from=origin/master --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"commitlint":{"extends":["@commitlint/config-conventional"]},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.5.0","description":"css loader module for webpack","directories":{},"lint-staged":{"*.js":["eslint --fix","git add"]},"_nodeVersion":"10.14.1","dependencies":{"lodash":"^4.17.11","postcss":"^7.0.6","icss-utils":"^4.0.0","loader-utils":"^1.2.1","schema-utils":"^1.0.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^2.0.0","postcss-modules-values":"^2.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"del":"^3.0.0","jest":"^23.6.0","sass":"^1.15.1","husky":"^1.2.0","eslint":"^5.9.0","del-cli":"^1.1.0","webpack":"^4.26.1","prettier":"^1.15.2","cross-env":"^5.2.0","memory-fs":"^0.4.1","@babel/cli":"^7.1.5","babel-core":"^7.0.0-bridge.0","babel-jest":"^23.6.0","strip-ansi":"^5.0.0","@babel/core":"^7.1.6","file-loader":"^3.0.1","lint-staged":"^8.1.0","sass-loader":"^7.1.0","postcss-loader":"^3.0.0","@babel/polyfill":"^7.0.0","@commitlint/cli":"^7.2.1","standard-version":"^4.0.0","@babel/preset-env":"^7.1.6","postcss-preset-env":"^6.4.0","eslint-plugin-import":"^2.14.0","eslint-plugin-prettier":"^3.0.0","@webpack-contrib/defaults":"^3.0.0","@commitlint/config-conventional":"^7.1.2","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_2.1.0_1545768043797_0.19689378974796168","host":"s3://npm-registry-packages"}},"0.16.0":{"name":"css-loader","version":"0.16.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.16.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"96906844059882cc1b3b555a9712cdac55e85f2e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.16.0.tgz","integrity":"sha512-fxaCe+mPMqetGsM2E0WGNWIHxLZh6nsviVahsJGVq4YLni4Lu5oAVA8QSHAYlQOlXd/JY9THjNNKy2zHmeTR5w==","signatures":[{"sig":"MEUCIQC+LljKesuldAnixcJzb7xglAQyVS/KQFrqVl1xRIMDUwIgJJwsGq4+HWj+xwMzydsIQaX/OqWMfEFl86GC3NATYKo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"96906844059882cc1b3b555a9712cdac55e85f2e","gitHead":"9e1c248e6b1adc676a0821152231025104708ac0","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.10.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.4","dependencies":{"cssnano":"^2.1.0","postcss":"^4.1.11","loader-utils":"~0.2.2","source-list-map":"^0.1.4","postcss-modules-scope":"0.0.8","css-selector-tokenizer":"^0.5.1","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.11"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"0.12.1":{"name":"css-loader","version":"0.12.1","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.12.1","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"2ae217edcba20050fbc7e52ca3b5492c73001885","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.12.1.tgz","integrity":"sha512-slfmJPYrlFD8WzUlH71GYJwCTCTYJxx6m2nzRGyT/dD1QU7oauB+7HPZPiMNexJIl61S//0z7mVaPpL8gkqwgg==","signatures":[{"sig":"MEYCIQDaocmaOWGe64TKHQfne+0CQ7Cxto1GCAM1caVKGN+09wIhALAyBIkeuvJSuw/d1afbXUvmZbIgWHZqQ5Y/ULN6e/WL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"2ae217edcba20050fbc7e52ca3b5492c73001885","gitHead":"69947fc1a710d112505342c536a15ff42e394951","scripts":{"test":"mocha","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.9.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.2","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","istanbul":"^0.3.13","coveralls":"^2.11.2"}},"0.12.0":{"name":"css-loader","version":"0.12.0","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.12.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"e622aa1c1f4434e8ca78e02c5f5ad452514b1d6d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.12.0.tgz","integrity":"sha512-EI6nE1fUAgY7y5V0tmZAI7SYHZPQGq5Ht47GYrivr0O2Sduv2OI7Ewx1VKh5Smjy3wUhhS0UUpHBJE9ZjE6edA==","signatures":[{"sig":"MEUCIDAH0H0B0c7q/hiRsNx7en8nnM1HV4YD2ZbZQr7i4SNOAiEAyB8dznyO1THq3EiQWbXEbhk1xzn/PesYRvesWjb+btI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"e622aa1c1f4434e8ca78e02c5f5ad452514b1d6d","gitHead":"21b0ea34c7f8781c0fc73a3c5100f97c9e566cb9","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"2.7.4","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.2","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"}},"2.1.1":{"name":"css-loader","version":"2.1.1","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@2.1.1","maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"jtangelder","email":"j.tangelder@gmail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"d8254f72e412bb2238bb44dd674ffbef497333ea","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-2.1.1.tgz","fileCount":16,"integrity":"sha512-OcKJU/lt232vl1P9EEDamhoO9iKY3tIjY5GU+XDLblAykTdgs6Ux9P1hTHve8nFKy5KPpOXOsVI/hIwi3841+w==","signatures":[{"sig":"MEYCIQCqoKovE+KeCjWG5+1mRSy0Ur22Te9aVD308YHq9vn74AIhALYIYXTc75H5OZEMsmVxA/DY9g+J+Ee6XjienGD3Ff++","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68002,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcgO9dCRA9TVsSAnZWagAAsdEP+gN0tvH3Djkc3Opbkb1f\nCwtU/qt8+V146qaR2HH99zj5x+4KezGpxX0h0LGnQ/GP9Sj9PycVXvMiLkKU\nvYVmWoeauR6ecmepOyo9ErXvFja/vUe+QuwbLJXhRh455tY1CjQXkHT4s/kQ\nw8HR50ynWMLu5M7JHNeVbnIrvLwSAIyVYzN6AKTbuj9tBv/6EXJOH50VWIFL\nkXeKHwtC2nP9AMij1k98P9yGjs4A6aiwbYOrov3UyS0sHib9l7OKpyryft82\nf4lfVQicRDXYI1bIb18pPAZZwEgV0uYmdPTo6aG6y09N3qiGyWnAOvpizkkd\nQDiqxTulOQj6JCmBvyBRpaoBMYjsiSbEtuFhodXK0jaiuCmTdzLnjobD1dNT\nuilcJZdUVhUfxqXxNMK7vrDdElz4E6mjuTANbjiqGvnI+L8oU8Elg/uHyngD\nHHdPZk6DM7/gGbBEhnHEN5aSGI3jvjJXlQRXGVmmkbakrmjaQi3Upx3v+tz0\n89p6j6UYXgFTMTcouwLZpAej2+ZUXYFCzsxrcuUn0teDPfVVKh+uw2E6Yyt/\niEsHeeeOKo/mvrfKKK6FqKj+rSjQRDnlubz1M6P/Qu2zz9XE0zEysDx8eZGE\nsjzmL/Rk3msuyiHmn1VlUPzdre7hJP8xg4jTtWzp1x9zotKLRn/JbTYacMl9\nMVT9\r\n=E+gi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","babel":{"presets":[["@babel/preset-env",{"targets":{"node":"6.9.0"},"useBuiltIns":"usage"}]]},"husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">= 6.9.0"},"gitHead":"bc16c3db953dbf4d711753fbb0cc60253def6916","scripts":{"lint":"eslint --cache src test","test":"npm run test:only","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","clean":"del-cli dist","start":"npm run build -- -w","ci:lint":"npm run lint && npm run security","ci:test":"npm run test:only -- --runInBand","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","commitmsg":"commitlint -e $GIT_PARAMS","test:only":"jest","commitlint":"commitlint","prepublish":"npm run build","test:watch":"jest --watch","ci:coverage":"npm run test:coverage -- --runInBand","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","ci:lint:commits":"commitlint --from=origin/master --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"prettier":{"arrowParens":"always","singleQuote":true,"trailingComma":"es5"},"commitlint":{"extends":["@commitlint/config-conventional"]},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.8.0","description":"css loader module for webpack","directories":{},"lint-staged":{"*.js":["eslint --fix","git add"]},"_nodeVersion":"10.15.0","dependencies":{"postcss":"^7.0.14","camelcase":"^5.2.0","icss-utils":"^4.1.0","loader-utils":"^1.2.3","schema-utils":"^1.0.0","normalize-path":"^3.0.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^2.1.0","postcss-modules-values":"^2.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^2.0.6"},"_hasShrinkwrap":false,"devDependencies":{"del":"^4.0.0","jest":"^24.1.0","sass":"^1.15.1","husky":"^1.2.0","eslint":"^5.9.0","del-cli":"^1.1.0","webpack":"^4.26.1","prettier":"^1.15.2","cross-env":"^5.2.0","memory-fs":"^0.4.1","@babel/cli":"^7.1.5","babel-jest":"^24.1.0","strip-ansi":"^5.0.0","@babel/core":"^7.1.6","file-loader":"^3.0.1","lint-staged":"^8.1.0","sass-loader":"^7.1.0","postcss-loader":"^3.0.0","@babel/polyfill":"^7.0.0","@commitlint/cli":"^7.2.1","standard-version":"^5.0.0","@babel/preset-env":"^7.1.6","postcss-preset-env":"^6.4.0","eslint-plugin-import":"^2.14.0","eslint-plugin-prettier":"^3.0.0","@webpack-contrib/defaults":"^3.0.0","@commitlint/config-conventional":"^7.1.2","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_2.1.1_1551953756414_0.8512236536641524","host":"s3://npm-registry-packages"}},"6.4.0":{"name":"css-loader","version":"6.4.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.4.0","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"01c57ea776024e18ca193428dcad3ff6b42a0130","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.4.0.tgz","fileCount":17,"integrity":"sha512-Dlt6qfsxI/w1vU0r8qDd4BtMPxWqJeY5qQU7SmmZfvbpe6Xl18McO4GhyaMLns24Y2VNPiZwJPQ8JSbg4qvQLw==","signatures":[{"sig":"MEUCIQCihfuMOZZ1/0+az6RIDJ7zvCkNDT5/+iDt1iSAWEbd8wIgaVtrKsAa7sz7H/bc3wfvwzoZwoEIkU3K5jpGDQXxMeA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":125916},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"60c37551615708a2f367107eb1f27d9f133cb12b","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.24.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.22.6","dependencies":{"semver":"^7.3.5","postcss":"^8.2.15","icss-utils":"^5.1.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^27.0.6","less":"^4.1.1","sass":"^1.35.2","husky":"^7.0.1","memfs":"^3.2.2","eslint":"^7.30.0","stylus":"^0.55.0","del-cli":"^4.0.1","webpack":"^5.45.1","es-check":"^6.0.0","prettier":"^2.3.2","cross-env":"^7.0.3","@babel/cli":"^7.14.5","babel-jest":"^27.0.6","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.14.6","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^11.0.1","npm-run-all":"^4.1.5","sass-loader":"^12.1.0","style-loader":"^3.1.0","stylus-loader":"^6.1.0","postcss-loader":"^6.1.1","@commitlint/cli":"^13.1.0","standard-version":"^9.3.1","@babel/preset-env":"^7.14.7","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.23.4","eslint-config-prettier":"^8.3.0","mini-css-extract-plugin":"^2.1.0","@commitlint/config-conventional":"^13.1.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.4.0_1633783344408_0.39244725440331996","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"css-loader","version":"6.0.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.0.0","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"e3f9131229df43e081876f434dc2f4605be9d5ae","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.0.0.tgz","fileCount":16,"integrity":"sha512-xi3iTbHekvk5dWWdqfQKNsEm2g3Vr20uRwHzfXF+pHsaFGMuxTrqR1y8PY+st5G7wqid4/pBSiaqZsO6iaGN5g==","signatures":[{"sig":"MEUCIQCJT9I7uMi0ilbTP5uPLh4KdwajrQ8X+ET2zGcib+hLCAIgEv5KcjdmzOFop/9PuH3YWlXgc+Jx2FZJpQ3XmRH/Xvc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":113799,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg7509CRA9TVsSAnZWagAAob8P/i1FGF5OD581h151b495\n5WFpcUjP+kjQ2Gsr20xghphZ2LLuZAJsNKG7ahfckLarVDMV8S9lHWZLTZNI\nIYbzZPsYb0d+mFuuqU6J04HGfx5cDKEYOK7u83xQkpsfeZHLNcPhVrsW01Hp\nmt1x2v5ZbrIbwsRLfemUhQXkLQbPchMz4aERmmealqC5SdWjmKaU7kGzFDCH\nm0pflKH18Kfv/2vr7xZA1ub5v6asrFkJp1DfNsGwae9FFY5as9gM18Q/j2Ql\nezXQee4XzGtaN0JupprBb53uWC4Bk4dEo270yBvcWpieEdLk83NRmh5r7ltT\nl9BKs7H8xSwrm94ixSq5nRdajh2ODAbemhVpLQUl8C54KbV2fmOFw4UPiwik\nuNnVLOmphBXnmH3+x8CwFb5HDBvqNZTah/Lo/QI5FtMUKvDWN0LNpLmYt54x\n3zvqbA1qDIZ1xdv1ksTJf5uWIaFTHjrtT4homLaa+Vz/j+Lleuhp1pMcHXH2\nd0ng5hr75eFvax+bWY7LL0HNOUTohPqzJHTJNUgbT38q7CTSQk594gz9wDBM\nnPtxSbKWaVhonkd/RVzLxVLTYNZZjDER1RqD509Ya64LlVJ1TWGaERhL3omS\noqGRsBdaGjh5D0L7XDEmjZlFLr7C8gmyWqmuQ3VQxKIENqRrHR3rKkesZ/SP\nmG45\r\n=a8uf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"31bcbfb98ff80c75e06847029fec8c77cc704a40","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.16.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.22.1","dependencies":{"semver":"^7.3.5","postcss":"^8.2.15","icss-utils":"^5.1.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^27.0.6","less":"^4.1.1","sass":"^1.35.2","husky":"^7.0.1","memfs":"^3.2.2","eslint":"^7.30.0","stylus":"^0.54.8","del-cli":"^4.0.0","webpack":"^5.44.0","es-check":"^5.2.4","prettier":"^2.3.2","cross-env":"^7.0.3","@babel/cli":"^7.14.5","babel-jest":"^27.0.6","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.14.6","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^11.0.1","npm-run-all":"^4.1.5","sass-loader":"^12.1.0","style-loader":"^3.1.0","stylus-loader":"^6.1.0","postcss-loader":"^6.1.1","@commitlint/cli":"^12.1.4","standard-version":"^9.3.1","@babel/preset-env":"^7.14.7","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.23.4","eslint-config-prettier":"^8.3.0","mini-css-extract-plugin":"^2.1.0","@commitlint/config-conventional":"^12.1.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.0.0_1626316093172_0.7262124596323012","host":"s3://npm-registry-packages"}},"5.2.0":{"name":"css-loader","version":"5.2.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@5.2.0","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"a9ecda190500863673ce4434033710404efbff00","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-5.2.0.tgz","fileCount":17,"integrity":"sha512-MfRo2MjEeLXMlUkeUwN71Vx5oc6EJnx5UQ4Yi9iUtYQvrPtwLUucYptz0hc6n++kdNcyF5olYBS4vPjJDAcLkw==","signatures":[{"sig":"MEQCIDdnC9tuEa87sTe//ohvsSAtXzm6W0V97lOK5mKtcYs6AiAhNxamzFYWamFIb3rDpXgzXe65FntbJ2eqpreJs0Yc0w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130764,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgW3DVCRA9TVsSAnZWagAAsOEP/1RZruDqHuWH+bEDDPEe\nRTWHkSiaUHMco0UWsNt6s7JgrTORDk/S+iuXhuoMq9+0lD4pzKYbgSc/7fJr\ne9sYEhagzCKYdbB2IlAHKOuK7h1DzSJc5rJKqBh51eUOBpFT5iG+t5gzHSP8\ngaRLG4QmoWqNvmiCqX2+rieDKPK+ALyfIPsaMI+aVxa4VDANpidnXo46lqOf\n2et+B6OIArmwzZupjKWSlJyCOw/cWaetowXeak0ov4Q/LbNNlnnqyJOQXtcV\nciHONJBDx93soLVAfJyD+jGtbbbLtwDX14SYmUMzWuHbA/2RzW7vWXvd7BEB\nG+GtfpOIDn9huHUDnYDpnDxrkPcP32S7Zqq/4JbF4+917jAcFyII1FWj0Zv8\nJ6/bqiO69lhU2GXiaAhKWtfoJFRcut+yZFgHEXS+fW0VOP3AEWtG05y3e7K7\np21WfEtrSctaxTuk9SE0KOPyg+VKkP0vihrcE7HSIcxqEFwvfkbVuo5PHDGf\nAkkwvcj7r/c5ti2Kfa0psi3naIDRymINYwOPMM8hdO8mG21oF4S05S5+fDli\nNs9OnRxojdb7rViH56XEY21RvjMrZyblU31HjZgzAo0sf1KkbzDScJMhpRCS\n7uDXTHU5qjSgu2RWibsS7nPpnUSgQMFFVKnTLzBwD+6zESRkT9aZ+u8u2obV\nq6i0\r\n=ZBMc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"dcce860f86d6f336492a4812797751c9c3d15f62","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.6.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.21.0","dependencies":{"cssesc":"^3.0.0","semver":"^7.3.4","postcss":"^8.2.8","camelcase":"^6.2.0","icss-utils":"^5.1.0","loader-utils":"^2.0.0","schema-utils":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^26.6.3","less":"^4.1.1","sass":"^1.32.8","husky":"^4.3.8","memfs":"^3.2.0","eslint":"^7.22.0","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^5.26.0","es-check":"^5.2.3","prettier":"^2.1.2","cross-env":"^7.0.3","@babel/cli":"^7.13.10","babel-jest":"^26.6.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.13.10","file-loader":"^6.2.0","less-loader":"^7.1.0","lint-staged":"^10.5.4","npm-run-all":"^4.1.5","sass-loader":"^10.1.0","style-loader":"^2.0.0","stylus-loader":"^4.3.0","postcss-loader":"^4.0.4","@commitlint/cli":"^12.0.1","standard-version":"^9.1.1","@babel/preset-env":"^7.13.10","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.1","eslint-config-prettier":"^8.1.0","mini-css-extract-plugin":"^1.3.9","@commitlint/config-conventional":"^12.0.1","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_5.2.0_1616605397024_0.42446055766422774","host":"s3://npm-registry-packages"}},"5.2.1":{"name":"css-loader","version":"5.2.1","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@5.2.1","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"15fbd5b6ac4c1b170a098f804c5abd0722f2aa73","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-5.2.1.tgz","fileCount":17,"integrity":"sha512-YCyRzlt/jgG1xanXZDG/DHqAueOtXFHeusP9TS478oP1J++JSKOyEgGW1GHVoCj/rkS+GWOlBwqQJBr9yajQ9w==","signatures":[{"sig":"MEQCIE4nMwcy629uvCKARMJ5liUWOHI6dVY0w7EBXadhbqnUAiBHjm+eAkIRk2iIZ2GwpMaDOLT3Hs4V690rcfLNPq6HYQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":131291,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgcGwhCRA9TVsSAnZWagAABRcP/AxTsWxWfIiBTcmvw2kF\ngS0tdKLMAcVZcfMD5cqfqxc1FXOriEHWbmO1iWoqc9nVRPKva9xNqUpMOH00\nFcPV/Bv7EWuROzQnXE9k7pQ09XPtSKNSqr4Xkt1iReKpO14sx/M0nZfYUG+o\nHMNntMsw04CE/BYJNS94Q0RB2qEIdTngotbBw7IVIMrwj6rnYf3b9panAVcY\nmuDgn0izzlO5kzNMDPrS65AM0UZSrjrTnkFqDLjY+iaGJ/qKA+LQICCG7V+8\nKEIeZtzVR+0B3fFRAuqPOpCnelqKzMeLWboLOpHD90/JflNV4ZZB3R+8YHE+\nUNO0FgHXhk+T6+A19Po+u7w4v0TmGo/6d/KsXeQu39MtHeWhTf9zytJEEcOv\nNaeJIMpU8CFeLlFSudVUlWAo6o+t88QvMYAMadHFrQzAMWxnMHwjHr87zPgt\nIY0IKzSx3pKSXiRij6AD420Hc4IoJoUtwW2fF0MF1YJBEsGbK1bmOBJXuDXh\nBxR+eRJiyVnN9GE1f6mTiBz3EogAy+DbHJrv1XsWo5V8KM5ddJ7KmKjBQ9QJ\nks41QS4iRVh3bjYAGfcIkeYR56hbPsMHZYY6XYz91FGEx1zevvzmgQyMZcPJ\n1ABWAx4jO+bO7Atc+vWzBSeKTvey6p+JO5u1+yJc40wLO4OyhPU6Ujjdx1q/\nyGVc\r\n=7wIS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"2599438663f556082113be2c067791caa9b090cd","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.7.6","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.22.1","dependencies":{"cssesc":"^3.0.0","semver":"^7.3.4","postcss":"^8.2.8","camelcase":"^6.2.0","icss-utils":"^5.1.0","loader-utils":"^2.0.0","schema-utils":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^26.6.3","less":"^4.1.1","sass":"^1.32.8","husky":"^4.3.8","memfs":"^3.2.0","eslint":"^7.22.0","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^5.26.0","es-check":"^5.2.3","prettier":"^2.1.2","cross-env":"^7.0.3","@babel/cli":"^7.13.10","babel-jest":"^26.6.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.13.10","file-loader":"^6.2.0","less-loader":"^7.1.0","lint-staged":"^10.5.4","npm-run-all":"^4.1.5","sass-loader":"^10.1.0","style-loader":"^2.0.0","stylus-loader":"^4.3.0","postcss-loader":"^4.0.4","@commitlint/cli":"^12.0.1","standard-version":"^9.1.1","@babel/preset-env":"^7.13.10","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.1","eslint-config-prettier":"^8.1.0","mini-css-extract-plugin":"^1.3.9","@commitlint/config-conventional":"^12.0.1","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_5.2.1_1617980448343_0.46181614171635843","host":"s3://npm-registry-packages"}},"5.2.2":{"name":"css-loader","version":"5.2.2","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@5.2.2","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"65f2c1482255f15847ecad6cbc515cae8a5b234e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-5.2.2.tgz","fileCount":17,"integrity":"sha512-IS722y7Lh2Yq+acMR74tdf3faMOLRP2RfLwS0VzSS7T98IHtacMWJLku3A0OBTFHB07zAa4nWBhA8gfxwQVWGQ==","signatures":[{"sig":"MEUCIFdOki6y1GO4TcM5KqQvI5q4bl9X8xYBVkLsfp5k1mZ0AiEAw0gNqXaF5pz7gmJi/fVfzo7VUaBah8lna853g2hkpLk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":132919,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgeaq+CRA9TVsSAnZWagAAkmcP/3IUoamVeZAsdokCoWca\nbkctrWl4E2q+/sgxrMb/akQBLPaIHn+OGectw2rmF2hxO2M9XvbTnmKoIYDs\ncTJf3+9+eerDQh7sL24V14fXqctsHbZrurU2yHyX4Geb1X0Oam9RMXDqYyHW\n58CUeXGbx5hhwYIXBJaa6RWZVu//ICtFpZjMyuMB3u0xbPKIMoxx+aaTf7bP\nDA4k5c80/QMYMxoYMXXN3DWrOoqeTNjK2JKvifgJoHLDYtKtoi/yH7goa8fu\nUrZ/4cb955nww0gHt8LdnZsxQ4vhDyzsow03b7epCx3frlzJFYj7vcZQmMnT\naycwgq+jGTe9nH7J89k15DPSzQQu2eJ+Wu3yFhetdUfo4Eh+G7WBKij6+Dd7\nK0kYKHf9oYk9rHg58lpeZJR+X/kuaMkvPkXdQFh3lLPd7CjA+oiuedpsIyMM\nJO7rsHLx58JDUFLyx6LFxRd7zOs4bnuM70GwnB+tfHMpgoWkIYwB+b6PtlWM\nE9uIdh94dDhTwqq6/P9JgI/1fNBLDxcGPMttb7Hde8Pqv1qtymsL1buK5972\n975tjz/ujeV9/TvapBI+FA+sqtFGu5B3HSRBRI9yZl6HJp037ml+1vXMPdCn\ngsfjQCaCEXIazCIHCtWmJ9rI4N3O1nxbxqjpMIru0xHcMZN11RfZPjLa1zs6\nnRQb\r\n=vNxD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"4f10583b51bb5988f01bea7f67aecb94872b115f","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.9.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.22.1","dependencies":{"semver":"^7.3.5","postcss":"^8.2.10","camelcase":"^6.2.0","icss-utils":"^5.1.0","loader-utils":"^2.0.0","schema-utils":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^26.6.3","less":"^4.1.1","sass":"^1.32.8","husky":"^4.3.8","memfs":"^3.2.2","eslint":"^7.24.0","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^5.33.2","es-check":"^5.2.3","prettier":"^2.1.2","cross-env":"^7.0.3","@babel/cli":"^7.13.14","babel-jest":"^26.6.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.13.15","file-loader":"^6.2.0","less-loader":"^7.1.0","lint-staged":"^10.5.4","npm-run-all":"^4.1.5","sass-loader":"^10.1.0","style-loader":"^2.0.0","stylus-loader":"^4.3.0","postcss-loader":"^4.0.4","@commitlint/cli":"^12.1.1","standard-version":"^9.2.0","@babel/preset-env":"^7.13.15","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.1","eslint-config-prettier":"^8.2.0","mini-css-extract-plugin":"^1.4.1","@commitlint/config-conventional":"^12.1.1","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_5.2.2_1618586301514_0.2708185311101077","host":"s3://npm-registry-packages"}},"5.2.3":{"name":"css-loader","version":"5.2.3","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@5.2.3","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"672074a8941e6704fe2d2114bb3b0b3f8a99247f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-5.2.3.tgz","fileCount":17,"integrity":"sha512-8IkpXDWwpRza3suLhmzrA2XXyz741iaDJAhiwhQUTLFoj2bZfh9RM8Mc/X2801IGEWOUIj+pShg7J3dEtd6A0A==","signatures":[{"sig":"MEUCIBfrxfYUl4BgSB5shkpxG7oQ2hFAemZVPPtuqKvodN1ZAiEAhprI+grS+dnljnSOjWdLNRf2wqDzsbzj0P7lr3oKugM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":134556,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgfX+CCRA9TVsSAnZWagAAEm0QAIAvZkgZ+LkAv18+2l16\nJIB+SMaUYbAvJYjD+jQR8LKM3LlpestL65xtg1HoEt8ACmXkb7CHREoK9NEk\nlpeEDZ4bALGsXd6llfknpaJ9g6FTgCzMIer6R0jBwfrOluGskkhFDQa5fAWh\ndmvTQ/3QfbMYIHdy6LLWkSA5Z0O4ARM8+Q9oda2jptkpmgi3/KbM79wUp5R8\n6Ro5QMq/qqrNxWPNPi78Hopq3YCd84i8g66V1tKMc9WHdooN+gwiOS7hecmY\n61w3cpIJ50tNMWSTarFQkHm5DR4KjJVspEjkipSInT9uS8Ask4lsSA51cLoP\np0Rnw9JFngwRUiQ0D8mnb94H+v6BQX/6NRmOQ/YiFhp3uEQS8jbAmD9ophFh\nltZNmnViCjO6Th0lgwKwFswYgHQzP3R7YyiuxX+4BXSZpUlxz+RcGutZ1uib\naRtMEycZPf1jEgOAJ2bUsZ30OVC5QSy+ZCfe0L+WheGpxmE8dHbx2fnV8jhI\nO/t1Smoz7tpd82LdR0t3yvKKrPDnDvaPvDmlKeDE3Tav5BWPOc1iOmQZLBNx\nmmpZKh1Gw4QEB6JpGXJ1tyyhfioZFEIhGSJnCi+GGn+DTL3/SrauvOxenobr\nIpdmoMNMG/BznSOgLh33GhDNjxH3PEMYN4bEWUOpMmuohn+L2Q9Spw8AgLa0\n1L/5\r\n=RmAD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"238843917682fbf8cd6b412dd714ccb9d9221726","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.9.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.22.1","dependencies":{"semver":"^7.3.5","postcss":"^8.2.10","camelcase":"^6.2.0","icss-utils":"^5.1.0","loader-utils":"^2.0.0","schema-utils":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^26.6.3","less":"^4.1.1","sass":"^1.32.8","husky":"^4.3.8","memfs":"^3.2.2","eslint":"^7.24.0","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^5.33.2","es-check":"^5.2.3","prettier":"^2.1.2","cross-env":"^7.0.3","@babel/cli":"^7.13.14","babel-jest":"^26.6.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.13.15","file-loader":"^6.2.0","less-loader":"^7.1.0","lint-staged":"^10.5.4","npm-run-all":"^4.1.5","sass-loader":"^10.1.0","style-loader":"^2.0.0","stylus-loader":"^4.3.0","postcss-loader":"^4.0.4","@commitlint/cli":"^12.1.1","standard-version":"^9.2.0","@babel/preset-env":"^7.13.15","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.1","eslint-config-prettier":"^8.2.0","mini-css-extract-plugin":"^1.4.1","@commitlint/config-conventional":"^12.1.1","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_5.2.3_1618837377535_0.5100340502652954","host":"s3://npm-registry-packages"}},"5.2.4":{"name":"css-loader","version":"5.2.4","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@5.2.4","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"e985dcbce339812cb6104ef3670f08f9893a1536","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-5.2.4.tgz","fileCount":17,"integrity":"sha512-OFYGyINCKkdQsTrSYxzGSFnGS4gNjcXkKkQgWxK138jgnPt+lepxdjSZNc8sHAl5vP3DhsJUxufWIjOwI8PMMw==","signatures":[{"sig":"MEYCIQDu56wfv+TzY8XQxdec/hfEIVuwdyMOjU0EYJjpain3VwIhAL/bjLQpi7lgfJrFnrR8eruFuAlXvdMaOv0a6GB/3DCM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":135333,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgfbuXCRA9TVsSAnZWagAAAyAP/jt4QsvRHCm+r9Frb0Z0\nwyndZ8hdle6whl2DS33xI3MOS1OzsGU06aU96xhTKT3OfpTSfPVW5xpvqpAc\nd5SExUttLsNT9ZqA5/6LPgY9r/M7mmvJS2Y4QYFkYTwFAGVbqt2RRw5OHaKH\nRdsm4XuJyMu/5I72dhmvfUhWJy44Xuk36gtLoSHroERx6V+UIMXiyxndFChq\ni9lw35adbNqxqVcrQFoFNWHzjTwHy9B+Rgi42p9izFB/v/3jBj+TU5ZpHRep\nb7KkZH52dZjTlPBwgm1+mo7CtjK70VNa1VhEASswnEISB4SXUNC5QpFjOMc2\nkFc2yeBhChD58AWxEmkg3dBjprHX3acntTXpeg0s3B3+bOuFvvP88E6HoMmG\nUZx84sG435YzJC69H8OydgZAL3J8ezFa3vNRtivrSx8vEYb7p3eRjGa4Vyz/\ntIecsldZ+HYAL4z7gNskvNZm4mHEMOh2NHZeaukelfo6njtZC+67YCDzWy0Q\nsqzO+ZKfCsUi0qgzS9d3g+4Ft6XczV+oygNUvO1UuN2P7ihuTKkAE8Ehdmzn\nzNR3SUjHXsn7m1UR0qCTgNbZzMjWT1qVZh1YfxHiqYdj9xqNkE7NBaYlRKZj\nXEL7zwFfT6aQQ9Xw5Vqwkomch5GxlWl7ocq3DE3exlULGrQnyiObBtfXxblm\n7teo\r\n=5QYM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"13b7458be2ef0d7a6b334e5e8149d83de6478403","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.9.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.22.1","dependencies":{"semver":"^7.3.5","postcss":"^8.2.10","camelcase":"^6.2.0","icss-utils":"^5.1.0","loader-utils":"^2.0.0","schema-utils":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^26.6.3","less":"^4.1.1","sass":"^1.32.8","husky":"^4.3.8","memfs":"^3.2.2","eslint":"^7.24.0","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^5.34.0","es-check":"^5.2.3","prettier":"^2.1.2","cross-env":"^7.0.3","@babel/cli":"^7.13.14","babel-jest":"^26.6.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.13.15","file-loader":"^6.2.0","less-loader":"^7.1.0","lint-staged":"^10.5.4","npm-run-all":"^4.1.5","sass-loader":"^10.1.0","style-loader":"^2.0.0","stylus-loader":"^4.3.0","postcss-loader":"^4.0.4","@commitlint/cli":"^12.1.1","standard-version":"^9.2.0","@babel/preset-env":"^7.13.15","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.1","eslint-config-prettier":"^8.2.0","mini-css-extract-plugin":"^1.4.1","@commitlint/config-conventional":"^12.1.1","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_5.2.4_1618852758542_0.31297323962585555","host":"s3://npm-registry-packages"}},"0.5.1":{"name":"css-loader","version":"0.5.1","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.5.1","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"4bb5f836cbbbbc64258762fab72af763b923a401","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.5.1.tgz","integrity":"sha512-T3m49gS8hT+0awh/88yzWVE6fJjF0ts32wE3REMd4N+E5GTNt06Va8YQgXbvQxVSqhLztIEZkZ8ivi4p8OMLHQ==","signatures":[{"sig":"MEYCIQDE2p+PCt0CG5HnDARhN7VlATOfoQbr7z6xM3UOjw3nlgIhAPakCXJXLryzzKDh0oyrRM8rDG8cA8ug1KWu0PR0+5nq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"scripts":{"test":"node node_modules/vows/bin/vows"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.1.59","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x"},"devDependencies":{"vows":"0.6.2"}},"0.27.3":{"name":"css-loader","version":"0.27.3","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.27.3","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"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"69ab6f47b69bfb1b5acee61bac2aab14302ff0dc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.27.3.tgz","integrity":"sha512-VDcF/sF7RFAVoDnnjBguWOjflAPBD+zBSd/ZgF4vqebc96c/5v1/fKKJEiULWObUcazZE7qkEgWzq0L0NyF6Lw==","signatures":[{"sig":"MEYCIQC/bSpcwlXfzvFyYOcoWpQHz613ixxwJk5oTTWZCB3ZWwIhAPkotqzdPNjboRjAXUWVih8AiYYFMEgfKDU5FEPWtjbG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","locals.js","lib"],"_shasum":"69ab6f47b69bfb1b5acee61bac2aab14302ff0dc","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"gitHead":"76ee8c2d04de2cb5e7e08251376b79873d9190f3","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"bebraw","email":"bebraw@gmail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"3.10.10","description":"css loader module for webpack","directories":{},"_nodeVersion":"6.9.1","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"^1.0.2","object-assign":"^4.0.1","source-list-map":"^0.1.7","babel-code-frame":"^6.11.0","lodash.camelcase":"^4.3.0","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.27.3.tgz_1489412702522_0.6339922593906522","host":"packages-12-west.internal.npmjs.com"}},"5.2.5":{"name":"css-loader","version":"5.2.5","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@5.2.5","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"cdd18d6fe42748990793b4a7ec32eb16f36ba9d7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-5.2.5.tgz","fileCount":16,"integrity":"sha512-bH6QQacvSRtLX0lycAOs43S173n+lfXxB5cx4FjVkTLw5tAEwk5bxNLbkt5K1iETd5KxazRx70GpqOxsuwKiFA==","signatures":[{"sig":"MEYCIQCpOmkaZiQdp8pWYsdskSDcwg1Cv3dm9RftROmVjJSU1gIhAI7oOiyvJbOPBBwpRI3+oKF2TVOK807fGffmCdOmljqo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":101869,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgpllpCRA9TVsSAnZWagAAh/QP/RRNjjSrwssweX3LrVkW\nRp6+f+YJ/kmfcIfiG32xrSVCI2IHOoqPt1btB2dMmAaR/gcQwmjPZ4KGnIVH\n9myszkzMkalYcRMYnggD2+l3vKkApzys6VL7F7RbeHHcti16gYoUD8g1b4e6\n9QY3X2VRjJ9R+VPnN6uY9AivrmoZ6vs+rUtSJH31nRpvT5lycKvtN+cCdIqn\nc7Eygo+CcGQK/jYZr+2iI4Dm5igD6oDeSjp4A8FVJZkNA4h9yB0ybdokK1aL\nukdejR+DY+/5Quikr+FsWDHhY6pRHgNTmNPlOP1QHg282Uj5gHflTg7cIi0F\nBNszB/x89jBvkzhtvnXHYvPCw60wtoiIZaZaBpXFlef2KnVOnTTbV8GGFRKs\nzbrWYG5z+r2h2Qi+iAW9FEhNUvNXPbQxONcPYiBSOicTvYwsmv7Cyq1cF4l7\nKy4PSmGBc8ETZzw4JohbENePzQSePJZXziNgWc12ymNynimW/bLsiHiO7tZv\nHAaiEU09ZPrF5jKSjEmYjaaCp1KeresxGTSBRF+UddHiD58gblLcYw9D+jGe\nhkcDjGVxu94ZnaQOQFUpTY8BOiGhfGHh5mTMUCgqHi/6qnJl7a3WD+pHLyua\nIIg2bZGVxIKWzk6eTqGFOAO3ko0IYpMBb0wgdgt+lSBtY+fHGDlpZozFjC7l\nNP+n\r\n=so/E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"fa9d4c421ffaf469144af1e0007e8b2321ce9876","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.12.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.22.1","dependencies":{"semver":"^7.3.5","postcss":"^8.2.15","icss-utils":"^5.1.0","loader-utils":"^2.0.0","schema-utils":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^26.6.3","less":"^4.1.1","sass":"^1.32.13","husky":"^6.0.0","memfs":"^3.2.2","eslint":"^7.26.0","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^5.37.1","es-check":"^5.2.3","prettier":"^2.3.0","cross-env":"^7.0.3","@babel/cli":"^7.14.3","babel-jest":"^26.6.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.14.3","file-loader":"^6.2.0","less-loader":"^7.1.0","lint-staged":"^11.0.0","npm-run-all":"^4.1.5","sass-loader":"^10.2.0","style-loader":"^2.0.0","stylus-loader":"^4.3.3","postcss-loader":"^4.3.0","@commitlint/cli":"^12.1.4","standard-version":"^9.3.0","@babel/preset-env":"^7.14.2","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.23.2","eslint-config-prettier":"^8.3.0","mini-css-extract-plugin":"^1.6.0","@commitlint/config-conventional":"^12.1.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_5.2.5_1621514601319_0.2999606528093437","host":"s3://npm-registry-packages"}},"0.5.2":{"name":"css-loader","version":"0.5.2","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.5.2","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"181ab33feb0e2878b5a6b564a96c4b29aa6f0256","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.5.2.tgz","integrity":"sha512-jJWuvDmrGILITmtDpIy0TjHUw/ov6MHXY8lQD4XnvyM/AoU+F72scEy4RVqvl+RZRBlxYMZHMwciwkE++HMe9w==","signatures":[{"sig":"MEUCIQCuPZf1lLKG/Xax0+7gvNzI2gTluhV6YHL6MmbNC+iZuQIgBqJdoGpVvuCXkTEy2DK1IvuRes2URiy36o598eIcLDo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.2.2","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"5.2.6":{"name":"css-loader","version":"5.2.6","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@5.2.6","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"c3c82ab77fea1f360e587d871a6811f4450cc8d1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-5.2.6.tgz","fileCount":16,"integrity":"sha512-0wyN5vXMQZu6BvjbrPdUJvkCzGEO24HC7IS7nW4llc6BBFC+zwR9CKtYGv63Puzsg10L/o12inMY5/2ByzfD6w==","signatures":[{"sig":"MEQCIDBECxotN2uL9XTKyCCPZgVALR83dmJNNQdF+kPlzs8RAiAvCNkwV3VrZ8wz62FTGi00rASBm7YhRkxIzHMGhzIrWA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":102113,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgq7KxCRA9TVsSAnZWagAAu0YP/iviiU8j4aLkLUy5brkW\nkokRKw407+Jsbo9wOmt6gRX1gTHzxD9OVdWMZEA65oEjy7l/A74agp4Oiwi7\nfRwWAqKJG23Lvj6UCCWQ1hcWgljXLWtCV92cxAIhAJlcMky4Z6TsVjxTqXal\nzZBMdd1A22fdV1qNbUwKVN2vZrA1Uac+YaRm349Jk4mcu0LorB2XqYtwnhMf\nc4hsl1vxGGwgD2FDbcF7paIkZWNosFTCEgVRHT/vX4zw8YBA/f9Vr6JIk7HD\nmaG6qWj03tGlRKrw06xGWjxjvmPceB9xHCy9pBre+2L8E/AEd8i/E1XKfavq\n5LI8+htz1u341mVbqUngCFQRkgGoW3wQZv5jPy+gpWskV4AArk8cVnTJLSHp\n9HL/PWLJdP66Oicw16Rp8BBGVIlAjT1k0o6OPYdwXh8PNlUGW/1+vjxpQEd8\nZE2y9zqJk9rKKwCjaofQsGRSegsQgX70l5uM4JPC6+HKQ1FzUrJyx2JfYIT+\n/A1VlqWfunl4d4TiAMoNoCYjOF5BdnYirzJcit6DIYh8St382QMuoJvZhk8a\n1VNbpddY12isVfIBJvekyhMbAAOx6XVbwUvk8FxthAQAJVy2MER7LZM7VsHB\nPZ5468YLgV+iu2sRe6PkNhLDomqBdjkNNpO0i7kyi/G8Rt4UP5TNKpsji4jB\n6zvf\r\n=fsWN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"d31c680727ccefe9f765ae35a96e376e60d28177","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.13.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.22.1","dependencies":{"semver":"^7.3.5","postcss":"^8.2.15","icss-utils":"^5.1.0","loader-utils":"^2.0.0","schema-utils":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^26.6.3","less":"^4.1.1","sass":"^1.32.13","husky":"^6.0.0","memfs":"^3.2.2","eslint":"^7.26.0","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^5.37.1","es-check":"^5.2.3","prettier":"^2.3.0","cross-env":"^7.0.3","@babel/cli":"^7.14.3","babel-jest":"^26.6.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.14.3","file-loader":"^6.2.0","less-loader":"^7.1.0","lint-staged":"^11.0.0","npm-run-all":"^4.1.5","sass-loader":"^10.2.0","style-loader":"^2.0.0","stylus-loader":"^4.3.3","postcss-loader":"^4.3.0","@commitlint/cli":"^12.1.4","standard-version":"^9.3.0","@babel/preset-env":"^7.14.2","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.23.2","eslint-config-prettier":"^8.3.0","mini-css-extract-plugin":"^1.6.0","@commitlint/config-conventional":"^12.1.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_5.2.6_1621865136973_0.5615531541860852","host":"s3://npm-registry-packages"}},"5.2.7":{"name":"css-loader","version":"5.2.7","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@5.2.7","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"9b9f111edf6fb2be5dc62525644cbc9c232064ae","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-5.2.7.tgz","fileCount":16,"integrity":"sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==","signatures":[{"sig":"MEUCIAIQdQj6xxp+VYZPgwAzKKv04i36MDUJKJM3H3+kygNRAiEAsgDuGOg0t+aOsfSFg17t6QlDGR/J1oCeqqz8GmacOs8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":102159,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg7Y7HCRA9TVsSAnZWagAAUIMP/215sJ4e0SSmfIBvekfb\nxYbwMJe8feO3lqqjXKkKcg9ISaWVuDClTponuN1RBCpFiEShFa1RtRcseUVC\nZGfEbB4bt4ZQZcGZ3LXueLH9sj+Y7xPYQCj5YvmHAdfBcCLt0AK+3v5ID41Y\nUFuxjHkz14AdzzLCw4jGD2oIiBnupvJYb5RhF3FA+y+6A6M+CFKBO1InDGXP\n1VKydy7sHfMig6R8snED/xX79AELyBTwyU74aCKHpUrAccMg80irNemLN4Vd\njdP0aXMrHUoNAhk7678fshph1AUfb4K8l6J2IPObURew3f5yboqM72mfAk1F\nhOa4jKNVMDNirbf5qp91kpHWTA13xZ4owGM78uz5L1zicu2FASYQb1WeKe7X\nWsmldGfYHWgLmsD3O8bUnaytfQImo7rurxwfr681qomWnfyIYfkMoPl7attx\nuWcGuoCKX2LuRhqJU6w+AHjkKaAOle/hX1kkfbk78tHMv/HWvBCF+ZLdS6rZ\njbkcREYlGYsnSTdSHQD3ee9YLjTLLE716i1fXerCgENDOhDM46p3m4LpqE4w\n1X7EzVuW6xjmunFGpnPX2OHPR9GE+W7Ff7ewECWdIoLtKLTSRKGCERPM4gju\njtv5IdAwfcmMU2q+j02iZxMDb3XoEShKMtLtSCpQxBFgrmxJWnTh7/2bgPQF\n3R2F\r\n=2D1i\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"ae988451a9638662625e515b915a12f6e2c9378a","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.16.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.22.1","dependencies":{"semver":"^7.3.5","postcss":"^8.2.15","icss-utils":"^5.1.0","loader-utils":"^2.0.0","schema-utils":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^26.6.3","less":"^4.1.1","sass":"^1.32.13","husky":"^6.0.0","memfs":"^3.2.2","eslint":"^7.26.0","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^5.37.1","es-check":"^5.2.3","prettier":"^2.3.0","cross-env":"^7.0.3","@babel/cli":"^7.14.3","babel-jest":"^26.6.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.14.3","file-loader":"^6.2.0","less-loader":"^7.1.0","lint-staged":"^11.0.0","npm-run-all":"^4.1.5","sass-loader":"^10.2.0","style-loader":"^2.0.0","stylus-loader":"^4.3.3","postcss-loader":"^4.3.0","@commitlint/cli":"^12.1.4","standard-version":"^9.3.0","@babel/preset-env":"^7.14.2","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.23.2","eslint-config-prettier":"^8.3.0","mini-css-extract-plugin":"^1.6.0","@commitlint/config-conventional":"^12.1.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_5.2.7_1626181319356_0.9006685784738919","host":"s3://npm-registry-packages"}},"0.5.0":{"name":"css-loader","version":"0.5.0","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.5.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"cdcac97ba22dc90596b7ea3f3ba568b9ca025ae4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.5.0.tgz","integrity":"sha512-AP/OWZbVWgTzGW9WbGP5W5gQRQQ3lhGx4aYsvVYRhlF7WgSnp5JhUgyiKxot8omHBDZKWC62Kui4+C6VfcpvjA==","signatures":[{"sig":"MEUCIQDiLBG+dNFGenH70UWxU0tRud2E/Bahc/Du+OMn4hlD+AIgXzwFj7PAz2Ho2uPbp1sspQpP2S8nkJJGMtdlyVUq+b8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"scripts":{"test":"node node_modules/vows/bin/vows"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.1.59","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x"},"devDependencies":{"vows":"0.6.2"}},"0.9.1":{"name":"css-loader","version":"0.9.1","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.9.1","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"2e1aa00ce7e30ef2c6a7a4b300a080a7c979e0dc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.9.1.tgz","integrity":"sha512-gRUrW6PKtgZrWaJ/w51C7N4MblnSe7LicfyX36YiN4gAK7QBNZ9VT3wxZDcyzW6zAkEpk7f/92v9258dCIKdEQ==","signatures":[{"sig":"MEUCIC5WQHms3aOkGETqetMXvH23ZzNcOiJObszcnLA414OgAiEAwe6N1GHlvWuBBQC+baJ6xwA7UTwv4MXKz+/LH8LL18M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"2e1aa00ce7e30ef2c6a7a4b300a080a7c979e0dc","gitHead":"a8945739c067a7d7e492ac8de44f177278570692","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"1.4.28","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"~0.1.38","loader-utils":"~0.2.2"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"0.9.0":{"name":"css-loader","version":"0.9.0","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.9.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"079849c253c0a6a9fc8cdeea7d41eab12195a7a8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.9.0.tgz","integrity":"sha512-4d09Hc9wer5gVAABVqvlgz/8AcpcMAn6CapO3E8DrDj40b8Y56hegFgX0WneZfkILKoGAeWCBR6/M3JjAnzV6Q==","signatures":[{"sig":"MEQCIDjlzeESGuj5BfxKBlT+u/a5rpSA9HYtubLkeoSsXXP0AiB1o004SPQY1WIDh8wk8jGgECrzFDskvHMi33YxyEdajg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"079849c253c0a6a9fc8cdeea7d41eab12195a7a8","gitHead":"7b50d4f569adcaf5bf185180c15435bde03f4de7","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"1.4.16","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"~0.1.38","loader-utils":"~0.2.2"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"4.2.0":{"name":"css-loader","version":"4.2.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@4.2.0","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"b57efb92ac8f0cd85bf92d89df9634ef1f51b8bf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-4.2.0.tgz","fileCount":16,"integrity":"sha512-ko7a9b0iFpWtk9eSI/C8IICvZeGtYnjxYjw45rJprokXj/+kBd/siX4vAIBq9Uij8Jubc4jL1EvSnTjCEwaHSw==","signatures":[{"sig":"MEUCICqaUW3p243ikhBr9lhZ4KCZyg/NSqfU+NYmq6CaqV1JAiEAwouof7r1Jjs0Pa/LO6VWUvo30l5JyTUjY1kCpgi/ViM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":108893,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfJDYvCRA9TVsSAnZWagAAECEP+gLMidBRx9ZhlFztRvcZ\nwWjVLuvHv0yOWEQmu9oYQnpC3jNyC5JKlGQRxFgc+5Zpnv4Vhlf8G9qoWBc9\nl2Zu9Jn3+LeBMyrnvAjaWtcnLi+CmlWsRf0+/hXLjOBALOl+GFBs4XqQFuxs\nHLMlxY6s+ZGckDd7sNoRb5ghPh7mtPQaEaqtv7woij0i3VhH9dZ/rl+47+Up\nxXURcBV0e+Mt0rB/KAsaQNYq5Ruoqj88zHEQnDhHSeRCXMNSqqNTh9gwirNZ\nyLGKK3nuOqo/DmfdZAnArXfrHxN4UDoZAJETYht9c1OYjk87oEk1jllFKjpU\ncZ9OgIsQcESjhtJ9CZmPEzqJ04eJhb78U0P0meEq2p5Sm2GGIS7yHsHufF/W\nS4rfpizsqb1YlYAU416ZqCqoMYNZt4boPSzWh/gbhl73mYocYubRhYxF60s2\n+9ulXQiN9PuLaJDZY39c8Tl6DLdZFeJQX5fz3eWEjyrwNlbadMLh3iK9vb6/\nt8c5NPw5k0N5BFNdZM/NFo0FsdH2GYDTzI33KZe3DHYUvVNix6ePQmfd8OV4\no+DeoonQxPxCkszN8ePm+2J5HsMURSQX4mM1fLETVNZQxYH76G3RPqoLcEpz\nmKVo+uxUWFd39+1kzHY9ycxHMCsqX5fmxBCXHQ7jwGxt7I4If5meHKMETiTE\nEZBE\r\n=Pe1K\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"d24f9c72589b5da1f30ab549b9c474aecbe8921f","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.14.7","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","semver":"^7.3.2","postcss":"^7.0.32","camelcase":"^6.0.0","icss-utils":"^4.1.1","loader-utils":"^2.0.0","schema-utils":"^2.7.0","normalize-path":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^2.2.0","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.3"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^26.1.0","sass":"^1.26.10","husky":"^4.2.5","memfs":"^3.2.0","eslint":"^7.5.0","del-cli":"^3.0.1","webpack":"^4.44.0","es-check":"^5.1.0","prettier":"^2.0.5","cross-env":"^7.0.2","@babel/cli":"^7.10.5","babel-jest":"^26.1.0","strip-ansi":"^6.0.0","url-loader":"^4.1.0","@babel/core":"^7.10.5","file-loader":"^6.0.0","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","sass-loader":"^9.0.2","style-loader":"^1.2.1","postcss-loader":"^3.0.0","@commitlint/cli":"^9.1.2","standard-version":"^8.0.2","@babel/preset-env":"^7.10.4","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.0","eslint-config-prettier":"^6.11.0","mini-css-extract-plugin":"^0.9.0","@webpack-contrib/defaults":"^6.3.0","@commitlint/config-conventional":"^9.1.1","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_4.2.0_1596208686707_0.8507945630981464","host":"s3://npm-registry-packages"}},"0.23.0":{"name":"css-loader","version":"0.23.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.23.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"bddbb3cafe72aa66f8c4faf69210ad1312208f79","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.23.0.tgz","integrity":"sha512-sl0CFTYOjbfRUmr9eYyhsIhOjNZsdEa8vDhN1Wu1gf+E1zTx1lBmuAO2bDST4/G0ZkFw6Ms3QMvJ4f+Mh21R4g==","signatures":[{"sig":"MEYCIQCc8+35mPXfMN2+gjb+tx13a8kW5TvWx6V6q4rrOpOcugIhAKF9u+wj1KsSAdfdbiHSp1THdOJi5CwgmhYAlJL4F6pu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"bddbb3cafe72aa66f8c4faf69210ad1312208f79","gitHead":"1298d2b38c4770dbf853ff1eed632fe239881cc2","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.10.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.4","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"~0.2.2","object-assign":"^4.0.1","source-list-map":"^0.1.4","lodash.camelcase":"^3.0.1","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.5.1","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.0"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"4.2.1":{"name":"css-loader","version":"4.2.1","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@4.2.1","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"9f48fd7eae1219d629a3f085ba9a9102ca1141a7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-4.2.1.tgz","fileCount":16,"integrity":"sha512-MoqmF1if7Z0pZIEXA4ZF9PgtCXxWbfzfJM+3p+OYfhcrwcqhaCRb74DSnfzRl7e024xEiCRn5hCvfUbTf2sgFA==","signatures":[{"sig":"MEQCIGn4slqAoRmkrYdOnk0JtadcvGDfqgP0hPMocDbBCnCSAiBi1eRHsrTSgXjUqTFwiA6c++voK7KbwkKq3dru19AZ2g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":109756,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfLB/VCRA9TVsSAnZWagAAT2MP/19gL+8Y9pt2X1HOCXDI\nCjHXKxMmdMi8BUB0CtZAN3kp59YLJSod2bgUJQ+HC5pqZ7PhBOVr+/vpnpHA\njec47PLpevmgvvjqJOdtOlGCdU1t2AdIy3kGZiUpGw/GNnvaIEkjoET8LPce\nQz/FHVyU5uW4vJ4IfXVZ9aM107rDnrBrCQdqMiOhFNFJfATOKHuCKoOV8JwE\nDYGELIopPc0JLSiVidcdFOxZNViGXEDPuPoUepjURMIrs1i+gRW8c+nNlUlE\nMOvCQrVW1K2JR97o+XozyhXwiZtoEelfrBQToT7u3iCXY0tby0Pfbw7v6mR+\nJcZ/GHKSRk0DfbeGXF2VGNb8SfshhjWvDdmZtePxspFHg1wjhR/TkU0vg5Q0\ncdwMM/apJX9MOC9DwdnKgVTmAAhsIDIDAP7d8NJtXGyq69GUPwNax8QbV2ct\njs3XBR+8eJvShCEx3gM66EXmpmpiRF+kABBc0a2r8pPP3aBZ/c2Rhoki3kzr\nEVo01oVSBogfqw260GT9EFo6gvUaD1wy6x8AuTJ5R90jPWdFXl/iuADQtXmI\nnDxous9QDz0g/+YXXPuxqwjEs0t33drotzP6NDaE7/m83IAHht6XUg9AM/V9\njze/wSQ8J+mNE1mDdI+Kzhwj/8xqgmfTZgDxSRrYIqFAJrxxsn9DW8TegJaW\nNCEB\r\n=a3q5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"33e7879e1ebaffaa218d61cd307d9629e748abd4","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.14.7","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","semver":"^7.3.2","postcss":"^7.0.32","camelcase":"^6.0.0","icss-utils":"^4.1.1","loader-utils":"^2.0.0","schema-utils":"^2.7.0","normalize-path":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^2.2.0","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.3"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^26.1.0","sass":"^1.26.10","husky":"^4.2.5","memfs":"^3.2.0","eslint":"^7.5.0","del-cli":"^3.0.1","webpack":"^4.44.0","es-check":"^5.1.0","prettier":"^2.0.5","cross-env":"^7.0.2","@babel/cli":"^7.10.5","babel-jest":"^26.1.0","strip-ansi":"^6.0.0","url-loader":"^4.1.0","@babel/core":"^7.10.5","file-loader":"^6.0.0","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","sass-loader":"^9.0.2","style-loader":"^1.2.1","postcss-loader":"^3.0.0","@commitlint/cli":"^9.1.2","standard-version":"^8.0.2","@babel/preset-env":"^7.10.4","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.0","eslint-config-prettier":"^6.11.0","mini-css-extract-plugin":"^0.9.0","@webpack-contrib/defaults":"^6.3.0","@commitlint/config-conventional":"^9.1.1","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_4.2.1_1596727252652_0.07268367583288526","host":"s3://npm-registry-packages"}},"0.23.1":{"name":"css-loader","version":"0.23.1","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.23.1","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"9fa23f2b5c0965235910ad5ecef3b8a36390fe50","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.23.1.tgz","integrity":"sha512-626EYKVoY9Jf61On3M6uZHeu2CddHqc4F/C3b7Ingc6Z9YYeCr2QF9aVhSY3GO0SlLX48y4/m4rLkyY7BnkGnw==","signatures":[{"sig":"MEYCIQDYoQVVdaM2M4Mp/Oe6FCaG6ZXvjJKU6JPTNAeMVeLGAwIhAPSoSJ2Pk2b0r3rcUcgSoGb+meIUalcppzseYdTkSkKW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"9fa23f2b5c0965235910ad5ecef3b8a36390fe50","gitHead":"7d2abbaa82a093fa9b71223e1b5ab485cf7e9623","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.10.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.4","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"~0.2.2","object-assign":"^4.0.1","source-list-map":"^0.1.4","lodash.camelcase":"^3.0.1","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.5.1","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"0.1.1":{"name":"css-loader","version":"0.1.1","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.1.1","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"7ad26de67de39986e10d3b4c4b3e042c7639730f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.1.1.tgz","integrity":"sha512-SLeGTO3m5AGzrpx/QbSf6P++5cjkS8cirEiksejOJ84Y+HHgTFIgl86lPvmeFVptvqFETTVpoNzkhC4S5OYA+g==","signatures":[{"sig":"MEYCIQDZ3FFuF21at14OuSCdO1mRAN8dJMNesstdDv8r5hRbVAIhAN/QtCOuID2ibHdni/wdwVhbAeSWQoNwGRRBKFtTdIie","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"engines":{"node":"*"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.1.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"v0.6.11","dependencies":{"csso":"1.2.x"},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true,"optionalDependencies":{}},"6.8.0":{"name":"css-loader","version":"6.8.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.8.0","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"dd6bb4dc6a86d0db93bf2e1877d7af8d9e6dbdea","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.8.0.tgz","fileCount":15,"integrity":"sha512-oBmqObfEW1tAmLoKjxz8wlUxwvnea21GyplYqZUuMpeNC5I1EW0S0y3/pk0adzUW8oxMlhbA1X2fgOpRxDNDqA==","signatures":[{"sig":"MEUCIFpoaPvPxvTZxHLC5VlxekdmIxhSytmO9kbqWcCWrx/bAiEAy51YiZzNUgYJEJ9k+kgf+Gps038t5iDGWGDLPyOQsxM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":131005},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"c0ce599953c9aeddda3947fc8565b4fd0f889849","scripts":{"fix":"npm-run-all -l fix:js fix:prettier","lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","fix:js":"npm run lint:js -- --fix","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","fix:prettier":"npm run lint:prettier -- --write","lint:prettier":"prettier --list-different .","lint:spelling":"cspell \"**/*.*\"","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"9.5.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"18.15.0","dependencies":{"semver":"^7.3.8","postcss":"^8.4.21","icss-utils":"^5.1.0","postcss-value-parser":"^4.2.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.3"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.1.1","jest":"^28.1.3","less":"^4.1.3","sass":"^1.60.0","husky":"^7.0.1","memfs":"^3.4.13","cspell":"^6.31.1","eslint":"^8.37.0","stylus":"^0.59.0","del-cli":"^4.0.1","webpack":"^5.77.0","es-check":"^7.1.0","prettier":"^2.8.7","cross-env":"^7.0.3","@babel/cli":"^7.21.0","babel-jest":"^28.1.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.21.4","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^12.5.0","npm-run-all":"^4.1.5","sass-loader":"^12.6.0","style-loader":"^3.3.2","stylus-loader":"^6.1.0","postcss-loader":"^6.2.1","@commitlint/cli":"^16.3.0","standard-version":"^9.5.0","@babel/preset-env":"^7.21.4","postcss-preset-env":"^7.8.3","eslint-plugin-import":"^2.27.5","eslint-config-prettier":"^8.8.0","jest-environment-jsdom":"^28.1.3","mini-css-extract-plugin":"^2.7.5","@commitlint/config-conventional":"^16.2.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.8.0_1685226898345_0.7934740356912497","host":"s3://npm-registry-packages"}},"0.1.2":{"name":"css-loader","version":"0.1.2","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.1.2","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"b57cecbd6ddf3e7e9a944e853caa695eb313850e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.1.2.tgz","integrity":"sha512-Q5WeGL9L1xWOgRsn/2TmyxNyb6yaKcFToLpD0W+ltCdQLQFbMILUIgigFpucT6x7hv6J6SIeTRd36pXIPTnU6Q==","signatures":[{"sig":"MEUCIAGLJCW7KxqbaLqKtM6lioXbhGTIZRGID1JfCjVFMpYDAiEAg2XVpdwpuhCYQXSb4xlrvLuBWwbB8yyDG8h5+oD+fpw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"engines":{"node":"*"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.1.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"v0.6.11","dependencies":{"csso":"1.2.x"},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true,"optionalDependencies":{}},"0.27.0":{"name":"css-loader","version":"0.27.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.27.0","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"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"9730da488ba98b69f11a670a629414aee7c797eb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.27.0.tgz","integrity":"sha512-wZSBNM4HJyVFJKX4phAXBuSMiVmLDM2t6rNt+ZRJRWpD7U+FDYakIblSHTRKdkRx+gHQzF4ajpQvRW+MJiavQQ==","signatures":[{"sig":"MEUCICAOjDk1wOizfX+/HhUmk9A+ODHySQWxBjKkPfLVUhIDAiEAyOTWK0UMFUi40P3cvhGTkUjbjIvvNK3hAJf//k8upGI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","locals.js","lib"],"_shasum":"9730da488ba98b69f11a670a629414aee7c797eb","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"gitHead":"9504ea5d751088fc41a769d7f3b74830d0827871","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"3.10.10","description":"css loader module for webpack","directories":{},"_nodeVersion":"6.9.5","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"^1.0.2","object-assign":"^4.0.1","source-list-map":"^0.1.7","babel-code-frame":"^6.11.0","lodash.camelcase":"^4.3.0","convert-source-map":"^1.3.0","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.27.0.tgz_1489124068541_0.14711664547212422","host":"packages-12-west.internal.npmjs.com"}},"6.8.1":{"name":"css-loader","version":"6.8.1","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.8.1","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"0f8f52699f60f5e679eab4ec0fcd68b8e8a50a88","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.8.1.tgz","fileCount":15,"integrity":"sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==","signatures":[{"sig":"MEUCIQCO8JLPgHMs4GCBCv5SmVHvHUEzXYufsrXUEDUknGZvxgIgX+fpW8+5EczbFl02DAoMQXtYO90MSeRFmzDv2vVAkpc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":131093},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"4673caa4aa68d5fb1127c172b4afd081bd56eb73","scripts":{"fix":"npm-run-all -l fix:js fix:prettier","lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","fix:js":"npm run lint:js -- --fix","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","fix:prettier":"npm run lint:prettier -- --write","lint:prettier":"prettier --list-different .","lint:spelling":"cspell \"**/*.*\"","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"9.5.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"18.15.0","dependencies":{"semver":"^7.3.8","postcss":"^8.4.21","icss-utils":"^5.1.0","postcss-value-parser":"^4.2.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.3"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.1.1","jest":"^28.1.3","less":"^4.1.3","sass":"^1.60.0","husky":"^7.0.1","memfs":"^3.4.13","cspell":"^6.31.1","eslint":"^8.37.0","stylus":"^0.59.0","del-cli":"^4.0.1","webpack":"^5.77.0","es-check":"^7.1.0","prettier":"^2.8.7","cross-env":"^7.0.3","@babel/cli":"^7.21.0","babel-jest":"^28.1.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.21.4","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^12.5.0","npm-run-all":"^4.1.5","sass-loader":"^12.6.0","style-loader":"^3.3.2","stylus-loader":"^6.1.0","postcss-loader":"^6.2.1","@commitlint/cli":"^16.3.0","standard-version":"^9.5.0","@babel/preset-env":"^7.21.4","postcss-preset-env":"^7.8.3","eslint-plugin-import":"^2.27.5","eslint-config-prettier":"^8.8.0","jest-environment-jsdom":"^28.1.3","mini-css-extract-plugin":"^2.7.5","@commitlint/config-conventional":"^16.2.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.8.1_1685238110201_0.19433985825006195","host":"s3://npm-registry-packages"}},"0.27.1":{"name":"css-loader","version":"0.27.1","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.27.1","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"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"bfbc97430fea4b65e1dd48be8216f79cf5521091","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.27.1.tgz","integrity":"sha512-dNES8KIR18OXQhi4a7TBrcufRoICqkBqUNLLtX49NtFOcKUdC/6N2TYHuevY/xxyOZyD2Ui9DkoaplOBRGYdZA==","signatures":[{"sig":"MEUCIQDNG8pTivAxtrB9qGOUqs6SWVBngmSpxelUWp5e+MaUfAIgJM9+LhGYDW5R/uAYli/aAHPCfC2yR5DCjNz4wzfJBiQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","locals.js","lib"],"_shasum":"bfbc97430fea4b65e1dd48be8216f79cf5521091","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"gitHead":"0252643ba32f7087f6531479a6e00baf9d138ae3","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"bebraw","email":"bebraw@gmail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"3.10.10","description":"css loader module for webpack","directories":{},"_nodeVersion":"6.9.1","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"^1.0.2","object-assign":"^4.0.1","source-list-map":"^0.1.7","babel-code-frame":"^6.11.0","lodash.camelcase":"^4.3.0","convert-source-map":"^1.3.0","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.27.1.tgz_1489133760376_0.6213989660609514","host":"packages-18-east.internal.npmjs.com"}},"4.2.2":{"name":"css-loader","version":"4.2.2","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@4.2.2","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"b668b3488d566dc22ebcf9425c5f254a05808c89","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-4.2.2.tgz","fileCount":16,"integrity":"sha512-omVGsTkZPVwVRpckeUnLshPp12KsmMSLqYxs12+RzM9jRR5Y+Idn/tBffjXRvOE+qW7if24cuceFJqYR5FmGBg==","signatures":[{"sig":"MEQCIG+D18ktHuOkq3tXjhw2Sdkrm2/aOYsCv25WbF2Ys/8WAiBPehTAhy9L/mBDM4bxbv3qHtLBXH90tBCrznkqjsJsag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":114550,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfQ+zlCRA9TVsSAnZWagAARKMP/3JMsuLeU5ciLLp9ztF3\nEA2+abZexji3UPnCu7LO4O3IUhs9xHTspGjxpwgcjGnaS7rZzUjeWoKAGpEd\n2mciVGDXgyccNVITpMJIHAlYj61h4dPEsUGWyh20Dq2Jwa2W+/d1sZALlDpU\n7WDtphUDtf3EXdc4xoyHaLn15i25zPUduegvtTq6M5xasGpukhg07cLg7fLo\nErBAJSlOQQlceobxd8lsIol+Ei0GlVWs38Yyny069pIpmJ/hMuFAotIEPPtF\nWcc5e03FyoCpaxzExZi1RL0pTMt9R4NZVk+6oOe4oSu6pShqceHCrE11KPmT\nhhCzlFyWCjk8YyE1/B9ATkDO21URxWYV2aPTx+XDBrsEjO8b4dLUmCI3BCF1\nHjS3Z/2lphK6uXHodKHukvu/3ND4Uz7vthcOca8yTA53/GoPajcm4gPtRWyE\ndwKsiwm142kOd5h5hI+u+zdmj4iz3Y37z59sZl/Mt6azmm/LRY6l4Dl4Bscj\nGzsrzcSCFxcx+kPnKgBw9VB9kb+Nj/comJHW8Dk+HZ7+0TLZKRZ2m7yZ/KuJ\n9AZRKE6r+hw1gTIfwmQiHbKPVfZ0P34Z4Th+5xUyyVO863qz3muKUYDWvVA1\nLGUzksRA0sIqSkAknqmuwt4w0LqxfuC7hmmLdEtJ5G2ByOh492B+vIZm8e5a\n6zBi\r\n=sIFw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"26a3062c1f28b9b29c821f1520d4facfaa0132a3","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.14.8","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","semver":"^7.3.2","postcss":"^7.0.32","camelcase":"^6.0.0","icss-utils":"^4.1.1","loader-utils":"^2.0.0","schema-utils":"^2.7.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^2.2.0","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.3"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^26.1.0","sass":"^1.26.10","husky":"^4.2.5","memfs":"^3.2.0","eslint":"^7.5.0","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^4.44.1","es-check":"^5.1.0","prettier":"^2.0.5","cross-env":"^7.0.2","@babel/cli":"^7.10.5","babel-jest":"^26.1.0","strip-ansi":"^6.0.0","url-loader":"^4.1.0","@babel/core":"^7.11.4","file-loader":"^6.0.0","less-loader":"^6.2.0","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","sass-loader":"^9.0.2","style-loader":"^1.2.1","stylus-loader":"^3.0.2","postcss-loader":"^3.0.0","@commitlint/cli":"^10.0.0","standard-version":"^9.0.0","@babel/preset-env":"^7.10.4","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.0","eslint-config-prettier":"^6.11.0","mini-css-extract-plugin":"^0.10.0","@webpack-contrib/defaults":"^6.3.0","@commitlint/config-conventional":"^10.0.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_4.2.2_1598287077287_0.4228252337787184","host":"s3://npm-registry-packages"}},"0.1.0":{"name":"css-loader","version":"0.1.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.1.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"5f3243710fdf7f4c13ba4a6baf37045294c9a991","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.1.0.tgz","integrity":"sha512-hbHlQHqurQHowsDtlXNo7kdt1YicAewsSH1I12SBz0tL/7GhbM2bFzImOtEFr8Ra+38uJKeHPkYL0kF4xheWCg==","signatures":[{"sig":"MEUCIAVmGoSIYpocsCAk7/0K3QR/jnJKR4rHu11dN3/IbKvwAiEAkdZXBD6arNBoMjVZsmPCzK0tnFDcLFm0+bYkmvJPUQE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"engines":{"node":"*"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.1.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"v0.6.11","dependencies":{"csso":"1.2.x"},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true,"optionalDependencies":{}},"0.27.2":{"name":"css-loader","version":"0.27.2","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.27.2","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"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"1522fafc8dd2323414355e304b6f92a96cef7f40","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.27.2.tgz","integrity":"sha512-LGp2fbLHj9XFFcL/nFERB0FoK/flVD1xED1vcAKTjSXxjsqhwWXNygXSoDqCQ1bTuzA0OhmqZ4ObuxUKikJwnw==","signatures":[{"sig":"MEUCIQCveb3XxD30QaZiTRNRxu1OPao48CqbWtRtA0VtZND9bgIgUdnAGMnf2efPux3li8PCdMyeCVfQAkraGr9LGR//jp4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","locals.js","lib"],"_shasum":"1522fafc8dd2323414355e304b6f92a96cef7f40","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"gitHead":"ee7234bb3c7d24b4faea9229a7b6b3e5c0b3c00e","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"yarn run standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"bebraw","email":"bebraw@gmail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"3.10.10","description":"css loader module for webpack","directories":{},"_nodeVersion":"6.9.1","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"^1.0.2","object-assign":"^4.0.1","source-list-map":"^0.1.7","babel-code-frame":"^6.11.0","lodash.camelcase":"^4.3.0","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.27.2.tgz_1489343254588_0.80490597570315","host":"packages-12-west.internal.npmjs.com"}},"3.0.0":{"name":"css-loader","version":"3.0.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@3.0.0","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"bdd48a4921eefedf1f0a55266585944d4e5efc63","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-3.0.0.tgz","fileCount":16,"integrity":"sha512-WR6KZuCkFbnMhRrGPlkwAA7SSCtwqPwpyXJAPhotYkYsc0mKU9n/fu5wufy4jl2WhBw9Ia8gUQMIp/1w98DuPw==","signatures":[{"sig":"MEUCIQCj2LT7BDbNmeMtgI0zFO4SQIJHzRFz8dzrtB6zeicq5QIgF0D4csG+gidrBT6IXOl9sxrQyrrb3C4df3+KljxcBD8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":74141,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/6IGCRA9TVsSAnZWagAArFoP/3S7axWD7SRrErAO2xYC\nAaEyG0Qer8dDqH3Kb08gVAsGRQVTQcW+nug9a5esAncn6EPUokrx0H+h4MDL\nnhbYol+aWykU9HPwsoZVuyAag4rIEkR+jQm7LDK20hL56V1f2BNCdeRJFXTd\nQYUtd52xUEaoH1/wm+lkkGibyJpkt7mCZP/k8NJXkvYF1BkPGxTuo2eQYTxQ\nXYWGnfTPUtA2AgY1NZAxGi/tQd+ZR6irW39au2CQhLJsC6EOxk6Efu/zYHn+\nzuLN/2brmRVxI535td5hu3BoBMU5vJn3evy9Snut/6m9L9ou/Uq+kB+P+rbR\nkWV7alKYPeI5EI6f9FxWg8wei9xDJBpYVSx1a4fctai5D4kvGHcnQrS2TD6O\n26SBpTbg6HHdxM3xciHRE1S372NkzGQ2mqX2sVLaZvTNSA1ioZYVX7PYEf2y\neIs0eNcvp7PtEyrgBb1/Sxy0zo0e6+7NkxY/oDWQHcHfKLpcAjynlLpkq9Sh\n9cr2At0yqfYY5SC78FrNACWp9gldFIgK8hDpuGOW5IhCgJ5Yofjek3BUGaEb\nx1Wa98YORRnEsK55VLb2G2z8I/Pp08NIINvVJ4qRVNRsCPzQXDmok7qDc2vO\nsomTFdqRSsHmEYS4hhAIc/N2ImTJ5DOlCQ4V6lAJvxYTjET44sHVS1d1g756\nuPi7\r\n=u/wm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 8.9.0"},"gitHead":"c4b7f715a81d06858778e54a4fb78258d48a1426","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"cross-env NODE_ENV=test npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --ignore \"src/**/*.test.js\" --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache src test","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"cross-env NODE_ENV=test jest --watch","lint:prettier":"prettier \"{**/*,*}.{js,json,md,yml,css}\" --list-different","test:coverage":"cross-env NODE_ENV=test jest --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.9.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","postcss":"^7.0.17","camelcase":"^5.3.1","icss-utils":"^4.1.1","loader-utils":"^1.2.3","schema-utils":"^1.0.0","normalize-path":"^3.0.0","postcss-value-parser":"^4.0.0","postcss-modules-scope":"^2.1.0","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"^4.1.1","jest":"^24.8.0","sass":"^1.21.0","husky":"^2.4.0","eslint":"^5.16.0","del-cli":"^2.0.0","webpack":"^4.33.0","es-check":"^5.0.0","prettier":"^1.18.2","cross-env":"^5.2.0","memory-fs":"^0.4.1","@babel/cli":"^7.4.4","babel-jest":"^24.8.0","jest-junit":"^6.4.0","strip-ansi":"^5.2.0","@babel/core":"^7.4.5","file-loader":"^4.0.0","lint-staged":"^8.2.0","npm-run-all":"^4.1.5","sass-loader":"^7.1.0","postcss-loader":"^3.0.0","@commitlint/cli":"^8.0.0","standard-version":"^6.0.1","@babel/preset-env":"^7.4.5","postcss-preset-env":"^6.6.0","eslint-plugin-import":"^2.17.3","eslint-config-prettier":"^4.3.0","@webpack-contrib/defaults":"^5.0.0","commitlint-azure-pipelines-cli":"^1.0.2","@commitlint/config-conventional":"^8.0.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_3.0.0_1560257029389_0.04366736328714227","host":"s3://npm-registry-packages"}},"3.4.1":{"name":"css-loader","version":"3.4.1","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@3.4.1","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"dfb7968aa9bffb26bd20375afdffe77d5a234b77","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-3.4.1.tgz","fileCount":16,"integrity":"sha512-+ybmv7sVxxNEenQhkifQDvny/1iNQM7YooJbSfVUdQQvisyg1aKIqgGjCjoFSyVLJMp17z9rfZFQaR5HGHcMbw==","signatures":[{"sig":"MEQCIAfs7dEFu8OBwUqXKmBUupZW8spbbUru8dQ2R5KI/EPTAiBHcwaNQ13MTs3lufWExWB3srVTsP6K/AELLosaJe7pYA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":86156,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeD2ABCRA9TVsSAnZWagAAxMkP/ReWbfbB6CGgXkV4xnrJ\nD9WlIh4LXjjVUQexvmWHW+kwpY86FJJawH7cp20cymKaOQ0AMdqrx+aIFW4g\n35u8/eFNav9YShijpuC9W4424tWhEEce0qFB9ySneKfuZgGlK4/U9GEhk7Oi\nv2Z/0ZvYkOaeskjtHopci7ppLTHtx8KTi3TUG5rVdAYcxFkdWzdVDDDRJuSJ\npDX9iNvMKe1/i6X3jltitKWKLJdcjyZYDr4SxIH2F17sKN+9nZ+tfNbA6mag\nhNZVWbXxdn6BV98gDuAMNbXGG0NjP7S5COR3bLDTawN82ZyWPSF+qdK7o2o3\nGwnLaXYGCL0J3rtv85SKEDwod6fJ+JGLFNl1mL+onoWU67Xho/Q/jotCvBhM\nGgWPhAkYMEekQ5SJtC2thIEP8lTa9mRB9a7Qe7VRtaHXydl8oHu8CvBCf/o7\nIls7+iASdiibJ8ogMO/CLMQbydGGDN090/FSfRDt1BnhfR7ubn19Mr5Re7Xj\n57cmcUy+dtOw2tTTuMfYK0sLSjdaFqRk1HmiwUGfBD64ijfQabLCe89O+gFb\nFTQmxVRPyk6qYYHX6N4V+f7kU/HwIhrLp56MMAGGz93S4Htg//ijEl5+aYGU\nPXo1Sp15VLbUzHKhEUZN/xPWGAzrEN7hFFbOonLqDkWxk3lQ29XCZj0nPuu1\nSwuw\r\n=xKBZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 8.9.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"7c9f47bee36579db366d69dae3af3c0bfbef82ce","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.13.4","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","postcss":"^7.0.23","camelcase":"^5.3.1","icss-utils":"^4.1.1","loader-utils":"^1.2.3","schema-utils":"^2.6.0","normalize-path":"^3.0.0","postcss-value-parser":"^4.0.2","postcss-modules-scope":"^2.1.1","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^24.9.0","sass":"^1.23.7","husky":"^3.1.0","memfs":"^3.0.1","eslint":"^6.7.1","del-cli":"^3.0.0","webpack":"^4.41.3","es-check":"^5.1.0","prettier":"^1.19.1","cross-env":"^6.0.3","@babel/cli":"^7.7.4","babel-jest":"^24.9.0","jest-junit":"^10.0.0","strip-ansi":"^6.0.0","url-loader":"^3.0.0","@babel/core":"^7.7.4","file-loader":"^5.0.2","lint-staged":"^9.5.0","npm-run-all":"^4.1.5","sass-loader":"^8.0.0","postcss-loader":"^3.0.0","@commitlint/cli":"^8.2.0","standard-version":"^7.0.1","@babel/preset-env":"^7.7.4","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.18.2","eslint-config-prettier":"^6.7.0","@webpack-contrib/defaults":"^6.3.0","commitlint-azure-pipelines-cli":"^1.0.2","@commitlint/config-conventional":"^8.2.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_3.4.1_1578065921187_0.48018243670743477","host":"s3://npm-registry-packages"}},"3.4.2":{"name":"css-loader","version":"3.4.2","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@3.4.2","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"d3fdb3358b43f233b78501c5ed7b1c6da6133202","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-3.4.2.tgz","fileCount":16,"integrity":"sha512-jYq4zdZT0oS0Iykt+fqnzVLRIeiPWhka+7BqPn+oSIpWJAHak5tmB/WZrJ2a21JhCeFyNnnlroSl8c+MtVndzA==","signatures":[{"sig":"MEYCIQD651fYdK9YclxZWrOtqlRyxIjXKDA9bHkZhktpzi+UbAIhAPE2Xsoc5THfYcG2dnbX+ir763E8ggNYzFz1iknVvnqu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":86920,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeGK98CRA9TVsSAnZWagAAqU4P/2QG9CU+c4FAN8aXOJf2\nTCxO9+ohYD108hF1g/03iqfLpn04aG82d+A++dthurq+z+wKWuh1MfC6JguN\nVe/Tw1NusnY5W6jbs82MJEAft/ABRb8B0dQ936NyUE4xbpvQjmxSvzD7M0/e\n+DJthN0MqzCK0oNXJztlQqlvhTeQLXctyJqXjZ6ZEjukazkSTH+qwKFNq6XS\nRqqu7SJuWSNgGsjjsnsSzMv1QxNMk8WrcAsOpjdtIcJFJPQA+05amCHw/A/z\nn7nJaYenamJq6XYNsKPItK7fil2Mv5xwd8AXo0FqdP4uyGYvGoB41ADjg6yq\nTrCTwU5tUl2y8wqATYUFZTxmjD0pOL0Q2LsZtkbwmnWUh18A7w96I9TMEC1y\nssUlKLJ1IRJBsw2aLwNX0jXyK31wYs7JFu3EBCKMgIUchlh/QRnWxNoF3xX5\ndELOp57Auw0h2OdJrOK8Ezkre7HmTzr9HCZKd+ki9oE6xqQH79zBQJSzx+At\n5gZy1peDz9rxR1JqDC4ZFIXUOfFjF2D9zusoBrjSsdFjeTuwMhnaXxny9Iyh\n6Jv+/lCwQBNx6nQYuPxRo7KOqwwS4mOZUrbyq/mT17yD5ZDb16GQLlm892+C\nIwa/EGGlHOQ3t0PdLq4XNq9+4KF5/P6EfqeJMb9MVdl6vWBJ+1G9bpJUt6Sc\nBBKl\r\n=kjrg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 8.9.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"229d36a289bcddcba9c35a7078ff5de9226e8c8d","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.13.6","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","postcss":"^7.0.23","camelcase":"^5.3.1","icss-utils":"^4.1.1","loader-utils":"^1.2.3","schema-utils":"^2.6.0","normalize-path":"^3.0.0","postcss-value-parser":"^4.0.2","postcss-modules-scope":"^2.1.1","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^24.9.0","sass":"^1.24.4","husky":"^4.0.6","memfs":"^3.0.3","eslint":"^6.8.0","del-cli":"^3.0.0","webpack":"^4.41.5","es-check":"^5.1.0","prettier":"^1.19.1","cross-env":"^6.0.3","@babel/cli":"^7.7.7","babel-jest":"^24.9.0","jest-junit":"^10.0.0","strip-ansi":"^6.0.0","url-loader":"^3.0.0","@babel/core":"^7.7.7","file-loader":"^5.0.2","lint-staged":"^9.5.0","npm-run-all":"^4.1.5","sass-loader":"^8.0.1","postcss-loader":"^3.0.0","@commitlint/cli":"^8.3.4","standard-version":"^7.0.1","@babel/preset-env":"^7.7.7","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.19.1","eslint-config-prettier":"^6.9.0","@webpack-contrib/defaults":"^6.3.0","commitlint-azure-pipelines-cli":"^1.0.3","@commitlint/config-conventional":"^8.3.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_3.4.2_1578676092233_0.9565556084559244","host":"s3://npm-registry-packages"}},"0.6.11":{"name":"css-loader","version":"0.6.11","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.6.11","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"49fa7b61f811c4d4cf77cf9cddc6c156f0bcd97a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.6.11.tgz","integrity":"sha512-TZHefJOj26rE+xgMrzE8pXC0OJoif3btDVu35U9o/gfiGTUfAuzYgVYWfUin+4ifRm2Mm1tPTbaKMuueYztReQ==","signatures":[{"sig":"MEUCIFGSuPhU0fShT7RhaM8lFfesRbG5TPIfeD0TFeyImk0oAiEApM7KPwCI8C3ulymoPSKzw9AngiIN0NngCeY53VwADpQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"1.4.3","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"~0.2.2"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"0.6.12":{"name":"css-loader","version":"0.6.12","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.6.12","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"96ccf183ab38a5ec88aff8d9f821d478614d1a47","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.6.12.tgz","integrity":"sha512-SqawW3JIOSklEZ8Tkbl9u2Ug8eEtSUlSo7U9japOS1YJZgrLxNYRfyFzC4SYUH7CZqtdY5LD6tDnu3KNJTmSwg==","signatures":[{"sig":"MEUCIQDfzcrvlr/xIj3uJFRseS/uqZINNBkR1ai3SZVbCbTqiQIgZxplbHm/lU7AvgmcwQ9Qjk08Nxg3V1xwRhhIt72wWfQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"1.4.3","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"~0.2.2"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"6.11.0":{"name":"css-loader","version":"6.11.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.11.0","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"33bae3bf6363d0a7c2cf9031c96c744ff54d85ba","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.11.0.tgz","fileCount":15,"integrity":"sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==","signatures":[{"sig":"MEQCIB20krlUyRq0U16z05kdiX4+/jA1DzCu+O0uW183U5zdAiBikRfFCDgEATKjSUst087YpEQhOmYpr3PsFLdrkknHkw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":132770},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"95cf5c58078e0af50f352347a76d9b81749df78e","scripts":{"fix":"npm-run-all -l fix:js fix:prettier","lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","fix:js":"npm run lint:js -- --fix","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","fix:prettier":"npm run lint:prettier -- --write","lint:prettier":"prettier --list-different .","lint:spelling":"cspell \"**/*.*\"","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"10.2.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"18.19.0","dependencies":{"semver":"^7.5.4","postcss":"^8.4.33","icss-utils":"^5.1.0","postcss-value-parser":"^4.2.0","postcss-modules-scope":"^3.2.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.1.0","postcss-modules-local-by-default":"^4.0.5"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.1.1","jest":"^28.1.3","less":"^4.2.0","sass":"^1.69.7","husky":"^7.0.1","memfs":"^3.5.3","cspell":"^6.31.2","eslint":"^8.54.0","stylus":"^0.59.0","del-cli":"^4.0.1","webpack":"^5.89.0","es-check":"^7.1.0","prettier":"^2.8.7","cross-env":"^7.0.3","@babel/cli":"^7.23.4","babel-jest":"^28.1.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.23.7","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^12.5.0","npm-run-all":"^4.1.5","sass-loader":"^12.6.0","style-loader":"^3.3.2","stylus-loader":"^6.1.0","postcss-loader":"^6.2.1","@commitlint/cli":"^16.3.0","standard-version":"^9.5.0","@babel/preset-env":"^7.23.7","postcss-preset-env":"^7.8.3","eslint-plugin-import":"^2.29.0","eslint-config-prettier":"^8.9.0","jest-environment-jsdom":"^28.1.3","mini-css-extract-plugin":"^2.7.5","@commitlint/config-conventional":"^16.2.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0","@rspack/core":"0.x || 1.x"},"peerDependenciesMeta":{"webpack":{"optional":true},"@rspack/core":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.11.0_1712161210065_0.8823979014835381","host":"s3://npm-registry-packages"}},"0.6.10":{"name":"css-loader","version":"0.6.10","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.6.10","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"2cbd568ef8f9bbeeb13d807afeac566d6de7f851","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.6.10.tgz","integrity":"sha512-twtle9P6774SSsnx4MEXPtYiE+F137u70OmGOaWpOtH36jIk1oTHro1eLbkI+Mj+6sXTN6ZZzbRQk4+BzY4H6Q==","signatures":[{"sig":"MEYCIQCbjsjvIzyN9X2luoGbADsEcXm0Qe/yI6aDGlct2Csj3wIhANqK3PYQl9R+bBY3GWLMnlph2/mYxuAsZrR2bDiHQwhh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"1.4.3","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"3.4.0":{"name":"css-loader","version":"3.4.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@3.4.0","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"9fb263436783117a41d014e45e8eaeba54dd6670","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-3.4.0.tgz","fileCount":16,"integrity":"sha512-JornYo4RAXl1Mzt0lOSVPmArzAMV3rGY2VuwtaDc732WTWjdwTaeS19nCGWMcSCf305Q396lhhDAJEWWM0SgPQ==","signatures":[{"sig":"MEYCIQDVsdz/FO8YqHhP36Rug15EW0Ov+j9PsxF8wTBzTgQyMwIhANtZcmW/WIFBRqau5uVVLK3KmAryEHTDm79GSHcO1DTB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85536,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd+ODCCRA9TVsSAnZWagAAtB0P/2jAY5I/bgwWofxngmCI\nj8FYzn5zJF3AYB05gETO+8cSpn0thjLHEzm/rx+/zb1tSdR8d0bRk0KjP592\nNZaIFEwyIO7YYtcoIfXK7whna2AsGQN5mlJIvhcmAWkc51zl4fGOVthawEw5\n07A3OpbQaI+1by/pyjPBiQPKQDHJtUCXtXKY9PS5De8abrswfvX8Xx1VrZD4\nZ0lGpDdMPNJ/YB161DNdbP15QiJ+IGA2unB37S0Kj1jMY+6fD5av+2ieX30w\nobDI1JHcraoTGU9Jz9nYQ7YwUA0YAyjGd3DHBww+5zr8ykeUA2V7zz1OU8nZ\npMO6o2ecI36GfmMe8d39ckPZoiRBgk9UgvSyDW635TIHSeas/UBZNrNdZPqQ\nhTEQWbtVo1UCQjNS8dx7s30EBWLtOuqmom6qiKPvt34rG95a8CPg7w1DSiQn\nfniuarhoJjEW68yPU0LFvA6R1n5/IdddHL0LYwEH8lzBnhUwgk6aFFEMA+K+\nQLxH12e6gE9TaVnLDeBU/yk50yoPZIUr5m+ljpSiO9YHHyVh/HQ+d8G1r7Lt\n/BaE6vZU1M+jiYw+Nrw2RZPxhg5n0XN7wj2jnFAIMjBJfJjnv7Pjcy6+uKiz\nW0ngyrhyVaGME9WVZLZRYOqqheQNCXcMdQM0JOifqP60abL0D6WMj/PFHHOj\nxrT9\r\n=SrPs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 8.9.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"b95a779577ad12a491803ee33b1c3ce37f42477b","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.13.4","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","postcss":"^7.0.23","camelcase":"^5.3.1","icss-utils":"^4.1.1","loader-utils":"^1.2.3","schema-utils":"^2.6.0","normalize-path":"^3.0.0","postcss-value-parser":"^4.0.2","postcss-modules-scope":"^2.1.1","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^24.9.0","sass":"^1.23.7","husky":"^3.1.0","memfs":"^3.0.1","eslint":"^6.7.1","del-cli":"^3.0.0","webpack":"^4.41.3","es-check":"^5.1.0","prettier":"^1.19.1","cross-env":"^6.0.3","@babel/cli":"^7.7.4","babel-jest":"^24.9.0","jest-junit":"^10.0.0","strip-ansi":"^6.0.0","url-loader":"^3.0.0","@babel/core":"^7.7.4","file-loader":"^5.0.2","lint-staged":"^9.5.0","npm-run-all":"^4.1.5","sass-loader":"^8.0.0","postcss-loader":"^3.0.0","@commitlint/cli":"^8.2.0","standard-version":"^7.0.1","@babel/preset-env":"^7.7.4","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.18.2","eslint-config-prettier":"^6.7.0","@webpack-contrib/defaults":"^6.3.0","commitlint-azure-pipelines-cli":"^1.0.2","@commitlint/config-conventional":"^8.2.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_3.4.0_1576591553670_0.9970612060711099","host":"s3://npm-registry-packages"}},"0.15.3":{"name":"css-loader","version":"0.15.3","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.15.3","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"68f4d0e92d9060b33056c369414f94a289a1d285","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.15.3.tgz","integrity":"sha512-9x5KWWHRsU6aM8tnpyP76327S2/1VLDWrds6CjhEHWwgd+t/6AA5c/R21S/h4yuNS1E7qx9AdhUh1VSaMI8hBg==","signatures":[{"sig":"MEQCIHkWCFy87PvhivKoQPs5YQnscI9htfuJdCHpwU9Zr6luAiBAQJ4q4phGUk3tRPcvNipJhYIkrKq/bQm5cAQ/F7+vYg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"68f4d0e92d9060b33056c369414f94a289a1d285","gitHead":"06fb990f53cd82d356ca1f80fbc710e38521c1fc","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.11.2","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.10.36","dependencies":{"cssnano":"^1.4.2","postcss":"^4.1.11","loader-utils":"~0.2.2","source-list-map":"^0.1.4","postcss-modules-scope":"0.0.7","css-selector-tokenizer":"^0.5.1","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.10"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"7.1.0":{"name":"css-loader","version":"7.1.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@7.1.0","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"6eb163c1fa78fed32272161fec7ffe6c956bb727","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-7.1.0.tgz","fileCount":15,"integrity":"sha512-VFNj47MAG84MqYDdh9puJG0h98Xs7gEYaX0aeGkfjYqBLB0seOE325sVbqWwaNu3hMZwEP4bB+F4gvF+A63qMA==","signatures":[{"sig":"MEYCIQDNJTy31RWvhqmFCks4pxylcGQRtcrd9qiwLAnUzLoLRAIhAK1BF/5E6qlAtFnY5EqVIi3YfSK0wL3Jo+z2prhFwnHS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140449},"main":"dist/cjs.js","engines":{"node":">= 18.12.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"b162e252eef254d6c8271dad1751690ac4214c34","scripts":{"fix":"npm-run-all -l fix:js fix:prettier","lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","fix:js":"npm run lint:js -- --fix","lint:js":"eslint --cache .","prepare":"husky && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","fix:prettier":"npm run lint:prettier -- --write","lint:prettier":"prettier --cache --list-different .","lint:spelling":"cspell --cache --no-must-find-files --quiet \"**/*.*\"","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"10.2.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"18.19.0","dependencies":{"semver":"^7.5.4","postcss":"^8.4.33","icss-utils":"^5.1.0","postcss-value-parser":"^4.2.0","postcss-modules-scope":"^3.2.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.1.0","postcss-modules-local-by-default":"^4.0.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.7.0","less":"^4.2.0","sass":"^1.69.7","husky":"^9.0.11","memfs":"^4.8.1","cspell":"^8.6.1","eslint":"^8.54.0","stylus":"^0.63.0","del-cli":"^5.1.0","webpack":"^5.89.0","es-check":"^7.1.0","prettier":"^3.2.5","cross-env":"^7.0.3","@babel/cli":"^7.23.4","babel-jest":"^29.7.0","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.23.7","file-loader":"^6.2.0","less-loader":"^12.2.0","lint-staged":"^15.2.2","npm-run-all":"^4.1.5","sass-loader":"^14.1.1","style-loader":"^3.3.4","stylus-loader":"^8.1.0","postcss-loader":"^8.1.1","@commitlint/cli":"^19.2.1","standard-version":"^9.5.0","@babel/preset-env":"^7.23.7","postcss-preset-env":"^9.5.4","eslint-plugin-import":"^2.29.0","eslint-config-prettier":"^9.1.0","jest-environment-jsdom":"^29.7.0","mini-css-extract-plugin":"^2.7.5","@commitlint/config-conventional":"^19.1.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.27.0","@rspack/core":"0.x || 1.x"},"peerDependenciesMeta":{"webpack":{"optional":true},"@rspack/core":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/css-loader_7.1.0_1712599789280_0.3849145274751171","host":"s3://npm-registry-packages"}},"0.15.2":{"name":"css-loader","version":"0.15.2","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.15.2","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"5bd9972c04085066f99a95c2fe2a93e784dd9447","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.15.2.tgz","integrity":"sha512-tel/rkPMq408V6zfbEXR9pBWD7w4oiDiVOuPGRyk2kymGgmD5WTzUdQnsWJGuA8OMcn4GdAX7LkJzhAAStM/aQ==","signatures":[{"sig":"MEUCIHi5pKxNoPQMUGZbriacdh5Xx02PKX+4E0q2xKzAbYR8AiEAoY0SvkBl7qY1gd/GRp3kxFHMuLl81yNZNRHK245CPz4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"5bd9972c04085066f99a95c2fe2a93e784dd9447","gitHead":"446b6ef0ef756e4a41b37c1cabc5746083fcfc84","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.10.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.4","dependencies":{"cssnano":"^1.4.2","postcss":"^4.1.11","loader-utils":"~0.2.2","source-list-map":"^0.1.4","postcss-modules-scope":"0.0.7","css-selector-tokenizer":"^0.5.1","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.10"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"7.1.1":{"name":"css-loader","version":"7.1.1","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@7.1.1","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"de4163c0cb765c03d7957eb9e0a49c7f354948c7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-7.1.1.tgz","fileCount":15,"integrity":"sha512-OxIR5P2mjO1PSXk44bWuQ8XtMK4dpEqpIyERCx3ewOo3I8EmbcxMPUc5ScLtQfgXtOojoMv57So4V/C02HQLsw==","signatures":[{"sig":"MEQCIEJu8X5u61yqZuV2E74ONkNssAUG2fa6oC7WdxpPQoGhAiAKspd2gDk8eWVXhDiTDnhCen9LhvZczjB6k02Ytgauhw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140777},"main":"dist/cjs.js","engines":{"node":">= 18.12.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"5c717c986784f20307aaa66e46c8805b84f22cc8","scripts":{"fix":"npm-run-all -l fix:js fix:prettier","lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","fix:js":"npm run lint:js -- --fix","lint:js":"eslint --cache .","prepare":"husky && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","fix:prettier":"npm run lint:prettier -- --write","lint:prettier":"prettier --cache --list-different .","lint:spelling":"cspell --cache --no-must-find-files --quiet \"**/*.*\"","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"10.2.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"18.19.0","dependencies":{"semver":"^7.5.4","postcss":"^8.4.33","icss-utils":"^5.1.0","postcss-value-parser":"^4.2.0","postcss-modules-scope":"^3.2.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.1.0","postcss-modules-local-by-default":"^4.0.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.7.0","less":"^4.2.0","sass":"^1.69.7","husky":"^9.0.11","memfs":"^4.8.1","cspell":"^8.6.1","eslint":"^8.54.0","stylus":"^0.63.0","del-cli":"^5.1.0","webpack":"^5.89.0","es-check":"^7.1.0","prettier":"^3.2.5","cross-env":"^7.0.3","@babel/cli":"^7.23.4","babel-jest":"^29.7.0","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.23.7","file-loader":"^6.2.0","less-loader":"^12.2.0","lint-staged":"^15.2.2","npm-run-all":"^4.1.5","sass-loader":"^14.1.1","style-loader":"^3.3.4","stylus-loader":"^8.1.0","postcss-loader":"^8.1.1","@commitlint/cli":"^19.2.1","standard-version":"^9.5.0","@babel/preset-env":"^7.23.7","postcss-preset-env":"^9.5.4","eslint-plugin-import":"^2.29.0","eslint-config-prettier":"^9.1.0","jest-environment-jsdom":"^29.7.0","mini-css-extract-plugin":"^2.7.5","@commitlint/config-conventional":"^19.1.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.27.0","@rspack/core":"0.x || 1.x"},"peerDependenciesMeta":{"webpack":{"optional":true},"@rspack/core":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/css-loader_7.1.1_1712761982702_0.6833729392111629","host":"s3://npm-registry-packages"}},"0.15.1":{"name":"css-loader","version":"0.15.1","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.15.1","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"4fcabe1d0aab596127870ab253cab94310778ef1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.15.1.tgz","integrity":"sha512-hTIPYOe3ORlU0u6pz3G76Cv6il3dC1/0DgdfMzk9u6INKjFfu7kftGUdhpqjIaetgLb/S8H9NBy4i4sBzSAhfA==","signatures":[{"sig":"MEUCIQCcX/gwG0BaLmhTAET78OvLNdZ2N/EZZYhrDUgnkVtp7QIgBmDDiMPhibw3xdols8IYFJXdtARsNCAIRzFCZIhmr6k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"4fcabe1d0aab596127870ab253cab94310778ef1","gitHead":"ec7e8848303c3b43c0944a18fc7489e09d7088a8","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.10.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.2","dependencies":{"cssnano":"^1.4.2","postcss":"^4.1.11","loader-utils":"~0.2.2","source-list-map":"^0.1.4","postcss-modules-scope":"0.0.7","css-selector-tokenizer":"^0.5.1","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.10"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"7.1.2":{"name":"css-loader","version":"7.1.2","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@7.1.2","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"64671541c6efe06b0e22e750503106bdd86880f8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-7.1.2.tgz","fileCount":15,"integrity":"sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==","signatures":[{"sig":"MEUCIQD6Z+WiYdDrpyKEtQENNX5ngslzE4xDLNHKDzrF19bsWQIgcguGIRzs8y4gsLdGdHJH0BEMDeCrrUMqonmDxd/QqPw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":141386},"main":"dist/cjs.js","engines":{"node":">= 18.12.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"d5ba44ae2e0bf20d31fe43fd7a2c467937dde97d","scripts":{"fix":"npm-run-all -l fix:js fix:prettier","lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","fix:js":"npm run lint:js -- --fix","lint:js":"eslint --cache .","prepare":"husky && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","fix:prettier":"npm run lint:prettier -- --write","lint:prettier":"prettier --cache --list-different .","lint:spelling":"cspell --cache --no-must-find-files --quiet \"**/*.*\"","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"10.2.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"18.19.0","dependencies":{"semver":"^7.5.4","postcss":"^8.4.33","icss-utils":"^5.1.0","postcss-value-parser":"^4.2.0","postcss-modules-scope":"^3.2.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.1.0","postcss-modules-local-by-default":"^4.0.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.7.0","less":"^4.2.0","sass":"^1.76.0","husky":"^9.0.11","memfs":"^4.9.2","cspell":"^8.7.0","eslint":"^8.54.0","stylus":"^0.63.0","del-cli":"^5.1.0","webpack":"^5.89.0","es-check":"^7.1.0","prettier":"^3.2.5","cross-env":"^7.0.3","@babel/cli":"^7.24.5","babel-jest":"^29.7.0","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.24.5","file-loader":"^6.2.0","less-loader":"^12.2.0","lint-staged":"^15.2.2","npm-run-all":"^4.1.5","sass-loader":"^14.2.1","style-loader":"^3.3.4","stylus-loader":"^8.1.0","postcss-loader":"^8.1.1","@commitlint/cli":"^19.3.0","standard-version":"^9.5.0","@babel/preset-env":"^7.24.5","postcss-preset-env":"^9.5.9","eslint-plugin-import":"^2.29.0","eslint-config-prettier":"^9.1.0","jest-environment-jsdom":"^29.7.0","mini-css-extract-plugin":"^2.9.0","@commitlint/config-conventional":"^19.2.2","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.27.0","@rspack/core":"0.x || 1.x"},"peerDependenciesMeta":{"webpack":{"optional":true},"@rspack/core":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/css-loader_7.1.2_1716388240104_0.5110529190702042","host":"s3://npm-registry-packages"}},"0.15.0":{"name":"css-loader","version":"0.15.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.15.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"ca63daab9b869dbc8ff571554940b65e4f463845","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.15.0.tgz","integrity":"sha512-9BI+9tVHknYvCjbTsgF/5aQ6p+tTBptj/DXqrlb6vAnYnE6dm2TNM3gB5YRB0cxDluQU5ewJX3z7h1YzONhRtg==","signatures":[{"sig":"MEYCIQCAt1wZW/p5hiDgLHDCYv8+wK4O/XdP1itTI7WRPAHtkAIhAL/ph1xyeJ9W68COs6IXFP0W8cP4PayXGseWsKNDJs+v","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"ca63daab9b869dbc8ff571554940b65e4f463845","gitHead":"0d366a66580a019cb20ba80467c08dc0521ab181","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.10.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.2","dependencies":{"cssnano":"^1.4.2","postcss":"^4.1.11","loader-utils":"~0.2.2","source-list-map":"^0.1.4","postcss-modules-scope":"0.0.7","css-selector-tokenizer":"^0.5.1","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.10"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"7.1.3":{"name":"css-loader","version":"7.1.3","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@7.1.3","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"c0de715ceabe39b8531a85fcaf6734a430c4d99a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-7.1.3.tgz","fileCount":15,"integrity":"sha512-frbERmjT0UC5lMheWpJmMilnt9GEhbZJN/heUb7/zaJYeIzj5St9HvDcfshzzOqbsS+rYpMk++2SD3vGETDSyA==","signatures":[{"sig":"MEYCIQCSENkwsHUcONJp7YQlzxY2iI9lRyudLfKOvApjq+UTPQIhALCWhWuP9xZpkMNT3gAh1WSEsVhYqc+OgU0BenAvgndA","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":142097},"main":"dist/cjs.js","engines":{"node":">= 18.12.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"b2b2de789d69fbfc02832d48b4f1abefadbcbbcf","scripts":{"fix":"npm-run-all -l fix:js fix:prettier","lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","fix:js":"npm run lint:js -- --fix","lint:js":"eslint --cache .","prepare":"husky && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=main","test:watch":"npm run test:only -- --watch","fix:prettier":"npm run lint:prettier -- --write","lint:prettier":"prettier --cache --list-different .","lint:spelling":"cspell --cache --no-must-find-files --quiet \"**/*.*\"","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"11.6.2","description":"css loader module for webpack","directories":{},"_nodeVersion":"24.11.1","dependencies":{"semver":"^7.6.3","postcss":"^8.4.40","icss-utils":"^5.1.0","postcss-value-parser":"^4.2.0","postcss-modules-scope":"^3.2.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.1.0","postcss-modules-local-by-default":"^4.0.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^30.0.0","less":"^4.2.0","sass":"^1.77.8","husky":"^9.1.4","memfs":"^4.11.1","cspell":"^8.13.1","eslint":"^8.54.0","stylus":"^0.63.0","del-cli":"^5.1.0","webpack":"^5.93.0","es-check":"^7.2.1","prettier":"^3.3.3","cross-env":"^7.0.3","@babel/cli":"^7.24.8","babel-jest":"^30.0.0","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.25.2","file-loader":"^6.2.0","less-loader":"^12.2.0","lint-staged":"^15.2.8","npm-run-all":"^4.1.5","sass-loader":"^14.2.1","style-loader":"^3.3.4","stylus-loader":"^8.1.0","postcss-loader":"^8.1.1","@commitlint/cli":"^19.3.0","standard-version":"^9.5.0","@babel/preset-env":"^7.25.3","postcss-preset-env":"^9.6.0","eslint-plugin-import":"^2.29.0","eslint-config-prettier":"^9.1.0","jest-environment-jsdom":"^30.0.0","mini-css-extract-plugin":"^2.9.0","@commitlint/config-conventional":"^19.2.2","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.27.0","@rspack/core":"0.x || 1.x"},"peerDependenciesMeta":{"webpack":{"optional":true},"@rspack/core":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/css-loader_7.1.3_1769529897966_0.9401598239928985","host":"s3://npm-registry-packages-npm-production"}},"0.11.2":{"name":"css-loader","version":"0.11.2","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.11.2","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"d038d8c3bc4cb4e56e8ab38ea3bd398623668962","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.11.2.tgz","integrity":"sha512-KTFbhNsnKVHR5GCuULHLTVcZ0pjj8TVFAKvxLNqoDp+r0Ugtekh6obefqnQKJGsbUmEDecRnESPqVzHBC7MdHg==","signatures":[{"sig":"MEYCIQC/6bq1s2eF1fyzu5lR4VOU+J7dl155PZLUg5FFhoLwJAIhAIpVCBonshVx4K5aKBwHCsbCaaZvVbR7r2w4nFLQxF54","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"d038d8c3bc4cb4e56e8ab38ea3bd398623668962","gitHead":"2d8797db96034521d3984a7884fb4511d3377b70","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"2.7.4","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.2","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"}},"0.11.1":{"name":"css-loader","version":"0.11.1","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.11.1","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"8a26e0e69f1a1d54f65be856c0bbada9662d1f6b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.11.1.tgz","integrity":"sha512-IZ2qqy/aFIOxWUKCBneqtNmkMSXCg/GQhGbNQSoz/uZBr9cOF1lXC42tiY3Ol9rz3aaPwrWvoABwCaVvqw/m3Q==","signatures":[{"sig":"MEUCID+ywQAf4Y9dKj60GFVL99OSBLmDcQAYfAdE8AgfKar6AiEA8CKpArFqaH+tDe67Fuh29Z66PGhVq5zBhEpI9tYFzzQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"8a26e0e69f1a1d54f65be856c0bbada9662d1f6b","gitHead":"4d4269c14a26e8150ba0eccab54d863c7d8cae39","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"2.7.4","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.2","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"}},"0.11.0":{"name":"css-loader","version":"0.11.0","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.11.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"57e3fa63e791e10a36794b1e1f9af2abbb7ac6be","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.11.0.tgz","integrity":"sha512-v86/3Lci9KWbF1H4rm3i5B4AKwlKfxreMc+fBTxCtW8RusEjvvCjm6Afs8o67Hd/kkRNFKdH4orJxCXW0S7p+Q==","signatures":[{"sig":"MEYCIQCIYVMqVq/NWA84+qgCvWXWq7zgKEw8LTDWtYcwvpoDdAIhAIwrWbVyC7JYdbkzuoF6jjbyPgg6YzS+6jkPJw1HX5r9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"57e3fa63e791e10a36794b1e1f9af2abbb7ac6be","gitHead":"397397dcacafda95e3fd2d179d2c95f9a00fbc0e","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"2.7.4","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.2","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"}},"0.15.6":{"name":"css-loader","version":"0.15.6","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.15.6","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"2287dee284829ebfb81fac0b294da729b3bfa144","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.15.6.tgz","integrity":"sha512-DgyAT/6ss+muCMexkvwFJQImpCH7SAp5d59uQk8HtUG8ZUn6jyJ0HA8ncnIzHoUPRLlJkuSdtd5Hay+PxtcIjw==","signatures":[{"sig":"MEYCIQCH2QfQN17u3kWCvytHgUhUJmVcZ4B8Qd+uQru3dFiibAIhALVus3q9dKU1we7kxhfSyonO4wRfPyrAaiJxnJQ1HkGg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"2287dee284829ebfb81fac0b294da729b3bfa144","gitHead":"5bf1893a980144b4a2ab88b387914f332a0c0bf7","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.10.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.4","dependencies":{"cssnano":"^2.1.0","postcss":"^4.1.11","loader-utils":"~0.2.2","source-list-map":"^0.1.4","postcss-modules-scope":"0.0.8","css-selector-tokenizer":"^0.5.1","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.11"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"0.15.5":{"name":"css-loader","version":"0.15.5","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.15.5","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"9fedcd198c7460f7141f57fe952b4246c6795982","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.15.5.tgz","integrity":"sha512-4yoZM8twuvPAlC4hrzsp3Bd16ZNpFQjHDbxAsGpezzQixLQSCOwh/l65qWTN8M+2aOhdWXzkdESXtrGzpEjSvQ==","signatures":[{"sig":"MEYCIQCxUiFJJ+zRrpzVoqrv1m5LX0O6CGZqFVo0zODd018ukgIhAOm+OYKHztFyWNTkUdq4q+9/mTsrEJZqxFYRvQ9KOOOj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"9fedcd198c7460f7141f57fe952b4246c6795982","gitHead":"05eb97493688b6ca38dc6d0e82d0b7aed3e36b57","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.10.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.4","dependencies":{"cssnano":"^1.4.2","postcss":"^4.1.11","loader-utils":"~0.2.2","source-list-map":"^0.1.4","postcss-modules-scope":"0.0.7","css-selector-tokenizer":"^0.5.1","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.10"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"0.15.4":{"name":"css-loader","version":"0.15.4","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.15.4","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"d84d045b1e639bd7aea1f56adfe7d50d676df672","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.15.4.tgz","integrity":"sha512-vR/Yphy8RkpKtA4F5EmoAQaItkXazJI4/DWZxkd5k44uybBfFBU0quJm7nxw9HV/PeGR6mHMd9nPeUD4p9cbpw==","signatures":[{"sig":"MEUCIG6bObDGJBcQoD4rfTlcD+flA00Nr8u80aFyFTPbkuDAAiEAo2NtYONG6m7aOuUD7QeOxaIDzKrk+R6lkB08DGa50MU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"d84d045b1e639bd7aea1f56adfe7d50d676df672","gitHead":"c9030e7466a7e46b31c0350c74b03d66ac851041","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.11.2","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.10.36","dependencies":{"cssnano":"^1.4.2","postcss":"^4.1.11","loader-utils":"~0.2.2","source-list-map":"^0.1.4","postcss-modules-scope":"0.0.7","css-selector-tokenizer":"^0.5.1","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.10"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"0.19.0":{"name":"css-loader","version":"0.19.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.19.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"7383db6a20fcc42395bada4b8abc25c2735577b8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.19.0.tgz","integrity":"sha512-UVm/T+eLNTFGgEHhtFkX+CB4qw269tGVQWJxQhouD3M0s+YNbagDhTVIrazV82mcwWB4YN1v3XhKerdF0aR0sg==","signatures":[{"sig":"MEUCIQCyQpCv/kkEX2EfHS6pYwCOlfdGzr3B3CFS0MDSb86OIAIgJ9p5JaDTi9+c2wBv9Ehf17GrF8m4zVlzDohYuJV61rY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"7383db6a20fcc42395bada4b8abc25c2735577b8","gitHead":"54cb5ec1af541585f75ad90ea0d20e1eaf8d984e","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.10.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.4","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"~0.2.2","source-list-map":"^0.1.4","postcss-modules-scope":"1.0.0-beta2","css-selector-tokenizer":"^0.5.1","postcss-modules-extract-imports":"1.0.0-beta2","postcss-modules-local-by-default":"1.0.0-beta1"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"6.3.0":{"name":"css-loader","version":"6.3.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.3.0","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"334d3500ff0a0c14cfbd4b0670088dbb5b5c1530","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.3.0.tgz","fileCount":17,"integrity":"sha512-9NGvHOR+L6ps13Ilw/b216++Q8q+5RpJcVufCdW9S/9iCzs4KBDNa8qnA/n3FK/sSfWmH35PAIK/cfPi7LOSUg==","signatures":[{"sig":"MEUCID2+E0h2Fqt0JPn+5V+4ENrIvmxyrROPZE/MGba5GCJZAiEA0J/keY8+RrLXLwLlleebLVqBIES+l6Bu/v7juKz0wGU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":125863},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"b29d3899f8130e77e1ad6cf4c4c2fe18116abcd1","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.20.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.22.6","dependencies":{"semver":"^7.3.5","postcss":"^8.2.15","icss-utils":"^5.1.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^27.0.6","less":"^4.1.1","sass":"^1.35.2","husky":"^7.0.1","memfs":"^3.2.2","eslint":"^7.30.0","stylus":"^0.55.0","del-cli":"^4.0.1","webpack":"^5.45.1","es-check":"^6.0.0","prettier":"^2.3.2","cross-env":"^7.0.3","@babel/cli":"^7.14.5","babel-jest":"^27.0.6","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.14.6","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^11.0.1","npm-run-all":"^4.1.5","sass-loader":"^12.1.0","style-loader":"^3.1.0","stylus-loader":"^6.1.0","postcss-loader":"^6.1.1","@commitlint/cli":"^13.1.0","standard-version":"^9.3.1","@babel/preset-env":"^7.14.7","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.23.4","eslint-config-prettier":"^8.3.0","mini-css-extract-plugin":"^2.1.0","@commitlint/config-conventional":"^13.1.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.3.0_1631991708595_0.6561866426568073","host":"s3://npm-registry-packages"}},"0.6.8":{"name":"css-loader","version":"0.6.8","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.6.8","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"46d4522f951ad2607802084c5afd4012e5c2599f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.6.8.tgz","integrity":"sha512-15tKDZMTyo9WcCuCCNOBfINc1/ubeNFWpm/EVIaGQGedKJwcN2ZKCmmmN1EzfX4VuPsG/zFr/luRYpcrcBjPpA==","signatures":[{"sig":"MEUCIQDvA++d6ckFV1cxyFstU+hUYE2JU2hw+zJMdCA6LTY5tQIgOHWzj6wyC1gGFTcmQYyU43uG0Z4BOZwnz/PRSlBQUPk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"1.3.17","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"0.6.9":{"name":"css-loader","version":"0.6.9","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.6.9","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"9a439a1272c3ad660373a864aded8123becec8ac","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.6.9.tgz","integrity":"sha512-9CW3ot4kIKxJiXoL8ybUH4D3xYIf4hVtLghp37ibrtvpTlJt6zE/zE+AgPduVRE16wYQSUSX19XCqWairUQlJg==","signatures":[{"sig":"MEUCIE+EMDqYxbCazlM/5MNR9maMesJruT0s0Fo2BQ9Rabp2AiEAi2+8x07nhQTGI+oSj9zuSjp1IA7Tj0NE56/6+UAI6c4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"1.4.3","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"0.6.6":{"name":"css-loader","version":"0.6.6","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.6.6","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"1f1fc625a096e32112e86ae8d5f3bfbef92e62dc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.6.6.tgz","integrity":"sha512-ML36nLex4Q92rEXFp4nj7fXAmv6Y+Hsv0t7rP9srEx02qSBJIUrE9w/VY1PtytetCMoFkPhNJmPYGt4LDJRS3w==","signatures":[{"sig":"MEYCIQD8M6mlCMINVRbgrsjGc6MncEz+4ioio2sG88n01+N31gIhAPucGjL//adWPAtI0YHL2bTez98LJLjgja0eoBAIZc3F","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"_npmVersion":"1.3.17","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"5.1.0":{"name":"css-loader","version":"5.1.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@5.1.0","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"7c39af036c6674712659ca43a43a80d972bff506","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-5.1.0.tgz","fileCount":17,"integrity":"sha512-mFs3Xe2UrzRzL0+ML6e7Q2e/Ozp/WpDcam0l1X+rXgkuFjjsNSrjiyimG6malUOZGVuEjzKp1NqEqN3exG7ZqQ==","signatures":[{"sig":"MEQCIF4kqaCfaSQU3S5Rh5D+wdKhGXXCmjaVs3Q7C0xXyouUAiAl5d3lXiLTZZk4rFI+1z6zyUdQRN7URg9EB9FB0UJKAA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":127372,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgN7jxCRA9TVsSAnZWagAAv0MP+gM2/iinfdGZfexl7E7E\nozZPtPZ2Rv0oVF8EJBqMqggRV+MQ+sd8f5pr5r8ldeFISn7W0V39r4mkPhNz\nuIyWMhKCmqcckPpOxafxEAevh3NlgfYYhtuRRAT0X5UcrHAJTWBN3y33kGtQ\n+tB/+g+rzOthH/HYOiHOCd1rl2GQAfuWKl5U9kHZQ/t+TZrMFfoYu/4Ob92T\nSHLSfUvj3QA75X26HfIE6yu04Qkyv58S/WNJI10Y84Y6XEEkk4+yZvp7nHsS\nuAySdpJNUsQ7kr341fuHXdUedH0A3/U3AmsjcnTMRRXOjacTBt19hY6Yj8Nw\ndVdE9YAop7MhWv3WzQej/ttCuzrdJEONZzWopOEaNKmGO2cKIDwuqhapK5MM\nKDfYIM9ARO9UtqVrWxqxCH6jnKd9yGblEdqY5EgFpJb3SkpxLwdWfr/SzQuo\ns88KxaO0V88mfxUnhqvsg/VMxn063H38AmBj7KAnGYewZtLCHOmzHxUzS/NM\nDQS2MBD32wnt1Z4IWf10acnGU9jzc2yDNNUSfaXP2PJJWDiZ6G9XjBVHn+6G\nNiFY9XkTCyXw5nN6Wk6psXqiFCvtGqk2tjz+ST+CV6dokASmRKwv6+/BtX8c\nuRQtNFL0vRB9Y4/E5mTarkkqEiySbs4kFBxLZLn1di6NgR9zjZVbes0ESAgS\n4HaM\r\n=a5ZG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"f1e0f00472fdd8fc1971c0602665b357b339e3b8","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.5.4","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.20.2","dependencies":{"cssesc":"^3.0.0","semver":"^7.3.4","postcss":"^8.2.6","camelcase":"^6.2.0","icss-utils":"^5.1.0","loader-utils":"^2.0.0","schema-utils":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^26.6.3","less":"^4.1.1","sass":"^1.32.8","husky":"^4.3.8","memfs":"^3.2.0","eslint":"^7.20.0","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^5.23.0","es-check":"^5.2.0","prettier":"^2.1.2","cross-env":"^7.0.3","@babel/cli":"^7.12.17","babel-jest":"^26.6.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.12.17","file-loader":"^6.2.0","less-loader":"^7.1.0","lint-staged":"^10.5.4","npm-run-all":"^4.1.5","sass-loader":"^10.1.0","style-loader":"^2.0.0","stylus-loader":"^4.3.0","postcss-loader":"^4.0.4","@commitlint/cli":"^11.0.0","standard-version":"^9.1.1","@babel/preset-env":"^7.12.17","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.1","eslint-config-prettier":"^7.2.0","mini-css-extract-plugin":"^1.3.8","@webpack-contrib/defaults":"^6.3.0","@commitlint/config-conventional":"^11.0.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_5.1.0_1614264560561_0.9428488731670595","host":"s3://npm-registry-packages"}},"0.6.7":{"name":"css-loader","version":"0.6.7","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.6.7","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"f3316ebb63ecffc43cdb590196033ee46012240b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.6.7.tgz","integrity":"sha512-bPx+mMfgpatIaCu8K2YE46kBGQpXkF0I4wTF3JMv/aj22ptjsIS1iWzoF52Kqv28r55a4Bnc0QeOgToJ1EQBcw==","signatures":[{"sig":"MEUCIQCYqtvASgyfuu5+6kU8f2v0i4M1W+L/AQx2L5ei/LNe4AIgS+VVsQBmjUWByxfdaZVkFVMUMrNmrFIIKN2R6QSd4XA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"1.3.17","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"5.1.1":{"name":"css-loader","version":"5.1.1","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@5.1.1","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"9362d444a0f7c08c148a109596715c904e252879","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-5.1.1.tgz","fileCount":17,"integrity":"sha512-5FfhpjwtuRgxqmusDidowqmLlcb+1HgnEDMsi2JhiUrZUcoc+cqw+mUtMIF/+OfeMYaaFCLYp1TaIt9H6I/fKA==","signatures":[{"sig":"MEQCICRkBrQ2F9srJy1sAQM+tfO4YVmIx5ZK5kSU1uQV90r1AiBNNXtUEAq+ImvUAadYms7MUVO6C82bUCPJvE7XnOhMxw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":127724,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgPOpDCRA9TVsSAnZWagAAy5gP/AvFvp+AMvjXT9IUKXQG\nm+ZpaauYuzfW/IvytsymT4fMjZlAoNb0CAQzlwDXLiUOolAwfc53PoNqE7L1\ncDekSp9XacVsOxdpLm8jKPT8vNC4FlrPnz590llk0hEfXkIg1owUXxyrU4Yk\nKjDXVOapA2Uqxd3rzkHd+0NWJXa+mkFSzecmJumJvSwEO5GQquWE9iRKSZdh\nw7K/XiAdH9B+cU3XY+4glDRPeQotkIoarzfivAe7Gk951ERT/wps5XXKhg/U\nNMENh0aFz37qvdjtrcj26z88J4B2mUEjcArLmYB4rLYJ287q5EuZ1vN0BVGg\nMeYnnLmkxVYWNu6GovJO3a3otK6duOurvYSw1/S8g4gvxPCLipb3d4vg7l9Q\negDi/zjzV80P/OmSnWGBJQ6sXPJrJK34flYUVaoyCr8it5+GStopm9aY7c1R\nmsUgXI/xQqWXb/2QQ3wPw1YoftLkb7fXVYtMMlaUU1sJL3SbQOOlU4kLRj85\ncRM/DqA8evc9Fhyy8/n8HnET2WVrsQGW9W5FJdNWOWBsjXjlJUPbQ499J6nP\n3afQNXT+9g/5CzkwrXeAy0HYJERmt47mY7vX9XhP1yL8YUvjLmIsJd5yWEA/\nv09mr5vQOrncdxyVequU/lXWOxD/ew7SqmHaCx+tNYSbfT50NoltvDF+stwN\nL+yb\r\n=LbeD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"5e18d7e99b37fa56a518f4263c40bc08c6dee5bd","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.5.4","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.21.0","dependencies":{"cssesc":"^3.0.0","semver":"^7.3.4","postcss":"^8.2.6","camelcase":"^6.2.0","icss-utils":"^5.1.0","loader-utils":"^2.0.0","schema-utils":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^26.6.3","less":"^4.1.1","sass":"^1.32.8","husky":"^4.3.8","memfs":"^3.2.0","eslint":"^7.20.0","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^5.23.0","es-check":"^5.2.0","prettier":"^2.1.2","cross-env":"^7.0.3","@babel/cli":"^7.12.17","babel-jest":"^26.6.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.12.17","file-loader":"^6.2.0","less-loader":"^7.1.0","lint-staged":"^10.5.4","npm-run-all":"^4.1.5","sass-loader":"^10.1.0","style-loader":"^2.0.0","stylus-loader":"^4.3.0","postcss-loader":"^4.0.4","@commitlint/cli":"^11.0.0","standard-version":"^9.1.1","@babel/preset-env":"^7.12.17","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.1","eslint-config-prettier":"^7.2.0","mini-css-extract-plugin":"^1.3.8","@webpack-contrib/defaults":"^6.3.0","@commitlint/config-conventional":"^11.0.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_5.1.1_1614604867288_0.5309081206129391","host":"s3://npm-registry-packages"}},"5.1.2":{"name":"css-loader","version":"5.1.2","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@5.1.2","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"b93dba498ec948b543b49d4fab5017205d4f5c3e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-5.1.2.tgz","fileCount":17,"integrity":"sha512-T7vTXHSx0KrVEg/xjcl7G01RcVXpcw4OELwDPvkr7izQNny85A84dK3dqrczuEfBcu7Yg7mdTjJLSTibRUoRZg==","signatures":[{"sig":"MEYCIQCv5LroetgCsRTnS5Ku67DPGZcdKWLPfOXF5Hxg/de+5QIhAJv6/8eJhHPZlH3urH5uPfEHPT7qv2K/f0/tv9BRR6gt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":128480,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgSOnfCRA9TVsSAnZWagAA5bcP/j3Px22Sp5A/xX7Nj1vQ\nHinX2l50i/W8OEpJ/e/9K0okVA6Io1RGDfkAUVfxKgRXZcqK6SUgILuS82Eq\n7JR1dn1AGM0OU2DduwqA7K7t9GWgz72/BsmOX2yBTmnKHufsP8gksd/Z2MU1\n7JhD90EXaIx+bnu/Lok6Tkw6I9jgwEiB+44y1IA1/ec0aV28s3clZqkp5U/a\nmfczGfVRmj3RnR2gyvPfAB6paQl8ilo9/kSOqzHCC/AUF9k6KiacjESuykLq\nThw8JpFSpPghMtOAGY99660rFIupxRevlde/dcTXqP9QmIwQsFmXveOiagv/\nd0XuqCz/6bi9cLAvSygad8+ouwebI11RZnXEKmCQR70nBzspeNqCNOvOWxpA\nQON3s1tm3CcIey5dA19Pcy+cCYd0pFbudw6BDMrms9uCu/ApKua9ElBL7tj7\nOCSL3e6RCTK0D3k3Gc9fIeEzM/JdrpFxeZJjPEbxPVh8UIbhI6rfiFf06iY5\nZREYxOSElJSyhoEY3ufzF8Xug2s68u30m/kpx+zFJndEkc5t+UFwc9oZZd83\nWcUaw5MdVe5QD2NqyvTIm5DOXuus4iL2bWuV/c0WrwjhXSwWc9T6QhjtlsuT\nHSuXENwKsDhN/8/8ZEL5hqEZTka0wbhCXLIhyIuAHssk17QbUTEou9tjCDmz\njEoj\r\n=74B8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"c13f3690e16b408d3bdb86ea26c788c95e833cae","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.6.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.21.0","dependencies":{"cssesc":"^3.0.0","semver":"^7.3.4","postcss":"^8.2.8","camelcase":"^6.2.0","icss-utils":"^5.1.0","loader-utils":"^2.0.0","schema-utils":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^26.6.3","less":"^4.1.1","sass":"^1.32.8","husky":"^4.3.8","memfs":"^3.2.0","eslint":"^7.21.0","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^5.24.4","es-check":"^5.2.3","prettier":"^2.1.2","cross-env":"^7.0.3","@babel/cli":"^7.13.10","babel-jest":"^26.6.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.13.10","file-loader":"^6.2.0","less-loader":"^7.1.0","lint-staged":"^10.5.4","npm-run-all":"^4.1.5","sass-loader":"^10.1.0","style-loader":"^2.0.0","stylus-loader":"^4.3.0","postcss-loader":"^4.0.4","@commitlint/cli":"^12.0.1","standard-version":"^9.1.1","@babel/preset-env":"^7.13.10","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.1","eslint-config-prettier":"^8.1.0","mini-css-extract-plugin":"^1.3.9","@commitlint/config-conventional":"^12.0.1","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_5.1.2_1615391198913_0.7702468410493395","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"css-loader","version":"1.0.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@1.0.0","maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"jtangelder","email":"j.tangelder@gmail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"9f46aaa5ca41dbe31860e3b62b8e23c42916bf56","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-1.0.0.tgz","fileCount":14,"integrity":"sha512-tMXlTYf3mIMt3b0dDCOQFJiVvxbocJ5Ho577WiGPYPZcqVEO218L2iU22pDXzkTZCLDE+9AmGSUkWxeh/nZReA==","signatures":[{"sig":"MEUCIHOnukiYQeVuojiNVnKVXeoKsKuiKs36y+vbbdo6gZvyAiEA6m5sQdAo7SGu4kCIOF9WGTiGt8utNRHRd6bKjgIBCX8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41303,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbP5u7CRA9TVsSAnZWagAA53AQAJF2Ynlj7sca3GzQPrEn\nGONwy3w0J8Ry3zowLrCu7oGu26v753Q+KNcPD6NFvj1fZS/cepT/WuU0j1ka\nKVD01TZQq0Jd8p2uxdEIBlKF2LsgK0d8bwfeDe+vMnU127ZNS+WQ3YZcLP37\nbjCEDzxOxXr04NjavpP4Lm4Pdmj9CPdcfjGCqZOuYYhUa4V+dr8shymACoMk\nZCIxMKnZrdXj76snulX7ezyeNGV+ZyUAwsVnuq/w59XbgThaOAkSYR08pTp6\n/nl6O16xpg9OV/euf9y8XYn7kjfKcn01mDyJivU8k7hs0jzxDwvGBnFBahX2\nkznAWXoWgdCO8UNG+PS3w/pi1Y1i8Mml9pue39LKIEDZHvCL1rfV0e3hFsa/\nxdt++Uw+PzfnRsydINQfcowuB+GnhpRJnECK4dZZ8KVa7cZbaXFpqIGB0Scn\nzX8Ia7iFcKKeXVtyju5N9UvdMSwI0kR5zt/7f6Y8sPMaeBIg3froZqx5rVlO\nqr/i+3X8INE0vsjz7FH4lieAxzwQ4ArGHYG9pcy0YdrSLHFH3gTsWKi7HwFp\n6jDj2cyH5aZWRzrKxiX8bAgM2DPp0BiYWNZQ7vEEafbXqed7OADqhKT1mLD9\n6rG69ot0pc8QdenXJ7JlJ79rEvC+V8tVAtg5VTwJZ2P498yFU48uM980/yoV\nwirT\r\n=B7Di\r\n-----END PGP SIGNATURE-----\r\n"},"files":["lib","index.js","locals.js"],"engines":{"node":">= 6.9.0 <7.0.0 || >= 8.9.0"},"gitHead":"43179a82c88532bf93ccfafb4f78c10cdb80cbf7","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.1.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"8.11.1","dependencies":{"postcss":"^6.0.23","icss-utils":"^2.1.0","loader-utils":"^1.0.2","source-list-map":"^2.0.0","babel-code-frame":"^6.26.0","lodash.camelcase":"^4.3.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^1.1.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.3.0","postcss-modules-extract-imports":"^1.2.0","postcss-modules-local-by-default":"^1.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"peerDependencies":{"webpack":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_1.0.0_1530895291829_0.09602057709562861","host":"s3://npm-registry-packages"}},"5.1.3":{"name":"css-loader","version":"5.1.3","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@5.1.3","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"87f6fc96816b20debe3cf682f85c7e56a963d0d1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-5.1.3.tgz","fileCount":17,"integrity":"sha512-CoPZvyh8sLiGARK3gqczpfdedbM74klGWurF2CsNZ2lhNaXdLIUks+3Mfax3WBeRuHoglU+m7KG/+7gY6G4aag==","signatures":[{"sig":"MEQCIDCdUxsDKwKSd8XCo37ottNII9p7q+rU14LTxMi6g6BWAiAVi+a9fzy3BEFy1uIgbEv5P3O6Xft3kYd0NYfl1mPm1A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":129451,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgT6TFCRA9TVsSAnZWagAAHxMP/21D7Ehi1kAe+yv1Wl1s\n8xNRocggup6EJk3wSPpRqUAnRufyUOdxK+xvdMUqn2sh/+ajXo+V9Rrc4l9z\nr+i8ZGThiK3NVSGTBRjuGzOUfX7oZeNgWfHc5BF9DtOKoNmwB3caGVZi+5Dp\nGus0uvgRnD+QyFjzByjjyy7bYrdJeFpPkRl9g5ywGKGbQMluIQvEDpigefkX\ntVYvyShmtuVNC6p94qW1N11E+Ddo2YHX4g070yW01/LSatdZCgZ6mD2H+hPz\nONts3wCRlS2yJerbo/BEgGbm7uKfmANHMoUMCXUL+KGG5ujFq5nNc3KhnBeP\nvrmvrwK/h2j038vvfP2c0IYxAp7Ml9POl85/H4uO/KY3Ae7XkcLLmLXxb2FH\ninMTzV5cC3x6vIhvWmz+TXKUoaRgRPZi1AdETK6M4eUoEa59tiOoi65g5BfJ\n2w+kfRrLI/e4ot7Zl7RXiA/+8BIEiLwLnvEEwMRy2qpeGwK4DOycmDQ37BVy\n7jXwgbZLZtpKRi4/dB/HALx754cvVmkn0E51/ak135wDALzvr6za9d4R6dSH\n98LpZVYir4rmShivlEUm+roMacTYgGAcmjZuC6M1vmX8jE4c6F+no1aPEbkx\nSgp8ACyXCuFYlhwtGCwajxk81y89D7nknoAYWYS6P1wwQE6G2QAUWLNh1+5S\nkitG\r\n=yO2e\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"e194e6b3bd833b635bc991c1fea657c43988dae6","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.6.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.21.0","dependencies":{"cssesc":"^3.0.0","semver":"^7.3.4","postcss":"^8.2.8","camelcase":"^6.2.0","icss-utils":"^5.1.0","loader-utils":"^2.0.0","schema-utils":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^26.6.3","less":"^4.1.1","sass":"^1.32.8","husky":"^4.3.8","memfs":"^3.2.0","eslint":"^7.22.0","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^5.26.0","es-check":"^5.2.3","prettier":"^2.1.2","cross-env":"^7.0.3","@babel/cli":"^7.13.10","babel-jest":"^26.6.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.13.10","file-loader":"^6.2.0","less-loader":"^7.1.0","lint-staged":"^10.5.4","npm-run-all":"^4.1.5","sass-loader":"^10.1.0","style-loader":"^2.0.0","stylus-loader":"^4.3.0","postcss-loader":"^4.0.4","@commitlint/cli":"^12.0.1","standard-version":"^9.1.1","@babel/preset-env":"^7.13.10","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.1","eslint-config-prettier":"^8.1.0","mini-css-extract-plugin":"^1.3.9","@commitlint/config-conventional":"^12.0.1","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_5.1.3_1615832261388_0.13112601395996037","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"css-loader","version":"1.0.1","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@1.0.1","maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"jtangelder","email":"j.tangelder@gmail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"6885bb5233b35ec47b006057da01cc640b6b79fe","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-1.0.1.tgz","fileCount":14,"integrity":"sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw==","signatures":[{"sig":"MEYCIQC4ZL2Xj6KZ2eXJQqgRiWIXIJrkizD9FYajraJysg9uEQIhAJQXkTvypy2gS6z4ZrSiMTla3dSZ4HUGMDxFZNHke6QB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41732,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb1xzZCRA9TVsSAnZWagAACWAP/j+iaBN63k3kP6mPMWIw\nxCBW4DKBsk8ULDvQcm5v+PcfCS8WfGgVKV1y8Wdk1X5opBQCHzoT9f6rKOYL\nyYSxlrwxmYbBbxEmj+AH3zfHTYl1GsP423b/CzfSGniBn8J6Cb+R2hyfoXok\nUFqb9IXQIuIuktLg73nXLcZPqawnsHZAV3/Svlcn6GmTWBBgBFa1xDH7sLxS\nqynCzDPcneA6NexkErAUYQcByyYmOwQ2Svh3PP45qYRYPrcZb8NKAHGRruVY\npIlJXt+HE7HbvD9q1fPoJ8WDmM6EgOKaYQOJa3j4VML32Ib2/fcC4BZfYvZW\nMcoTY8jf7YKfLsIoXKOThQUPQ/eyY8rhaeboCAn058epyIArXkmounhNHLMq\nO46yBM05hjJY6YVCvzxMV7E7v1O1B/19u39IkbOsyYgv/uH7YsmR2XjdIvyx\nNCbY86maOWdPE6UmvcBaj73lN0FHPB+jXVxhI6DQZC+AjPXt95/sXJ8Ir2E1\nvQjzOirM/qtg8cVrf+OWH6HHU0VJfiHtpnL0Kqig7O7UQBCXDSSkIDXI4Y3B\nehaFTOwKMfBIrZydRdSmOJs12+CiTAoBvpzfNYbaSfvb7SgfxopYGtJvbMxQ\n4Y1tZUmw7e3hFNsaVtgpN3Jrs6rnbjC7NxkUh4aCsna58s1hKT94GZ5xLp5H\n9U7O\r\n=a7iI\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 6.9.0 <7.0.0 || >= 8.9.0"},"gitHead":"10c3bc31bedcfffe35a8e65e82397d4dd632f6c0","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","release":"standard-version","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.4.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.12.0","dependencies":{"lodash":"^4.17.11","postcss":"^6.0.23","icss-utils":"^2.1.0","loader-utils":"^1.0.2","source-list-map":"^2.0.0","babel-code-frame":"^6.26.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^1.1.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.3.0","postcss-modules-extract-imports":"^1.2.0","postcss-modules-local-by-default":"^1.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5","standard-version":"^4.0.0"},"peerDependencies":{"webpack":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_1.0.1_1540824281067_0.6266623871417134","host":"s3://npm-registry-packages"}},"5.1.4":{"name":"css-loader","version":"5.1.4","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@5.1.4","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"1f6d278f041d512ad410df7168f0bdae97f55950","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-5.1.4.tgz","fileCount":17,"integrity":"sha512-3Fz3B+7nIw6N/rw/sEBxiZsOnYedKvT3w7gicEjAVc73k7gfYN0v2iyBxq4brQvv/Dt6haze4m0BbPd71/OAFw==","signatures":[{"sig":"MEQCIH50W7UOpH3tHMAnbiOHrzuWiY3rBkzx3UqetdHtnUbiAiBJeNAIIhyqOnirHzC2KsALCrITtaZJ28W+Gi5ZQB1m9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":129818,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgWyU6CRA9TVsSAnZWagAARm4P/1jHMg8+Q9F4AFWHCSqI\nsbFP9pfy1gESjnz137eYKrIKOH626vLhVPF33SoJzk31kBE7ENrTeZ+eTmyt\nEd8CID7YFDYyl5vsAJ85yxHXPpiq/Uqgns+KBmpIQaSaCBr2gOW8mpJ+PE1C\nm2QsteaxYshgogf5Y/fTgvAfEU5XmPrjzrksvEKjATj976KaU+n4MLd/M/mA\ny3C2h8PNbmp30JQaWO5EwqlgTKONpSWW7/w10ivaAT0LVFVNlJFoMpbazT1a\neHgHIVedeTEOkJTzPyagn+0h1rQV3aCl3oyhUxqPVIUm7k7hBG3J+5cXIqNl\nQU5kybRed+xN1qDa55XE0F7+8SacLbqopN20bZBs76H35rgOR76BJVRq5lUl\njmV1+Im/cSlTkUbNKdpTjwKekUbJZDaXu6vlfClOBKscXZw9e1I6Z2805Tbt\nMpZzChwqmsCRGvgY4618T0PLBgL5BmyHNjgL+xVrlPlPk1bnMebSfa79AcZ4\novHYG6rzvDDwgItmVcljg5K7KGH+lBSm0KT1kzfl1ogr+XPHMhpYhpl+0Uy4\nBDmnVlw5bjRdWSHInmCNWcFFCG+1tOZQCUUGB94dYgDgIRL84yryT3dATsKK\nQpfQ2w/JBZN3wi/gtoZcVsHfGO4thwyqIQ7boEAcsAIKRaDhRaEksmT2OS5Y\ntnID\r\n=YT/1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"c86ff945224fca49c409cffd758cc58a7e48f676","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.6.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.21.0","dependencies":{"cssesc":"^3.0.0","semver":"^7.3.4","postcss":"^8.2.8","camelcase":"^6.2.0","icss-utils":"^5.1.0","loader-utils":"^2.0.0","schema-utils":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^26.6.3","less":"^4.1.1","sass":"^1.32.8","husky":"^4.3.8","memfs":"^3.2.0","eslint":"^7.22.0","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^5.26.0","es-check":"^5.2.3","prettier":"^2.1.2","cross-env":"^7.0.3","@babel/cli":"^7.13.10","babel-jest":"^26.6.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.13.10","file-loader":"^6.2.0","less-loader":"^7.1.0","lint-staged":"^10.5.4","npm-run-all":"^4.1.5","sass-loader":"^10.1.0","style-loader":"^2.0.0","stylus-loader":"^4.3.0","postcss-loader":"^4.0.4","@commitlint/cli":"^12.0.1","standard-version":"^9.1.1","@babel/preset-env":"^7.13.10","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.1","eslint-config-prettier":"^8.1.0","mini-css-extract-plugin":"^1.3.9","@commitlint/config-conventional":"^12.0.1","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_5.1.4_1616586041550_0.8396305926874905","host":"s3://npm-registry-packages"}},"0.26.4":{"name":"css-loader","version":"0.26.4","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.26.4","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"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"b61e9e30db94303e6ffc892f10ecd09ad025a1fd","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.26.4.tgz","integrity":"sha512-BpErUP1CcAdW8IQ0834qG+5yGMzCRKEXH+HmJ/rXNAfOeOY4GwNDOG16Oil7G7MpeP+1QQ9NGCjzI6MebqO+rA==","signatures":[{"sig":"MEUCIQCvCXI+iF+eUHVounIVwBHL70yjiD1J3dnGtvuHE4DeLQIgLxkji1TnchhTCkJANpGHG6F5jJanGIqoLlv0e4GhXsc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","locals.js","lib"],"_shasum":"b61e9e30db94303e6ffc892f10ecd09ad025a1fd","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"gitHead":"7cb4cb75c4c850282ec79647dbdbf45a06897ce6","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"3.10.10","description":"css loader module for webpack","directories":{},"_nodeVersion":"6.9.5","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"^1.0.2","object-assign":"^4.0.1","source-list-map":"^0.1.7","babel-code-frame":"^6.11.0","lodash.camelcase":"^4.3.0","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.26.4.tgz_1488981199943_0.17918122466653585","host":"packages-12-west.internal.npmjs.com"}},"0.8.0":{"name":"css-loader","version":"0.8.0","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.8.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"9e9385da04edb2e827d402440ad847ddcb903ec8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.8.0.tgz","integrity":"sha512-jEaFOnHqvvvzyK3/j+Yu3EKfL34Zle6yS9YkGMJ1jDlVVBiLa35/BIWi+r0iAab8GC7250zuVII0OMUC+rNV8g==","signatures":[{"sig":"MEUCIHt/z8Q71Bdy10yRegBwLr5dzPJHqnyPY3MrBsSl9mzPAiEAmdhPG9mzTnLDKSxKBE48/7dvSuIS9E6lvSdEEUynmXI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"9e9385da04edb2e827d402440ad847ddcb903ec8","gitHead":"e4d6ba5d7d6435faaa50660a2f199ac028031056","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"1.4.16","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"~0.1.38","loader-utils":"~0.2.2"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"0.22.0":{"name":"css-loader","version":"0.22.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.22.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"4892913960cd3dedf8807702c24283f84e97c70f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.22.0.tgz","integrity":"sha512-q/SNDuVpwj0QLn0bGA3hU9Np5+w3p3dl8IXEP2skcRWoY+VP1d4yF+uOUqNC2ljQOQeYrTaWJ3oKZ/QsTxFU7w==","signatures":[{"sig":"MEYCIQCkhcs9pPPU+UTXbj5LN6i4WXjeePZlE0nKX6WGSN1jHwIhAOVhWUlzqcpS9MqoeIKrsW63E1UrNqZL70T/moifdwJJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"4892913960cd3dedf8807702c24283f84e97c70f","gitHead":"4f9543a4a7bb018ac3074ba69458a553abd36092","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"3.3.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"4.0.0","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"~0.2.2","object-assign":"^4.0.1","source-list-map":"^0.1.4","lodash.camelcase":"^3.0.1","postcss-modules-scope":"1.0.0-beta2","css-selector-tokenizer":"^0.5.1","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"1.0.0-beta2","postcss-modules-local-by-default":"^1.0.0"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"4.3.0":{"name":"css-loader","version":"4.3.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@4.3.0","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"c888af64b2a5b2e85462c72c0f4a85c7e2e0821e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-4.3.0.tgz","fileCount":16,"integrity":"sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==","signatures":[{"sig":"MEYCIQD/QGJxDdBt7+e38YB6SS/gYjNr/762O3vYmeiANbvMtQIhAKRrTrsKX+2aOH5FA3ExoGgyS6lnW3w6/NS9GGyy6zw4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":115213,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfV4flCRA9TVsSAnZWagAAWcAP/RxaT1lsTAr/R2+fcHGB\n5DD/9Av6JABoUTy+uFKGiiuwtsn3Ttjb/x8uqWNvxtmJE2CT+kc7HgQh9Zhl\n5J/749SfOYZzCnQnlK+YQS/TkqVJ1eq0p0UYGN3NjXxXBtt1hqLD0xoNJhG9\n7B/8WkdHWhjX0Ao+ZxOzCrHqwcR/mHmZcq8SC4BjJ/A1PIJa8JHHkedFfn7I\nZEEQCHGBNSxQmG9oKpQBMS+Z2wMPfFmeLMFcZsgAnicIgJKjJANOcaQX4VIl\ndzcT++E0oYrje7Gnnb4ArqzGc99d+QDYWZFjC92VbOCZokUZWtkytmFTxu2O\n/rrcDrp52/pmFRzeYUH25XiMm75Wv93bbwvdJ0klhVNa6xFejRfIOts5Kfcx\nmd9jnUhckqy8nOeXRhQX4XaqnuQrCMNudJcNTzw+SlY2ZCJwzATAVW54Zhtp\nRTLf/pphjmVnU8L2hCCdQBaYDujOiQrypxmq2dVJuYkpWjCT1RSdgs7RXUDT\n/Xwac7lvfDOa0EGQD8bz65HZRK1AVRJz92f/7imblk0FvnvLER9RAfrJl9rf\n0K/R5VXfUCwnoNP9npLY6PK4gVkHMDZqH1CSWW8ITPOdkXS9HkMmQty+xyy5\nmTELW4IZwbLuywLwOcqqCUpSuJViuJ4dclPQnzE6plE77De0/QudvZ+KpIHW\ngtcG\r\n=HIAu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"57eb5059759f2ed1470b9c7efb6c457d90e6baeb","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.14.8","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","semver":"^7.3.2","postcss":"^7.0.32","camelcase":"^6.0.0","icss-utils":"^4.1.1","loader-utils":"^2.0.0","schema-utils":"^2.7.1","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^2.2.0","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.3"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^26.4.2","less":"^3.12.2","sass":"^1.26.10","husky":"^4.3.0","memfs":"^3.2.0","eslint":"^7.8.1","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^4.44.1","es-check":"^5.1.0","prettier":"^2.1.1","cross-env":"^7.0.2","@babel/cli":"^7.11.6","babel-jest":"^26.1.0","strip-ansi":"^6.0.0","url-loader":"^4.1.0","@babel/core":"^7.11.6","file-loader":"^6.1.0","less-loader":"^7.0.1","lint-staged":"^10.3.0","npm-run-all":"^4.1.5","sass-loader":"^10.0.2","style-loader":"^1.2.1","stylus-loader":"^3.0.2","postcss-loader":"^4.0.0","@commitlint/cli":"^11.0.0","standard-version":"^9.0.0","@babel/preset-env":"^7.11.5","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.0","eslint-config-prettier":"^6.11.0","mini-css-extract-plugin":"^0.11.0","@webpack-contrib/defaults":"^6.3.0","@commitlint/config-conventional":"^11.0.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_4.3.0_1599571940999_0.18938174421737264","host":"s3://npm-registry-packages"}},"6.7.3":{"name":"css-loader","version":"6.7.3","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.7.3","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"1e8799f3ccc5874fdd55461af51137fcc5befbcd","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.7.3.tgz","fileCount":17,"integrity":"sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==","signatures":[{"sig":"MEUCICVnoj7dD7lZoI6v0lHhh/AySgYHACLVTNkDXun9SiapAiEAzs8rX142QAB0N34NExgK85doKsrJqPNDyddXQ2Fe3Wg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":128925,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjmeX1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqHEw//dZUpNti3X2ggs5FS+ERGVs2VnUBh8aZpywRLubOC6Ez3Yuot\r\nJbDWApn8pFs6/EWqsZwBhwA90EiBNM71C2zAs3fuYmyXaJWelGUfdAi2Wjsx\r\nZLQQVIb0WdSgnmVVe2Kml4wKCS2iBXKNW0EqPZ/u7MCgAjzC0xsWqF2Ig1ZW\r\nI+PFa07x59iXzc5EkgUBABCpTNMkm8qJgGJpGQyvqlA198G5x7BYXViHHDJ2\r\nqSDDQHQbdYWcpYlizUUnUOObpeP+LggB399r6DqNnaEmDGlAkI1nhdZZQ9Na\r\nPdv4tYyU0Zd/l1yxPq/v0K2QiXNPzfJnM1hHRfY3GYCc2iR34Jh1AhNZhXw1\r\nKYAbRvPtQlI304PfPIBHYsBUsQcj+0KuAEH7KqCIcj6bGIU5DbdouK58ohff\r\nmdzkysQucZ3qaCA7iy8zuE70pRgB1tjt2F1/yzkeGTqVUH1q+JkTWRhwcIfZ\r\n8i/gw5jEpOuyk99Ia4R2bMSFt4cq5tuhFPz3+1Huh53+aJDQh8upM0yKZQ/g\r\ndXv9IRI8t+LCTLokBif8TSscGVi2nRDGe8BTjrOioMyupvR5wM83/OHg/YWd\r\nSyN3bBBPJOKAQTPwihWAsKK10MzGm3JkFxWGM//bec2UavmAIYdehMp8QbYQ\r\nvtJMjhyWri9tMIwQ6fHdws7i4B5ZPag2AYA=\r\n=blOb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"ef749f29f8696b93f9eea61e6d00f2bb30ce094c","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","lint:spelling":"cspell \"**/*.*\"","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"8.15.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"18.7.0","dependencies":{"semver":"^7.3.8","postcss":"^8.4.19","icss-utils":"^5.1.0","postcss-value-parser":"^4.2.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.1.1","jest":"^28.1.3","less":"^4.1.3","sass":"^1.56.1","husky":"^7.0.1","memfs":"^3.4.12","cspell":"^6.15.1","eslint":"^8.28.0","stylus":"^0.56.0","del-cli":"^4.0.1","webpack":"^5.75.0","es-check":"^7.0.1","prettier":"^2.8.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","babel-jest":"^28.1.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.20.5","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^12.5.0","npm-run-all":"^4.1.5","sass-loader":"^12.6.0","style-loader":"^3.1.0","stylus-loader":"^6.1.0","postcss-loader":"^6.2.1","@commitlint/cli":"^16.3.0","standard-version":"^9.5.0","@babel/preset-env":"^7.20.2","postcss-preset-env":"^7.8.3","eslint-plugin-import":"^2.26.0","eslint-config-prettier":"^8.5.0","jest-environment-jsdom":"^28.1.3","mini-css-extract-plugin":"^2.7.1","@commitlint/config-conventional":"^16.2.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.7.3_1671030261651_0.13847807151435076","host":"s3://npm-registry-packages"}},"6.7.4":{"name":"css-loader","version":"6.7.4","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.7.4","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"a5d8ec28a73f3e0823998cfee2a1f7e564b91f9b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.7.4.tgz","fileCount":17,"integrity":"sha512-0Y5uHtK5BswfaGJ+jrO+4pPg1msFBc0pwPIE1VqfpmVn6YbDfYfXMj8rfd7nt+4goAhJueO+H/I40VWJfcP1mQ==","signatures":[{"sig":"MEQCIGQslfPl9ec0D95sM2cUuCxlXGJoGewNPFmoEaelO2JRAiB/xUVFl6bA4/AbO8mSLDOEholo2Yi+pr6nIyVi0n/nxw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":129921},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"ed77720eb5a4862041984302fbfda7a7e7f3f929","scripts":{"fix":"npm-run-all -l fix:js fix:prettier","lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","fix:js":"npm run lint:js -- --fix","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","fix:prettier":"npm run lint:prettier -- --write","lint:prettier":"prettier --list-different .","lint:spelling":"cspell \"**/*.*\"","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"9.5.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"18.15.0","dependencies":{"semver":"^7.3.8","postcss":"^8.4.21","icss-utils":"^5.1.0","postcss-value-parser":"^4.2.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.1"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.1.1","jest":"^28.1.3","less":"^4.1.3","sass":"^1.60.0","husky":"^7.0.1","memfs":"^3.4.13","cspell":"^6.31.1","eslint":"^8.37.0","stylus":"^0.56.0","del-cli":"^4.0.1","webpack":"^5.77.0","es-check":"^7.1.0","prettier":"^2.8.7","cross-env":"^7.0.3","@babel/cli":"^7.21.0","babel-jest":"^28.1.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.21.4","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^12.5.0","npm-run-all":"^4.1.5","sass-loader":"^12.6.0","style-loader":"^3.3.2","stylus-loader":"^6.1.0","postcss-loader":"^6.2.1","@commitlint/cli":"^16.3.0","standard-version":"^9.5.0","@babel/preset-env":"^7.21.4","postcss-preset-env":"^7.8.3","eslint-plugin-import":"^2.27.5","eslint-config-prettier":"^8.8.0","jest-environment-jsdom":"^28.1.3","mini-css-extract-plugin":"^2.7.5","@commitlint/config-conventional":"^16.2.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.7.4_1684455442036_0.7002896449460978","host":"s3://npm-registry-packages"}},"0.26.0":{"name":"css-loader","version":"0.26.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.26.0","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"160d378f5b8e0fd4ff6daf4f3580e2219b33025f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.26.0.tgz","integrity":"sha512-5/x4cJJrAxQK1IPA4Tipb6FIcdybYOTMT2SWAZJxPuwmCODnis+Nd8YMVV+sAfzMfj0TCZKOsgtBgGXrNz5WCA==","signatures":[{"sig":"MEYCIQCYP/rwLoBaYxY2y3BNklF+/27xl/BlxYhdjR0AcfH80gIhAONEdMxk+sBM1y4rprxXYr/D/kIkQebDRAPQc8M2neA5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"160d378f5b8e0fd4ff6daf4f3580e2219b33025f","engines":{"node":">=0.12.0"},"gitHead":"9497d74d35a72e22d056b711fdfc7f3166482b36","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"spacek33z","email":"kees@webduck.nl"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"3.10.8","description":"css loader module for webpack","directories":{},"_nodeVersion":"6.8.1","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"~0.2.2","object-assign":"^4.0.1","source-list-map":"^0.1.4","babel-code-frame":"^6.11.0","lodash.camelcase":"^4.3.0","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^3.1.2","should":"^11.1.1","istanbul":"^0.4.5","coveralls":"^2.11.2","codecov.io":"^0.1.2"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.26.0.tgz_1479390924176_0.7508776378817856","host":"packages-18-east.internal.npmjs.com"}},"6.7.1":{"name":"css-loader","version":"6.7.1","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.7.1","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"e98106f154f6e1baf3fc3bc455cb9981c1d5fd2e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.7.1.tgz","fileCount":17,"integrity":"sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==","signatures":[{"sig":"MEQCICkV57lOMG4n1o/1mdAos/QuHhZN9ZiUGaQ3sUpN8vhdAiBBfce2RTOWd66Sy7DY+NpnBH7W90+E/dgMyRF++CyGKw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":128551,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiJ0usACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoEkA/9HKJ2AcrZBnVT4BNJa9GhF1OvzhN2ZSM6c9FShnnN7rYXLpIY\r\nMKPjXBAhHBDC5/pPDcW5xccFT+Cdt6x2qt0YTZxadlHKeLv4Rpo1HbCzV9Qt\r\ntmtCMnb7md6LtsI1RQRaMoEFRg3AnvUwrX16yM5c/pu55FnsvBfEzJ5cuBn1\r\nX2ruJgISrDH5dVDjgp5H+vRO8E2O2Yx81TSgYc4fm198SqUWsTMJJUq6oUe8\r\ntkQIjSr95Vx1N1lkRJW2z06zTlHOTX+BxTaCx7GnuD+yg1NJEVWKM6agAkiL\r\ni4i8Oh88cGlVkbLCzKbpB5Mjo/IL/Ab+juibJpDljeX0v+F+tTWcuZ/ExMmJ\r\njpge9LvS04/S8yks4vgCOhOs4KRDt5+anNBrRiynGI7w2YtXAA/zSTuerTNx\r\nsSu0y1XhWrN9qefrB0vPnUL0qNjQMko+HJVqZqZ3BTAlkkZhVpZNFjDKdFVq\r\nQIFaPr9u4PvJvfUfBTx9HS+pKmWE1x2+hOI1URUX+CxuZZ2pC5c9eGoysik9\r\n+DdiX1+TYUTjdX92ihI370Yh+1LGm6KJY1NkuZ6AqeqEv1C9Y//eofW9DuzP\r\nc+AkY9UqAdyXHmkOLLUOrGDX5ghkykMKNtijGrRBoO2Yo4EPXgurIrh/kTs0\r\nwBBf+JmpSaoAAtusuyKSzAP6qFlCn+oKgHc=\r\n=Z7Zm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"830fe2ce372d5761ec01a000c626672ca8ef1658","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"8.5.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.22.10","dependencies":{"semver":"^7.3.5","postcss":"^8.4.7","icss-utils":"^5.1.0","postcss-value-parser":"^4.2.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^27.5.1","less":"^4.1.1","sass":"^1.49.9","husky":"^7.0.1","memfs":"^3.4.1","eslint":"^8.10.0","stylus":"^0.56.0","del-cli":"^4.0.1","webpack":"^5.70.0","es-check":"^6.2.1","prettier":"^2.5.1","cross-env":"^7.0.3","@babel/cli":"^7.17.6","babel-jest":"^27.5.1","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.17.5","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^12.3.4","npm-run-all":"^4.1.5","sass-loader":"^12.6.0","style-loader":"^3.1.0","stylus-loader":"^6.1.0","postcss-loader":"^6.2.1","@commitlint/cli":"^16.2.1","standard-version":"^9.3.1","@babel/preset-env":"^7.16.11","postcss-preset-env":"^7.4.2","eslint-plugin-import":"^2.25.4","eslint-config-prettier":"^8.5.0","mini-css-extract-plugin":"^2.6.0","@commitlint/config-conventional":"^16.2.1","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.7.1_1646742444097_0.8987361965421365","host":"s3://npm-registry-packages"}},"0.26.1":{"name":"css-loader","version":"0.26.1","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.26.1","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"2ba7f20131b93597496b3e9bb500785a49cd29ea","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.26.1.tgz","integrity":"sha512-wXYZA7VTtjeX2V/TnLAq5OENu5aZ0jpPd0bN3YaVUT2rxtflbIIzq+Afsc/jS0kC4i94E8XhVysG99M6n4wPlw==","signatures":[{"sig":"MEUCIC3Niw4EvHlDJpUFWqWrzWE56OpKriwXmhonRSyyKm5hAiEAyk36j++7velfx3IREi/N0BXghI41Ijnlhujydk3J1uY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"2ba7f20131b93597496b3e9bb500785a49cd29ea","engines":{"node":">=0.12.0"},"gitHead":"5b856b2c923cad34763486e43254db4c49d25f4e","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"3.10.8","description":"css loader module for webpack","directories":{},"_nodeVersion":"6.9.1","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"~0.2.2","object-assign":"^4.0.1","source-list-map":"^0.1.4","babel-code-frame":"^6.11.0","lodash.camelcase":"^4.3.0","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^3.1.2","should":"^11.1.1","istanbul":"^0.4.5","coveralls":"^2.11.2","codecov.io":"^0.1.2"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.26.1.tgz_1480687506283_0.7062110011465847","host":"packages-18-east.internal.npmjs.com"}},"6.7.2":{"name":"css-loader","version":"6.7.2","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.7.2","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"26bc22401b5921686a10fbeba75d124228302304","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.7.2.tgz","fileCount":17,"integrity":"sha512-oqGbbVcBJkm8QwmnNzrFrWTnudnRZC+1eXikLJl0n4ljcfotgRifpg2a1lKy8jTrc4/d9A/ap1GFq1jDKG7J+Q==","signatures":[{"sig":"MEYCIQDqL/tiAuj/ZwZs/48UiXcGqXR8WpAOd1PtRzsswBzeMQIhAPoSuCksVAFg7geiZaWIuLZKgvUOZUm6KZ/BjfOFKNJV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":129037,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjcRVXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo/YA/+JKp30S78HWyk85iooBe/MRnCEeDFitL6KwMb8JlAPVDODoVX\r\nGJxNgzwNJRA98SsZd+iGQjUai5uSoHTF0NjLoefz/zBbocn5mhzqfHrSi7Oh\r\nXsNHg2lMzhWyZWFClpEF2GZcdd/j2ZnWNavpiMz0s38E7uvp1sZ02RFYJN4K\r\nc+Q7BewPIlgkgo/lXb9p+d0qsv9hSW4OxzRiyNCw+VvLb263IBEXrQ8XlGcK\r\n/0s8QOdCRBU8zLFqDCnbAZzN1XqbPFmoN+unYEODjtGpQGdq9mkPJcH/A8uy\r\nUIx24/tFwMQRfcJva3V3J7bidk0Xtv4g1I3Nt7jTeB5lw53rJ7nAd1Lb59hG\r\nx/9AmHEVVcb1WoDBOqXWy743kgnebPSZzIQNJ304HAMll6QJ0KRnR1/c6ew8\r\nev6Ex14RT4QxwW+5CLgJwFzM0CdM43YzqKhg72aorgcdNLlsCrxcptuGB8mS\r\nkBWcYmobPQyDcTWW9fs3jHmsY0eGZt2gNfAwRrudHouI/AS834cHfRf4wEig\r\ntgioH3twfy3ocuTRqfeoJ7RijZrPB46wCVzAMJ6u9JI/ywkIzZ+dJBUMbYiz\r\n3nhHRlLkLYhvgsGCynFufVz1DL8qhhGyF60qlZM+QjB0mZPxHTkXPmyji2EG\r\n8QUNZ4kUhYArQrfu2B9rwlJy2wxsxAmcjYQ=\r\n=uFaR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"394d200cf9409813f163c3c99fd71129ce935a59","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"8.15.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"18.7.0","dependencies":{"semver":"^7.3.8","postcss":"^8.4.18","icss-utils":"^5.1.0","postcss-value-parser":"^4.2.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.1.1","jest":"^28.1.3","less":"^4.1.3","sass":"^1.55.0","husky":"^7.0.1","memfs":"^3.4.9","eslint":"^8.26.0","stylus":"^0.56.0","del-cli":"^4.0.1","webpack":"^5.74.0","es-check":"^7.0.1","prettier":"^2.7.1","cross-env":"^7.0.3","@babel/cli":"^7.19.3","babel-jest":"^28.1.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.19.6","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^12.5.0","npm-run-all":"^4.1.5","sass-loader":"^12.6.0","style-loader":"^3.1.0","stylus-loader":"^6.1.0","postcss-loader":"^6.2.1","@commitlint/cli":"^16.3.0","standard-version":"^9.5.0","@babel/preset-env":"^7.19.4","postcss-preset-env":"^7.8.2","eslint-plugin-import":"^2.26.0","eslint-config-prettier":"^8.5.0","jest-environment-jsdom":"^28.1.3","mini-css-extract-plugin":"^2.6.1","@commitlint/config-conventional":"^16.2.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.7.2_1668355415490_0.47476078498190644","host":"s3://npm-registry-packages"}},"0.26.2":{"name":"css-loader","version":"0.26.2","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.26.2","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"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"a9cd4c2b1a559b45d8efc04fc311ab5d2aaccb9d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.26.2.tgz","integrity":"sha512-xftlK94PQAlfw4a5YjTGr+yvO5mMSO8PBXrY1YisPYfaAO9Xrz/0IvKHEChqEKSZGRQ0B2y65GhZXv0SSaBtGA==","signatures":[{"sig":"MEUCIQCWEqn9rPcWwwGtZqrOIeskFMQb5ZH1hxDu5ED66JfiYwIgSE9fQM0xlh/O1M//D2sl3IdiahVKUOrMVCESpb7NfNo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","locals.js","lib"],"_shasum":"a9cd4c2b1a559b45d8efc04fc311ab5d2aaccb9d","engines":{"node":">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"},"gitHead":"d7317ca45a77d959051de26651967baa37f4ad85","scripts":{"lint":"eslint lib test","test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","test:cover":"npm run cover -- --report lcovonly","travis:lint":"npm run lint","travis:test":"npm run cover","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"3.10.10","description":"css loader module for webpack","directories":{},"_nodeVersion":"6.9.5","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"^1.0.2","object-assign":"^4.0.1","source-list-map":"^0.1.7","babel-code-frame":"^6.11.0","lodash.camelcase":"^4.3.0","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.7.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.14.0","should":"^11.1.2","codecov":"^1.0.1","istanbul":"^0.4.5"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.26.2.tgz_1487954998236_0.5928431514184922","host":"packages-18-east.internal.npmjs.com"}},"6.7.0":{"name":"css-loader","version":"6.7.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.7.0","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"c1200da1dfffe6643b18bda20fdd84cad3e36d39","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.7.0.tgz","fileCount":17,"integrity":"sha512-S7HCfCiDHLA+VXKqdZwyRZgoO0R9BnKDnVIoHMq5grl3N86zAu7MB+FBWHr5xOJC8SmvpTLha/2NpfFkFEN/ig==","signatures":[{"sig":"MEQCIH2SsVujE9k/DDsgbVTmNlCi3fnrjowdixYI56zQsvYGAiALW2nXXoNN7pi5CXH6p9jbkdD133DbmkX4O0D9dBgP8Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":128551,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiIfCAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqkrQ//Wez4F2K2d6x9fLAmR15Wfg/+Nk7TRa5YpVIArsrfvAfW0xGR\r\n63jzd33WsSs/iPPw0FfHs8fQ4ZSqofL2bnwK7ny2o9gNC2QovWwTHOvFYpme\r\nCYdJisttL0WIK0/RDW8aMyX3RGAJVFl1q0Zwc0GijJtIjh5KXuZt5Dy1a5dj\r\nGQghCzAmwaKlqrcolmksRzR7RAmBuJeCAc7h/dbAffpCB6BSPqr6lAAPccKk\r\nkUGi7yQ1+OADZWiC5QwSdOScltqoOCNZi4shJkrGQkZYvXCfAoFOovsV+/R6\r\nZocadQN0r2Ku1OdiCC/RxNbF+0aWRjd/fx0KgcANqj1oAniO4dthc99lgLq4\r\n9kZO7u0j20dZQZS9CPOYduNqkuoCVykaI07GlqAbvnaVkyz9B3xwgDOyLy9u\r\ngWvh3Dbw0rBYn2teio52fb4pfmGa5lzAVg/BFcasn9HqRlH7Uco4GOmBn1jT\r\ngQxUKzIoDwZcC7Flf0HU1slIhT14PKXpHeXi6+TgKSQ+Bk1VHQDar+GpEOWZ\r\n8H1MMLqaN3gO5JLd0Q0DSMZTnCYBjpVY0hJTyfPPIlM6VsoYb+dD7eB6td8t\r\nz/vtqScMITI+ApEsL8nvsImwcv1Rk+m80DLhmsQRibdY6hmW9VbQT089VPnk\r\n3k+7HPRIQPpbouteyuTAuZA0w1k5Ol07R9s=\r\n=rFId\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"84b552ad8b2704c4ff38f8301ffdc364a6714541","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"8.5.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.22.10","dependencies":{"semver":"^7.3.5","postcss":"^8.4.7","icss-utils":"^5.1.0","postcss-value-parser":"^4.2.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^27.5.1","less":"^4.1.1","sass":"^1.49.9","husky":"^7.0.1","memfs":"^3.4.1","eslint":"^8.10.0","stylus":"^0.56.0","del-cli":"^4.0.1","webpack":"^5.70.0","es-check":"^6.2.1","prettier":"^2.5.1","cross-env":"^7.0.3","@babel/cli":"^7.17.6","babel-jest":"^27.5.1","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.17.5","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^12.3.4","npm-run-all":"^4.1.5","sass-loader":"^12.6.0","style-loader":"^3.1.0","stylus-loader":"^6.1.0","postcss-loader":"^6.2.1","@commitlint/cli":"^16.2.1","standard-version":"^9.3.1","@babel/preset-env":"^7.16.11","postcss-preset-env":"^7.4.2","eslint-plugin-import":"^2.25.4","eslint-config-prettier":"^8.5.0","mini-css-extract-plugin":"^2.6.0","@commitlint/config-conventional":"^16.2.1","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.7.0_1646391424609_0.15488579850785067","host":"s3://npm-registry-packages"}},"0.10.0":{"name":"css-loader","version":"0.10.0","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.10.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"9de2499639364acf54bfc1312179281793bb9aeb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.10.0.tgz","integrity":"sha512-jBsFqIZWZa23Fz0fO1TKrgXPn8qATS1TfDQdGXRmQhw6G7ZZNRUGs+Cb6btcLmf64KF/6Pco4ojURXE5iajsFQ==","signatures":[{"sig":"MEQCIFOpx0foP/ejj+50IPMcqBgw6rBfYoFUpycFKVbmQRL5AiAmN9oRASHhHDCruSJeP4pr7PWcWdk4vsdBk+u2+cC4IQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"9de2499639364acf54bfc1312179281793bb9aeb","gitHead":"8a4fed26e9d952319a88a7f4ba86587202b911ee","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"2.7.4","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.2","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"}},"3.5.0":{"name":"css-loader","version":"3.5.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@3.5.0","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"8c68736fbcba1a9b92a288277ba8998b709ac3ae","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-3.5.0.tgz","fileCount":16,"integrity":"sha512-zed7D7JNZEq7htpu3H9oBUVWVgI6s8FgigejbVq+dc5zHV3SUPsyYBozXLIC9Eb73ahAYmnVdnn/SAB4WA75AQ==","signatures":[{"sig":"MEQCIHrFqDPp+oKOlMxVI7/V01JnuTyCap/fS3hWeUgHAYrIAiBWln2QfiO3M8CeF5GMNeCBMWHZNY9uFdMDGViUyHOL3g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":89864,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJei19yCRA9TVsSAnZWagAA2QwP/R/XFLMqNbd6bw/aXUmt\n1O7rjPlMJMFgAO9H6wyh8RVmHqjd1HLku/iCaoJEZ67/usy0bNma5YCRHNSl\n35YpLnT683g3TskaLzUhoOiQYEMqV8NNHVqoV3r5j8jiuZFbFExEnkZ0uwSt\n2/tQK0rmR0IYciPdEm84wYaM+AzhjOCMC4NCt3rLYJT7j7u/qsDnDVQpZ7Ve\n9MTKMPSta9AoKmZRQoRW8xB59WrclNAD5wy/PK0d632WCQcLwiV+0a63eQSi\ni4NF9mkxgHsjsIuO9H4EOTHiMmvsWNfGyKR2gx8AdsGa+vGMXCjSw40pKIsQ\nTP/qedKe+SCuApNXIHA0LFwmVqebScdbKutJ2pVLQ7CaqWPClOLgMalv6nH+\nDW5s6EJuJ4HGkW2FGhtjgqfRQG5BdlmmUIuBkheb508LEn/Zpi0SwPxfSesa\nKE4F2NUXaBvGVXyd2yG0nV7+Jd/mfTp/ypWpN9edatVbTP5r8MgMu07sH4cG\nCKC4Br+b1QvRzL/ziswLjGybm0qInYd3MFvU/Xg6/o4Ra0pGRPqnqbD172tP\nv6FY7oVLQO28OzJ2CqGxdHjm1zZJNTea8rE1OAj8IKd/VyS+xxdaoSXEVSNX\nwoBq1CRZS8HgD4sacWYyZezRDr9RLxduRsvylSEb/3ir6wi6u36MCs44nycy\nm0RH\r\n=6Sl/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 8.9.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"aeeacb8b85df65f138f4f1b6f67578035996e445","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.14.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","semver":"^6.3.0","postcss":"^7.0.27","camelcase":"^5.3.1","icss-utils":"^4.1.1","loader-utils":"^1.2.3","schema-utils":"^2.6.5","normalize-path":"^3.0.0","postcss-value-parser":"^4.0.3","postcss-modules-scope":"^2.2.0","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^25.2.7","sass":"^1.26.3","husky":"^4.2.3","memfs":"^3.1.2","eslint":"^6.8.0","del-cli":"^3.0.0","webpack":"^4.42.1","es-check":"^5.1.0","prettier":"^2.0.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","babel-jest":"^25.2.6","jest-junit":"^10.0.0","strip-ansi":"^6.0.0","url-loader":"^4.0.0","@babel/core":"^7.9.0","file-loader":"^6.0.0","lint-staged":"^10.1.2","npm-run-all":"^4.1.5","sass-loader":"^8.0.2","postcss-loader":"^3.0.0","@commitlint/cli":"^8.3.5","standard-version":"^7.1.0","@babel/preset-env":"^7.9.0","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.20.2","eslint-config-prettier":"^6.10.1","@webpack-contrib/defaults":"^6.3.0","commitlint-azure-pipelines-cli":"^1.0.3","@commitlint/config-conventional":"^8.3.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_3.5.0_1586192241504_0.9415378948595028","host":"s3://npm-registry-packages"}},"3.5.1":{"name":"css-loader","version":"3.5.1","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@3.5.1","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"db2b2336f4169edb68e6a829ad4fd36552647b77","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-3.5.1.tgz","fileCount":16,"integrity":"sha512-0G4CbcZzQ9D1Q6ndOfjFuMDo8uLYMu5vc9Abs5ztyHcKvmil6GJrMiNjzzi3tQvUF+mVRuDg7bE6Oc0Prolgig==","signatures":[{"sig":"MEUCIQC6rUFi/V6tE9RIUT+FC7mEzhRxlpLcbGJ0Sz90JoiPeAIgKWZf1QWpXjuD2lGN8ZsdYfU/i0D5s7bVyaszPfsPu/I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":90072,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJejFB6CRA9TVsSAnZWagAAPEUQAImttG0ogARM1sjb5OR8\nrUEahDbcX+GzxJFWWiIDEnLLZa2cD1Wu82lDdo9LSpfQKRaKbE0hZzAFjUwU\nPY5l3bSZGkU4ejS7ImeqiB3qnVo6k0JqeoTphVE6lqwJT8WT65WtjXvjBjMJ\nicPhMQSWaMT0MHCtoC2fFP9Qv5TX/mKVbvTOP0oTMEF00tBOEWvu7n6QFVXo\nxgUn5/SurModfgOs9W36mb6jtbS8koEFOg0U818YolG+f9cfKBW9PGKjkLO+\n/lQ7p7Sw6KDBE/tOCP3fz+5OQOpsMcwCPwHgtUsQTLlMJRYQyF8aUJ3o4hzv\nVPGFKgult98xmByFtRfiYVz9/0GhBKqdoViiRp+qzUo5nmMrlyjsK/ltAlL0\nkP+u2HlPXSxfuT5HMd7Oqo8DZ6CsCMXqn2XysQj6QC2FL1piS8Z7GFFKKHgP\nclJ+VYJtRS9pb9rLHMHm2ob9m/olgfqlx2TkclehFZi9GScHDQ5axo4Cr8Br\np8MkAgTVRHqCspy0WWt6fWeFHz1+VD9AjNg/gIiqwntialKbYeRsra7Uozi5\nr8SP05f7TiM2yY8gfhEzVKmc6ES7xScLGyDcynQH/wpCP6LXg/TtKMLEEYRp\ncEbYEpHFIvIHR1H9GlHpWQN5PaF6e1wyxXo0lgxKNgF8kkHvL3aYPhSItacN\noO6y\r\n=mCCy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 8.9.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"239e43d1f3c88bce9433e49b9674be2192a118bb","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.14.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","semver":"^6.3.0","postcss":"^7.0.27","camelcase":"^5.3.1","icss-utils":"^4.1.1","loader-utils":"^1.2.3","schema-utils":"^2.6.5","normalize-path":"^3.0.0","postcss-value-parser":"^4.0.3","postcss-modules-scope":"^2.2.0","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^25.2.7","sass":"^1.26.3","husky":"^4.2.3","memfs":"^3.1.2","eslint":"^6.8.0","del-cli":"^3.0.0","webpack":"^4.42.1","es-check":"^5.1.0","prettier":"^2.0.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","babel-jest":"^25.2.6","jest-junit":"^10.0.0","strip-ansi":"^6.0.0","url-loader":"^4.0.0","@babel/core":"^7.9.0","file-loader":"^6.0.0","lint-staged":"^10.1.2","npm-run-all":"^4.1.5","sass-loader":"^8.0.2","postcss-loader":"^3.0.0","@commitlint/cli":"^8.3.5","standard-version":"^7.1.0","@babel/preset-env":"^7.9.0","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.20.2","eslint-config-prettier":"^6.10.1","@webpack-contrib/defaults":"^6.3.0","commitlint-azure-pipelines-cli":"^1.0.3","@commitlint/config-conventional":"^8.3.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_3.5.1_1586253945285_0.019553077386745388","host":"s3://npm-registry-packages"}},"3.5.2":{"name":"css-loader","version":"3.5.2","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@3.5.2","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"6483ae56f48a7f901fbe07dde2fc96b01eafab3c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-3.5.2.tgz","fileCount":16,"integrity":"sha512-hDL0DPopg6zQQSRlZm0hyeaqIRnL0wbWjay9BZxoiJBpbfOW4WHfbaYQhwnDmEa0kZUc1CJ3IFo15ot1yULMIQ==","signatures":[{"sig":"MEYCIQCBxF7ZXTJxXpDY3BtunrNjp6oRDVsaEcf2Wu1VPFQSpgIhAJYm2FSi6CKYXrMs/YciClwvCLWkejyDbYk2ii9yBcji","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":90407,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJekJG0CRA9TVsSAnZWagAAhVoP/iLd89OZ6Ja12LrMwPnM\nFwYM4/lY13s/oOwfBcnli644o4IBZ3fYpuE4xLpPqwaHIzPJPC4ff8CghpGz\nhO/fK3/H2YycfJ173acu0FQoyjL4KmyZyAflHE2VTaFyYXBJiYc4i+QuqC5L\nisdmlSJqarX+AMT+H9De+jqwDabbAy+qk6UumOJXTNRbo/QfBp3/fgCxQMkh\nk4YcFda+FdopqMjAzFtEMpDgXy88U3B54SiA/r5YSXtQbj8FGPndOaKcKgaK\niF7HNy8v3i1/fAHnr3EPiuPLd5Q4oaP1GwZr36vegKeufgwQHmBaJyaZJb4k\n4mVtOLh3l/F8iHdn2l5TXsSQUQjrDcnA2/dUlbu7bBS5kfmcKUJkush4XMoq\ni3gx3j9+M/kkunVbX2/edfFdmdmDumdUqYv2c3Ff1EYS/dSVl4dsm3mbcOYM\nOVGPL2lYwsQbrVLa0mYJS71GyyW0SCzGBEPIR/fgwi74plYL8nLK4q+NENpK\nTONOCXxoCHVGNr/kaoA6F1Amu95cXQqphUHGZmc6PM/STkztXxXGZWu3pdXJ\nRJ6yAsiVFATPHz1qzVxisLybcfQDir7c2e87ttgVSk8wVoIWHy/Is69HDs3X\nLONq//1j+XVeTvPJGmZJ5TulgB4+pDNTyZfh0ek9SvTHsY8D04HBQCyQxEtQ\n7/HX\r\n=e2mb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 8.9.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"a748f3754cdeb57fc2b081ba7dd67d776f636569","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.14.4","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","semver":"^6.3.0","postcss":"^7.0.27","camelcase":"^5.3.1","icss-utils":"^4.1.1","loader-utils":"^1.2.3","schema-utils":"^2.6.5","normalize-path":"^3.0.0","postcss-value-parser":"^4.0.3","postcss-modules-scope":"^2.2.0","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^25.2.7","sass":"^1.26.3","husky":"^4.2.3","memfs":"^3.1.2","eslint":"^6.8.0","del-cli":"^3.0.0","webpack":"^4.42.1","es-check":"^5.1.0","prettier":"^2.0.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","babel-jest":"^25.2.6","jest-junit":"^10.0.0","strip-ansi":"^6.0.0","url-loader":"^4.0.0","@babel/core":"^7.9.0","file-loader":"^6.0.0","lint-staged":"^10.1.2","npm-run-all":"^4.1.5","sass-loader":"^8.0.2","postcss-loader":"^3.0.0","@commitlint/cli":"^8.3.5","standard-version":"^7.1.0","@babel/preset-env":"^7.9.0","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.20.2","eslint-config-prettier":"^6.10.1","@webpack-contrib/defaults":"^6.3.0","commitlint-azure-pipelines-cli":"^1.0.3","@commitlint/config-conventional":"^8.3.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_3.5.2_1586532787698_0.5407195644568823","host":"s3://npm-registry-packages"}},"3.5.3":{"name":"css-loader","version":"3.5.3","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@3.5.3","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"95ac16468e1adcd95c844729e0bb167639eb0bcf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-3.5.3.tgz","fileCount":16,"integrity":"sha512-UEr9NH5Lmi7+dguAm+/JSPovNjYbm2k3TK58EiwQHzOHH5Jfq1Y+XoP2bQO6TMn7PptMd0opxxedAWcaSTRKHw==","signatures":[{"sig":"MEUCICiJ/HYfqmwGqukivxR7UvioGTQmSZpwmDGEqQvQLYZVAiEAzz7KysFPyLBokhVmc+1Dd7kTRBD3YO4H9aYClcboqaA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":90758,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeotVGCRA9TVsSAnZWagAA0eAQAIHDBBzSYnNMRepPDdop\nwvnCj/NJrdoTF4YgQOV08Uzm95Rj5zzt00TKZJtSoy2qG5zOgLRw72pkc1AE\nwLPI9BBGCEPCzAfAgAB1lDpR3T+/3ctxs0C0Cv67e0pb+cYJLEeOGkEDEOcJ\nqGOsOK5X2vvMcoAIwK/qEOIdcoJKmdSQ55TtB/fJ90PAjRKdG2aSacaBeLF1\n878DBKK6K0X8hyoeclXDp0SHReRyRs1LetEbNZU2Dr5eBjMEfx7uEYTpp59S\ngsX+AntoHZndUT7Ygjg5RuwM0wR03hYtzA/3HVDI3nQqMeQ4OOcJkKG2poFy\nm0Sg4w0/n0c3Zqqo/3qAWq8gaOyF0uDulpDjQxdQRGFYzSgP1SvaMjXd0CVy\nC8P5aiWSb+P+tRSmlXz0/DNy8NTs2YB5Ke/FWOscPwCx65oeHJVzc6ymAwOO\n6JIokSzhKdhZ6sCBfWHbLhz0A1bVS3GdlL61O/iweCOWnX4yvHmkS0nzFjp1\nTV0Ghid6OBmz0zN9cV4B4K2crXac/vWJmylCgFqo7MWZQsSYCQHm+cg3BxWN\nW7pdYomkL3LsRO5aqYcPFaWwfzKrsNNqYxBwt9bNjZdzqAWToc0a5YNVS+Fq\nBz2h/HIo9VumMAbA9zNjoOhgleUAvbVPPcPlZHfge94JMw+HIbDHMZuzNV1Y\nMQVX\r\n=wgZj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 8.9.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"3a1f1f2f19dd61d2be77afce3def2f616320eede","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.14.4","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","semver":"^6.3.0","postcss":"^7.0.27","camelcase":"^5.3.1","icss-utils":"^4.1.1","loader-utils":"^1.2.3","schema-utils":"^2.6.6","normalize-path":"^3.0.0","postcss-value-parser":"^4.0.3","postcss-modules-scope":"^2.2.0","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^25.4.0","sass":"^1.26.3","husky":"^4.2.5","memfs":"^3.1.2","eslint":"^6.8.0","del-cli":"^3.0.0","webpack":"^4.43.0","es-check":"^5.1.0","prettier":"^2.0.5","cross-env":"^7.0.2","@babel/cli":"^7.8.4","babel-jest":"^25.4.0","strip-ansi":"^6.0.0","url-loader":"^4.1.0","@babel/core":"^7.9.0","file-loader":"^6.0.0","lint-staged":"^10.1.7","npm-run-all":"^4.1.5","sass-loader":"^8.0.2","postcss-loader":"^3.0.0","@commitlint/cli":"^8.3.5","standard-version":"^7.1.0","@babel/preset-env":"^7.9.5","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.20.2","eslint-config-prettier":"^6.11.0","@webpack-contrib/defaults":"^6.3.0","@commitlint/config-conventional":"^8.3.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_3.5.3_1587729733519_0.5078223178681842","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"css-loader","version":"3.1.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@3.1.0","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"6f008b993b8ce812e6bab57f3cbfdc7a7cf28685","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-3.1.0.tgz","fileCount":16,"integrity":"sha512-MuL8WsF/KSrHCBCYaozBKlx+r7vIfUaDTEreo7wR7Vv3J6N0z6fqWjRk3e/6wjneitXN1r/Y9FTK1psYNOBdJQ==","signatures":[{"sig":"MEUCIQDTfuw0vzCRDAmfoAGrji5kVvgii9G8RN6VQG50+PPXQgIgTCmGV6c4QXKZZNN306zODS+2f11JSZ5SV0g/cl4GEG4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77167,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdMEnHCRA9TVsSAnZWagAA47QQAKDzJzRKhYWndrfMqdet\nJzdoFS10GvLm0WA2u+TpssDWX14AeKYkSdR/wYdlaeelgJtYtro9K856P89k\n6SnXmbh+kEnqTCoYvFkA5WgTXhfKYq1KCzur2y7+Ciac5Mytgklt8NsvU+0y\npogqrYLOfiZuhxS8kOZ5K+i9WjtaNMdKiq9Rto8UkeoHNSMR83Im2v0L4kf0\nu+0sGyGbf+iU9dtm+g55BIr/m2c0UYMoam8zjd4vzI/eaKMF/XpJMQcOdMgb\nT3/rfd2nna9Pf2RA5+AOPmB92kNAmfsowQpwPO/noDffq1o+CSwY8n0S09XH\nqCr+hC79oKri2k1R7mkQl8A6OH3idsZhkAJj4/M0CkyhjNohiIyg5vzuMX5s\nxHGXIWFxG2VwW9sB/hUFz4SCYKVVD0f0vEiHxUOla/3YWseVOkVwq0G89dok\ngJxwzZr3X6ouDDQNliKFsaPYwSpYSJWvffKxFJWXAupXP+i1ux6Nj3mXtH1Q\nrrqYChGPYEz/lhLb/YjlVr4cLP5vt23l87blUYI4hKfCeqNoXK/rRFM5Lux1\nWa31cMqpo6lVqKRCSF525LeVcaZOVaBGJGuwZNkIz940O1bYJ79GgMkIzB58\nPhJ5MNRhizBdpbOzNMliLXhIAxw44B7sMGcS8+mvyFRQRPB/DuT8oSDA/3ZK\n98Tn\r\n=hGXL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 8.9.0"},"gitHead":"926ebbd7922fb0044df1674a4c930bd1a95790d7","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"cross-env NODE_ENV=test npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --ignore \"src/**/*.test.js\" --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache src test","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"cross-env NODE_ENV=test jest --watch","lint:prettier":"prettier \"{**/*,*}.{js,json,md,yml,css}\" --list-different","test:coverage":"cross-env NODE_ENV=test jest --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.10.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","postcss":"^7.0.17","camelcase":"^5.3.1","icss-utils":"^4.1.1","loader-utils":"^1.2.3","schema-utils":"^2.0.0","normalize-path":"^3.0.0","postcss-value-parser":"^4.0.0","postcss-modules-scope":"^2.1.0","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.0.0","jest":"^24.8.0","sass":"^1.22.5","husky":"^3.0.0","eslint":"^5.16.0","del-cli":"^2.0.0","webpack":"^4.35.0","es-check":"^5.0.0","prettier":"^1.18.2","cross-env":"^5.2.0","memory-fs":"^0.4.1","@babel/cli":"^7.5.0","babel-jest":"^24.8.0","jest-junit":"^6.4.0","strip-ansi":"^5.2.0","@babel/core":"^7.5.4","file-loader":"^4.0.0","lint-staged":"^9.2.0","npm-run-all":"^4.1.5","sass-loader":"^7.1.0","postcss-loader":"^3.0.0","@commitlint/cli":"^8.1.0","standard-version":"^6.0.1","@babel/preset-env":"^7.5.4","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.18.0","eslint-config-prettier":"^6.0.0","@webpack-contrib/defaults":"^5.0.2","commitlint-azure-pipelines-cli":"^1.0.2","@commitlint/config-conventional":"^8.1.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_3.1.0_1563445702305_0.4045000212172769","host":"s3://npm-registry-packages"}},"7.1.4":{"name":"css-loader","version":"7.1.4","description":"css loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack/css-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 18.12.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=main","security":"npm audit --production","lint:prettier":"prettier --cache --list-different .","lint:js":"eslint --cache .","lint:spelling":"cspell --cache --no-must-find-files --quiet \"**/*.*\"","lint":"npm-run-all -l -p \"lint:**\"","fix:js":"npm run lint:js -- --fix","fix:prettier":"npm run lint:prettier -- --write","fix":"npm-run-all -l fix:js fix:prettier","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"husky && npm run build","release":"standard-version"},"peerDependencies":{"@rspack/core":"0.x || ^1.0.0 || ^2.0.0-0","webpack":"^5.27.0"},"peerDependenciesMeta":{"@rspack/core":{"optional":true},"webpack":{"optional":true}},"dependencies":{"icss-utils":"^5.1.0","postcss":"^8.4.40","postcss-modules-extract-imports":"^3.1.0","postcss-modules-local-by-default":"^4.0.5","postcss-modules-scope":"^3.2.0","postcss-modules-values":"^4.0.0","postcss-value-parser":"^4.2.0","semver":"^7.6.3"},"devDependencies":{"@babel/cli":"^7.24.8","@babel/core":"^7.25.2","@babel/preset-env":"^7.25.3","@commitlint/cli":"^19.3.0","@commitlint/config-conventional":"^19.2.2","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^30.0.0","cross-env":"^7.0.3","cspell":"^8.13.1","del-cli":"^5.1.0","es-check":"^7.2.1","eslint":"^8.54.0","eslint-config-prettier":"^9.1.0","eslint-plugin-import":"^2.29.0","file-loader":"^6.2.0","husky":"^9.1.4","jest":"^30.0.0","jest-environment-jsdom":"^30.0.0","less":"^4.2.0","less-loader":"^12.2.0","lint-staged":"^15.2.8","memfs":"^4.11.1","mini-css-extract-plugin":"^2.9.0","npm-run-all":"^4.1.5","postcss-loader":"^8.1.1","postcss-preset-env":"^9.6.0","prettier":"^3.3.3","sass":"^1.77.8","sass-loader":"^14.2.1","standard-version":"^9.5.0","strip-ansi":"^6.0.0","style-loader":"^3.3.4","stylus":"^0.63.0","stylus-loader":"^8.1.0","url-loader":"^4.1.1","webpack":"^5.93.0"},"keywords":["webpack","css","loader","url","import"],"gitHead":"5b795afc2fb928e548a06040b1964304f101a2fc","_id":"css-loader@7.1.4","_nodeVersion":"24.11.1","_npmVersion":"11.6.2","dist":{"integrity":"sha512-vv3J9tlOl04WjiMvHQI/9tmIrCxVrj6PFbHemBB1iihpeRbi/I4h033eoFIhwxBBqLhI0KYFS7yvynBFhIZfTw==","shasum":"8f6bf9f8fc8cbef7d2ef6e80acc6545eaefa90b1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-7.1.4.tgz","fileCount":15,"unpackedSize":142112,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDWBYISaOp6TY3vSPcsjWgeyK5VtwpBEiLHhK/iJ9SYUQIhAJZF672IbsEi/V8a3Lrey4j/tCP67929Bo6aeOKSXCjA"}]},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/css-loader_7.1.4_1771248477577_0.736491728204999"},"_hasShrinkwrap":false},"0.14.4":{"name":"css-loader","version":"0.14.4","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.14.4","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"2989ba629a3a2bd92ea04254b4a5291eb365352d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.14.4.tgz","integrity":"sha512-tOLKEbNceLnZ1JeSZZ0uw9V9RIxSMZxM8+Cdcq+EnL9k/dXhzroiG3cjusBqnlU7kxqKeDElOeiD1Z93ViXU+g==","signatures":[{"sig":"MEUCIGfmmsDULmYC3+3AuGEi6VlqEbXOvAR/T/s7ErQYP697AiEAqbAPnDg+spVTlHbWZNpu2zruV+pTEiCUKf6YPcsImZo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"2989ba629a3a2bd92ea04254b4a5291eb365352d","gitHead":"4a55bb861b6f8793425896f873c558178b5bd8b8","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"1.4.23","description":"css loader module for webpack","directories":{},"dependencies":{"clean-css":"^3.1.9","fastparse":"^1.1.1","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"mocha":"^2.2.4","should":"^5.2.0","istanbul":"^0.3.13","coveralls":"^2.11.2"}},"0.18.0":{"name":"css-loader","version":"0.18.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.18.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"deecd9ad99bc47611e811b1c8cacc572e23ddad8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.18.0.tgz","integrity":"sha512-sJCEYEEl0bTFeVq1x5b998lLuLhXlViL4iFTjH5H6AWXtwA2HYogATR2U8bNI5zKCf/Kf+JONRFJ5/2VVS8cUQ==","signatures":[{"sig":"MEUCIQChQPuipHiAGHfpgTNHp1Yo6lpoDGObs/MfMOoGS4EUNgIgYQvtug8eJ3Y2YHCEhPwPg7ROz4S6G3oDK6W4nUJvCQQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"deecd9ad99bc47611e811b1c8cacc572e23ddad8","gitHead":"b6d12a41dad74268a4d0163530a09ac799547c7a","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.10.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.4","dependencies":{"cssnano":">=2.6.1 <4","postcss":">=4.1.11 <6","loader-utils":"~0.2.2","source-list-map":"^0.1.4","postcss-modules-scope":"0.0.8","css-selector-tokenizer":"^0.5.1","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.12"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"0.14.3":{"name":"css-loader","version":"0.14.3","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.14.3","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"e07b1a5ebdce8f966e7017be2bfffc3f9bcefc33","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.14.3.tgz","integrity":"sha512-eDxA3Eb1aSvArMfJmwsDoF5j7fci0v8FaHRMoQk3fioT3jlqMTChI7KV2n3jN2BQGOHv5GGVZtNBFHNcLLiFiw==","signatures":[{"sig":"MEUCICVSxgP52OBi79C4iA5/iLWcEmBo9hN/9imfhGNt7McZAiEAvWYt8trXKuXm4BLgCtS3El511eTFIh3XL4UKJRFx+XA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"e07b1a5ebdce8f966e7017be2bfffc3f9bcefc33","gitHead":"b0c89ebb73a154c5d9fffdb35865795ef2358f22","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.10.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.2","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.1.1","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"mocha":"^2.2.4","should":"^5.2.0","istanbul":"^0.3.13","coveralls":"^2.11.2"}},"0.14.2":{"name":"css-loader","version":"0.14.2","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.14.2","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"b24ddee3c9496faf51237d31a4091ce90cb5bfa2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.14.2.tgz","integrity":"sha512-u2QhRtieLMb0+Sj4RvAXZFzxPyACUJdbi/+oe7BdH1+4K1axCnrnrlG6SK943b32w0w4QHMW9QQl+vQAxoOLOg==","signatures":[{"sig":"MEUCIQCrKQCv0RLBxc8wp5khLsbPKuBRu9mcCnhaaiVynRVjbQIgG5tBw746aulbAIazQF1F18IlVhB7HO2ZI1WrhQfh+wU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"b24ddee3c9496faf51237d31a4091ce90cb5bfa2","gitHead":"ef5cacda025de94b4059fdcf9990cc1a9fdf8228","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.10.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.2","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.1.1","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"mocha":"^2.2.4","should":"^5.2.0","istanbul":"^0.3.13","coveralls":"^2.11.2"}},"0.14.1":{"name":"css-loader","version":"0.14.1","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.14.1","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"3bc052411e09ecadbf849e1ca1cba25364f78c2e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.14.1.tgz","integrity":"sha512-Aq1V6JpeGu8l1A09vHSEuO92HCXc+aRFFycs8i/CCVq9nat/cBfS34epIxTMxTsA4utVuU9VnadKz0dEpDSFNg==","signatures":[{"sig":"MEUCIH4U5oep2/0UGmi2bVN1NHZjM8GdsbcHxe4Ps7v3AJ8uAiEAqrkvcEb+T1yYNt5DIZvUo+MZqi5624sCcA7t1yxgs/8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"3bc052411e09ecadbf849e1ca1cba25364f78c2e","gitHead":"29433bcab790a2f547844148a4a497e27c201ca8","scripts":{"test":"mocha","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.10.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.2","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","istanbul":"^0.3.13","coveralls":"^2.11.2"}},"0.14.0":{"name":"css-loader","version":"0.14.0","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.14.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"7e5acf45fc4d620dedda5b6de78f6738f1a2048b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.14.0.tgz","integrity":"sha512-jeCAuephN+uUuqgCEt5SFy0+4IJrRcq+MP/PuJ9UNOfN+0ImkSnBfcTkneh6MazpM0WgTRMwgVbgFAfnVhqmPQ==","signatures":[{"sig":"MEUCICugyqQ9bjpEHRJvLwP5ad34F8SCJxWVnhTGFIILlpkuAiEAw/fOrMN0+oqF4yI+q9UBjdku1sgRn/eEWxOi3DY+yJk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"7e5acf45fc4d620dedda5b6de78f6738f1a2048b","gitHead":"20a86d87f1537f1401e0b5d067abff6b6e0a9c05","scripts":{"test":"mocha","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.10.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.2","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","istanbul":"^0.3.13","coveralls":"^2.11.2"}},"0.10.1":{"name":"css-loader","version":"0.10.1","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.10.1","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"3f1a3a77bd5f82fb93fd37fb5c13a1fc6d8fc8fe","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.10.1.tgz","integrity":"sha512-mX8JeqHtrsmWAN3ThSHsgly0l1X3CUYlkf4IC91MSJAj/c0A2jab+GmjBkvcA11Aq0327bfCOnoKqho7CZrz4Q==","signatures":[{"sig":"MEQCIDrJXtxikYeg3euS+UZV3DBmGfOV1POhGs34/S3R3AWiAiBIaV3PsjAyMMsP2HMeovdIR+Fkd4ldR3djHJ/jUlqzCw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"3f1a3a77bd5f82fb93fd37fb5c13a1fc6d8fc8fe","gitHead":"d1598603419d969f3bf382862e5b0090c6b6d197","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"2.7.4","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.2","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"}},"7.0.0":{"name":"css-loader","version":"7.0.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@7.0.0","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"3456a621ce51f9dfd12b9674bfc7527c5e1821db","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-7.0.0.tgz","fileCount":15,"integrity":"sha512-WrO4FVoamxt5zY9CauZjoJgXRi/LZKIk+Ta7YvpSGr5r/eMYPNp5/T9ODlMe4/1rF5DYlycG1avhV4g3A/tiAw==","signatures":[{"sig":"MEYCIQCoSHqrKDUW8Dyft2XnPnfcbNGMSSJq0sPpeCvSg5KQ3wIhAN5DqSeIyh6Ks8CL7hQvd2HuTEmFLv7eySPiOiUxS9IO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":132114},"main":"dist/cjs.js","engines":{"node":">= 18.12.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"96e6ff4ee6514a2c6fa5d0abcd8b8f445386b6da","scripts":{"fix":"npm-run-all -l fix:js fix:prettier","lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","fix:js":"npm run lint:js -- --fix","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","fix:prettier":"npm run lint:prettier -- --write","lint:prettier":"prettier --cache --list-different .","lint:spelling":"cspell --cache --no-must-find-files --quiet \"**/*.*\"","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"10.2.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"18.19.0","dependencies":{"semver":"^7.5.4","postcss":"^8.4.33","icss-utils":"^5.1.0","postcss-value-parser":"^4.2.0","postcss-modules-scope":"^3.2.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.1.0","postcss-modules-local-by-default":"^4.0.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.7.0","less":"^4.2.0","sass":"^1.69.7","husky":"^9.0.11","memfs":"^4.8.1","cspell":"^8.6.1","eslint":"^8.54.0","stylus":"^0.63.0","del-cli":"^5.1.0","webpack":"^5.89.0","es-check":"^7.1.0","prettier":"^3.2.5","cross-env":"^7.0.3","@babel/cli":"^7.23.4","babel-jest":"^29.7.0","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.23.7","file-loader":"^6.2.0","less-loader":"^12.2.0","lint-staged":"^15.2.2","npm-run-all":"^4.1.5","sass-loader":"^14.1.1","style-loader":"^3.3.4","stylus-loader":"^8.1.0","postcss-loader":"^8.1.1","@commitlint/cli":"^19.2.1","standard-version":"^9.5.0","@babel/preset-env":"^7.23.7","postcss-preset-env":"^9.5.4","eslint-plugin-import":"^2.29.0","eslint-config-prettier":"^9.1.0","jest-environment-jsdom":"^29.7.0","mini-css-extract-plugin":"^2.7.5","@commitlint/config-conventional":"^19.1.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.27.0","@rspack/core":"0.x || 1.x"},"peerDependenciesMeta":{"webpack":{"optional":true},"@rspack/core":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/css-loader_7.0.0_1712248727238_0.408520603898588","host":"s3://npm-registry-packages"}},"0.14.5":{"name":"css-loader","version":"0.14.5","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.14.5","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"d65635b72adc487ac818a2e78b5bb9feca5352ad","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.14.5.tgz","integrity":"sha512-muJDlp7+jiZb8zoHRxAIA7zSkZqw4kdmq5MlJDx5Z+YHLKkAgAB2hsYEswOD51OOtGMZTJMHrEhgY2qTTuiiJQ==","signatures":[{"sig":"MEQCIEzhGISwbYvqc5yI4ieUemftzfSRl/9TpPJYDVo4iCx4AiBPwizS9hqT2dw6tChP5ILaGf2W6Bqa6eM2FehoC0Lw0w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"d65635b72adc487ac818a2e78b5bb9feca5352ad","gitHead":"51e11f3588c8bde66c5cd6b6d7b9bbbdeda671c4","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.10.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.2","dependencies":{"clean-css":"^3.1.9","fastparse":"^1.1.1","loader-utils":"~0.2.2","source-list-map":"^0.1.4"},"devDependencies":{"mocha":"^2.2.4","should":"^5.2.0","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"6.2.0":{"name":"css-loader","version":"6.2.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.2.0","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"9663d9443841de957a3cb9bcea2eda65b3377071","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.2.0.tgz","fileCount":16,"integrity":"sha512-/rvHfYRjIpymZblf49w8jYcRo2y9gj6rV8UroHGmBxKrIyGLokpycyKzp9OkitvqT29ZSpzJ0Ic7SpnJX3sC8g==","signatures":[{"sig":"MEUCIQCwWVgSiwKQMTpk3QYfYs5GrSfLnslVFPT2BRpauDjHCgIgZCvKE1J3VSPMY4QEslmsG2PGkrNf4WP8GY8A3VWQGRY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":116680,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg9d1QCRA9TVsSAnZWagAAgGcP/iubfqSMmg7t7vKN+Rp/\nV2EHmeiPMhd+GNC7VnuLmKOzeg5hN6X5YAWc2YqH8v17PW18JEEsgXdB8Krh\napSYDHfOPs2slJdDB1TWJr/BeF6g/yaQoG0WEpp7eS/+8Blo0qsxS7BSxhI8\nSerSL6RtqxsMQH5fjjbHkJLlf0hREYQt3Q8vjUGyw2d5IBc52NFAglsOLJSN\nqNGyLLuDJxctl0GvhtfZ22G0y13M/XMCTASH/yfpv6brzMKLAc4M/LKUI603\nm3LrwkNOfgcTwrizOC111U4QiEMXD1rXIRrXP2je7ydc96agrrtDPlUK0zh2\n/yy3eCTiUzrYsE8WCJcdK1z1BPMI/DzfGYLwS6le1Qr5LDd2OAqM8PMRIP1p\nCR+MccmlJk0h6qwl51G84VMFNDEUdfdLN7uQO43kMTQ+OKRVWTFcBOwBvLjW\n1ImoYlGNcKTjVtDkSgp9skoxALUk0AKtWkXqhxPeDyg62YOXW9D4zyl/UrOE\nOC3sCjWFZEEnQn1oPB7+eBG+69mwtKk1mK/xmkMvSClDOzvC9/hbluCxm0NZ\nrcHCLnh0CA/JQxSiyML/V7/o8qFvAdHOZK0jfIBvc64u8EHGqPqjV3MVgId4\n5DSFzaqBPxHKklB2w+EIa77+qovcCd0oFpBDZY6DkUnNp8V3egtpAH+3Viss\nlHt8\r\n=zMdt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"5a17c77b0e0b1202a1f325902ef529bb82fa5a78","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.16.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.22.2","dependencies":{"semver":"^7.3.5","postcss":"^8.2.15","icss-utils":"^5.1.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^27.0.6","less":"^4.1.1","sass":"^1.35.2","husky":"^7.0.1","memfs":"^3.2.2","eslint":"^7.30.0","stylus":"^0.54.8","del-cli":"^4.0.1","webpack":"^5.45.1","es-check":"^5.2.4","prettier":"^2.3.2","cross-env":"^7.0.3","@babel/cli":"^7.14.5","babel-jest":"^27.0.6","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.14.6","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^11.0.1","npm-run-all":"^4.1.5","sass-loader":"^12.1.0","style-loader":"^3.1.0","stylus-loader":"^6.1.0","postcss-loader":"^6.1.1","@commitlint/cli":"^12.1.4","standard-version":"^9.3.1","@babel/preset-env":"^7.14.7","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.23.4","eslint-config-prettier":"^8.3.0","mini-css-extract-plugin":"^2.1.0","@commitlint/config-conventional":"^12.1.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.2.0_1626725712210_0.8154016577513898","host":"s3://npm-registry-packages"}},"0.21.0":{"name":"css-loader","version":"0.21.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.21.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"50335b231152df44663f3b54bd62e24f3c8d66ec","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.21.0.tgz","integrity":"sha512-quv9VvnsmmYoVWz0BCm9ZQQ79xCNcquSVsGbuT+xsex3fZ2N+Q3/Vmq+OWppMSYf+04ijfp21+IShQKnrJbQpw==","signatures":[{"sig":"MEYCIQDWuw7dt5mduInrnZIC8dt15wy7Dd9hnbKu/kmAc1cmdQIhAIGnMFGWcODrDXtIo5i1Rp6vFbzjD5ZfOmQlO58piVki","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"50335b231152df44663f3b54bd62e24f3c8d66ec","gitHead":"05f8d227702254eb7430fcbe1ce70fdabf04f61e","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"3.3.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"4.0.0","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"~0.2.2","object-assign":"^4.0.1","source-list-map":"^0.1.4","lodash.camelcase":"^3.0.1","postcss-modules-scope":"1.0.0-beta2","css-selector-tokenizer":"^0.5.1","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"1.0.0-beta2","postcss-modules-local-by-default":"^1.0.0"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"5.0.0":{"name":"css-loader","version":"5.0.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@5.0.0","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"f0a48dfacc3ab9936a05ee16a09e7f313872e117","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-5.0.0.tgz","fileCount":17,"integrity":"sha512-9g35eXRBgjvswyJWoqq/seWp+BOxvUl8IinVNTsUBFFxtwfEYvlmEn6ciyn0liXGbGh5HyJjPGCuobDSfqMIVg==","signatures":[{"sig":"MEUCIQCCtCWVt/PWm/6VV5hNmu3KFx7imNjw+GjwR0QAN3uz2gIgJwRJXimYvlDSMwnoqAvtydHrYHz3ZSG2anXAmMykWgE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":120686,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfheabCRA9TVsSAnZWagAALSgP/jUnAf41rs1Ncu+HW+NZ\nwxsJ1xvFY+Tb5Y6u+Dk0KUgwhdOSj4Yzguvhcd3tg12UqTgmSVLva0injJto\n7v4YSTC5HK8S7LN1MUdGhogQQwk89iLztPOsXYS1pnZZm5QstZhQ3+KFVWXt\nehEZYzL04P21ZKkFLf/9Jsz3WZhVOHR1cPKGpTYAZVtCWJ5wDFuwfZnNepKK\niej16Qo236lNAgkM0DCYFRtx1Rkyvc2h167gbHKMqf54MmHv29kuLPLyBbmg\nutIBBz0mv5+3pcKjIeOITOh916ppmqi6krTkOXn+S2DaxlM+ZY9ckYXI8CRr\ntpPuW3ai5zETjJD18ICIcp99ljc8Kc8W7EA5YHFXvwBcMEPa0vq1wskI8C0W\nkamfN4xzmAiTHv33rGIChFfKZwyaJ7MjrYX4E0FxTJfjK9D1ZMDUOTQij8qr\nJ1xTLUwhHSvNGJyo61OYq1vpOGqx+rGwcfeLvfPnLQAsOmeU9Q6IbJA3GaS7\n+nRQDkKOFcXDlPKB4GfabLxhTMZmkkZF8GTHHKnCW+Stdpg5r2odtaZufcNZ\nNfqFFUDE7oRR1PAXnwJtuxb5sF6LrRJD3jmEfzGWYhTobT3CUenMleNhEik+\nIXGfcCdSFvGnAIYr2p68T+m3MgnJq+RFDmaAfYUGPmjLIH1duBy5EqYPVWEV\nVBWf\r\n=R/85\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"1351e3a2a4b05fefb9b522b6be8abb60e4f8cda4","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.14.8","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","semver":"^7.3.2","postcss":"^8.1.1","camelcase":"^6.1.0","icss-utils":"^5.0.0","loader-utils":"^2.0.0","schema-utils":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^26.5.3","less":"^3.12.2","sass":"^1.27.0","husky":"^4.3.0","memfs":"^3.2.0","eslint":"^7.11.0","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^5.0.0","es-check":"^5.1.1","prettier":"^2.1.2","cross-env":"^7.0.2","@babel/cli":"^7.11.6","babel-jest":"^26.5.2","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.11.6","file-loader":"^6.1.1","less-loader":"^7.0.2","lint-staged":"^10.4.0","npm-run-all":"^4.1.5","sass-loader":"^10.0.3","style-loader":"^2.0.0","stylus-loader":"^4.1.1","postcss-loader":"^4.0.4","@commitlint/cli":"^11.0.0","standard-version":"^9.0.0","@babel/preset-env":"^7.11.5","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.1","eslint-config-prettier":"^6.12.0","mini-css-extract-plugin":"^1.0.0","@webpack-contrib/defaults":"^6.3.0","@commitlint/config-conventional":"^11.0.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_5.0.0_1602610842623_0.8690797316140157","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"css-loader","version":"5.0.1","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@5.0.1","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"9e4de0d6636a6266a585bd0900b422c85539d25f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-5.0.1.tgz","fileCount":17,"integrity":"sha512-cXc2ti9V234cq7rJzFKhirb2L2iPy8ZjALeVJAozXYz9te3r4eqLSixNAbMDJSgJEQywqXzs8gonxaboeKqwiw==","signatures":[{"sig":"MEQCIBsvZyhpkjk33W4UoljZFvwnMCfdS07Bj6WNu6+NYfR4AiApW7mNCML6TTUccyZXrJwmwud/PV8RT65M7Czru7aNeQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":121023,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfotzfCRA9TVsSAnZWagAA4BYP/3a2i7aR0DyK1ZNCVgFr\nGWnWQNFUDU6U3MAtriMF8mhcF+spsMymMvwvyLoXJ9ppk6rgbPEE1Xo4gmwd\n+jFN+tNqVhj4G0Kqw1T+iphR7ZG2Tu6eVJORsMrIzLlG3/T59oNxxfEk4W7H\ns5My8SiYFY51TQBqX8fuHR0g1h1YXBl8MHwJG7wHs/5SfG0WAgEgvyoTomEr\nbs06ymQaqQyEQbCQNz3bmHFU9RXEFHKPzz72mySi024hE3yZP6oklMKT4hq0\n5FW4anBowAW31CFBJUnSKee8h8Qs9tKGuD9+4gh2DvAOdqPpYYO/CMdXcxbL\nHtOXPgN79b9rvgazqG1e2te+Dgm6EmuJEmX+Pw7i2R7RPb/SmAhkni6nZmPN\ngjk0jmxJh4r0b+79lLG2jq+xYqkX342hnKtJvR+5AbaugTC8DmNi3WWKgcwo\nJ0GoL6VMjfMOJP+ssTZ2gd2UTQezxnB86Wx9sfQz8LYOn+fniMuGdSuSVe72\ngEUJLvnl6wf+yQakpPpnWGbjz6eypzcNUfXqC5uf/6Jx9+WNShosdCshpl+z\nSZqsQM4r1BdinS8oav7uYr7wn3JhXYgUe/uMbXuRPFchIP13j8CrpDPbrpFE\nOpqHBtUsLCDvTkKsYYHfX2yZTICZnyhj/172wjcL3oGImGyaWvxzfSMcdE/f\nhMa0\r\n=kemP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"6412dd5a35ed01348d9cdfee41439514e62b2e3e","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.14.8","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.19.0","dependencies":{"cssesc":"^3.0.0","semver":"^7.3.2","postcss":"^8.1.4","camelcase":"^6.2.0","icss-utils":"^5.0.0","loader-utils":"^2.0.0","schema-utils":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^26.6.3","less":"^3.12.2","sass":"^1.28.0","husky":"^4.3.0","memfs":"^3.2.0","eslint":"^7.12.1","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^5.4.0","es-check":"^5.1.2","prettier":"^2.1.2","cross-env":"^7.0.2","@babel/cli":"^7.12.1","babel-jest":"^26.6.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.12.3","file-loader":"^6.2.0","less-loader":"^7.0.2","lint-staged":"^10.5.1","npm-run-all":"^4.1.5","sass-loader":"^10.0.5","style-loader":"^2.0.0","stylus-loader":"^4.2.0","postcss-loader":"^4.0.4","@commitlint/cli":"^11.0.0","standard-version":"^9.0.0","@babel/preset-env":"^7.12.1","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.1","eslint-config-prettier":"^6.15.0","mini-css-extract-plugin":"^1.2.1","@webpack-contrib/defaults":"^6.3.0","@commitlint/config-conventional":"^11.0.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_5.0.1_1604508894390_0.5514396388102405","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"css-loader","version":"5.0.2","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@5.0.2","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"24f758dae349bad0a440c50d7e2067742e0899cb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-5.0.2.tgz","fileCount":17,"integrity":"sha512-gbkBigdcHbmNvZ1Cg6aV6qh6k9N6XOr8YWzISLQGrwk2mgOH8LLrizhkxbDhQtaLtktyKHD4970S0xwz5btfTA==","signatures":[{"sig":"MEQCIBhCb5lCuXCJ1qDN8pqHq7S8QACI1rGsH0zGDUXlJQlpAiBZfMMcrkttqfBftQLLZiIS/D1dWd4f68gLyBugBel4mw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":121866,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgITqJCRA9TVsSAnZWagAAd2UQAJeMjAhC3hEWosAGkYmV\nC/We3ICycSSN60Y1yyYvvEbNvfgeJ5DVJ26wLdq8fFqblwWAAf/BdjYIk0Qp\nPQlfqBDbbWbFboHr+eKl+TMzDdebzn2q5l07ImvxxQy95YQMO2KwXbYUX7RV\n02KWk63AzsYMOPcrAMFST/3Mmbmzeh87d4aQ7uf5Mdd3CV/RRoQTnhnGDFhS\nrogtHYmSXXOi6gVCSAmbAi+1Icv3pl9HwYWeTjuUtPu8FxSfucFW2QbgdyEz\ndNFnbvXh1cqZwl3JJFJM5QYjfI6NloadU0ZyoS+KD/c4jNdObvq/H+JgRzKy\n6DyAONGcL0uhtut1yYWMil/PxrVdPvS98RPyCF13/dz/YK9lT3diQvU3CWDy\nBroKFimj4Js1xAHImGAmvRhrxkZ8FKx+hoG32ymeQLDR0Agy/r0f7rk1dmct\nmZiTOVmNpHwlAS9G2pzYau8ODjf+PCnLjz9/E3eNA+ww1sxZrLnFc61UeBI0\ntAxksAhUN2S6L1cG9ISGkepcztxBlBP56v7ZNFqaUv/KzSSO6YmopLPutgu7\nISaK2GJd/fQVVNx9KhP3LVF94++0xvLotuHYQAFQfLUh0U12F+qeUDJ8LZET\n+XBBhVkmlsaVZzI9JY7cgfcTs8q4t4EusEMyrAiixCsXm1NRNzqCgqi/iXKx\nH/Xs\r\n=GN23\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"34a382e1a8acab7aae0f0d4718844f9bad3e971d","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.5.2","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.20.1","dependencies":{"cssesc":"^3.0.0","semver":"^7.3.4","postcss":"^8.2.4","camelcase":"^6.2.0","icss-utils":"^5.1.0","loader-utils":"^2.0.0","schema-utils":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^26.6.3","less":"^4.1.1","sass":"^1.32.6","husky":"^4.3.8","memfs":"^3.2.0","eslint":"^7.19.0","stylus":"^0.54.8","del-cli":"^3.0.1","webpack":"^5.20.1","es-check":"^5.2.0","prettier":"^2.1.2","cross-env":"^7.0.3","@babel/cli":"^7.12.13","babel-jest":"^26.6.3","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.12.13","file-loader":"^6.2.0","less-loader":"^7.1.0","lint-staged":"^10.5.3","npm-run-all":"^4.1.5","sass-loader":"^10.1.0","style-loader":"^2.0.0","stylus-loader":"^4.3.0","postcss-loader":"^4.0.4","@commitlint/cli":"^11.0.0","standard-version":"^9.0.0","@babel/preset-env":"^7.12.13","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.1","eslint-config-prettier":"^7.2.0","mini-css-extract-plugin":"^1.3.5","@webpack-contrib/defaults":"^6.3.0","@commitlint/config-conventional":"^11.0.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_5.0.2_1612790408986_0.6475942626613231","host":"s3://npm-registry-packages"}},"0.7.0":{"name":"css-loader","version":"0.7.0","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.7.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"0c69aedb61542da9f0abec4054e675dd08193bcf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.7.0.tgz","integrity":"sha512-hHNZfue0Khu+zrJXxJa12B6rdbIBX7qFezBnAW8+/Dnd7gbIBKA2GCZYxuP5lS0zhpykYTU3uFCw47MUYm8/qg==","signatures":[{"sig":"MEQCIGVqoJ1clniqpNTXcDFKkZ+Sng1FyhyJdV9kEBSQnAQqAiA0IreXO/6ayDHUeEOUMx9/qhsrmbZ0WN4UHzUJ2h4svw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"1.4.3","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"~0.2.2"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"0.7.1":{"name":"css-loader","version":"0.7.1","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.7.1","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"c5781fb16253dadb38794c6c327d3b4ada625823","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.7.1.tgz","integrity":"sha512-xabovg1zAVTfuQQpEZtjZIYGQjj4ZrKNfa/DAGpS2/Q9ahjd6XuxUg+rEdLPhJBPYnOJcggz+Fl/HYpe3UQpAw==","signatures":[{"sig":"MEUCIQChRqMcY3Wa5if2ZfOsw+0AkXmdmsFs3WBykLv3t3Eq7gIgWeuwnTMNoIYE4MJV+GD7hifItDwVW4fTNtpP8CmY8oQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"c5781fb16253dadb38794c6c327d3b4ada625823","gitHead":"3e14379d4d1d8a0bce1bec14723c49ae0d540d40","scripts":{"test":"mocha --reporter spec"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git@github.com:webpack/css-loader.git","type":"git"},"_npmVersion":"1.4.16","description":"css loader module for webpack","directories":{},"dependencies":{"csso":"1.3.x","source-map":"0.1.x","loader-utils":"~0.2.2"},"devDependencies":{"mocha":"1.8.x","should":"1.1.x"}},"4.0.0":{"name":"css-loader","version":"4.0.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@4.0.0","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"814434d4e1e2d5f430c70e85e78268db7f3cced1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-4.0.0.tgz","fileCount":16,"integrity":"sha512-/7d5slKnmY2S39FNifJ7JQ8MhcMM/rDIjAZ2Sc/Z8lnOWOmc10hijg28ovBtljY364pQaF01O2nj5AIBDnJ9vQ==","signatures":[{"sig":"MEUCIDSxVyMZZ5jVze4f1lrJffnKyyw7HyEe2A96XL/dgsZ7AiEAsbeax+WzG58+9up3WLk68IPzKQEByuVR2WnjdT7apYU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":105730,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHFpRCRA9TVsSAnZWagAAwl4P/3wKm4vHV8YNJNVlozq7\nbuA38bypU232faJM/jz97+EVb54fMQ+86cxEh+6oXy54BUHo5V4e0WEbGZs8\n8MUtmkrO18yehVPkfSRL3e8FtFL1SEq+kO2t60QUWpa1h5Ehc1YCJSNJBNu7\nH2LEiEmkdxPfo3n2+40SsFmcwAP2GA7p471cvfr7HQaFfUgvTXsRhvjeGlw1\nC9beISfHNZesHmpG/nXV4Q/QySTvvW9aj/+QVMmwH1pwbd+yP7jp2Y/k8x8r\n/7vXS+hjIb+5PIgsLBKI6bfK/Ymk7bJjunlPtLg9txsmrJgx1htKog554HHB\nH0naR5xk/DUm4B29uuz+J5H7bOUbjrp/i/8VWmBHkcmQEpueUQg0U7rgepT5\nP6xN9rRgmsUfWfPp7L4/U1ZueZAwaEpirNyswXU8xaXi+q6UHwL9Jn5q7bkP\nQFK5lfxcY5xOCRCqrcY+1qYHeM1FnZHWIQ4z1L7v73Ed8LmjnwDhSdFww6Kb\ndrdGQ9Irwvq4yHEnCjYImjvr3KMTCXP6wxyGZdyhH71cG/5vOhQDFl9Rcpqc\n9RNc+8USKrXLAkYYs1yQZY3+HESwdKNCkqwNe/D1r6oGTPIo5Qdh9P+kEJuW\nlK7WrK+wf6+bZtc7aPx7YU197uJ32z78dTNV9PccoDxCl3bFes/nD2K10sy4\nJZu4\r\n=JdUW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"7857d8f75937ad34e6250859e8ff0bbf2b88f098","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.14.6","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","semver":"^7.3.2","postcss":"^7.0.32","camelcase":"^6.0.0","icss-utils":"^4.1.1","loader-utils":"^2.0.0","schema-utils":"^2.7.0","normalize-path":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^2.2.0","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.3"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^26.1.0","sass":"^1.26.10","husky":"^4.2.5","memfs":"^3.2.0","eslint":"^7.5.0","del-cli":"^3.0.1","webpack":"^4.44.0","es-check":"^5.1.0","prettier":"^2.0.5","cross-env":"^7.0.2","@babel/cli":"^7.10.5","babel-jest":"^26.1.0","strip-ansi":"^6.0.0","url-loader":"^4.1.0","@babel/core":"^7.10.5","file-loader":"^6.0.0","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","sass-loader":"^9.0.2","style-loader":"^1.2.1","postcss-loader":"^3.0.0","@commitlint/cli":"^9.1.2","standard-version":"^8.0.2","@babel/preset-env":"^7.10.4","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.22.0","eslint-config-prettier":"^6.11.0","mini-css-extract-plugin":"^0.9.0","@webpack-contrib/defaults":"^6.3.0","@commitlint/config-conventional":"^9.1.1","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.27.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_4.0.0_1595693648892_0.1976436717317609","host":"s3://npm-registry-packages"}},"0.25.0":{"name":"css-loader","version":"0.25.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.25.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"c3febc8ce28f4c83576b6b13707f47f90c390223","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.25.0.tgz","integrity":"sha512-LPSBio8xwqG87UHSAgyDOcBo1efFBymwCN1XcnvmNs26bvOhxqeFDZyQSmeKeXV4pMzAcS40w2jbj+oB+QV1lA==","signatures":[{"sig":"MEUCIDH8Qo93aVytT9M6UrUsVod9NVsu86O7/Qa0t1lSU7XLAiEA5qMqm4vOhb27hNxT6Qpy5dygs5caD0n2NydOpueQY1M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"c3febc8ce28f4c83576b6b13707f47f90c390223","engines":{"node":">=0.12.0"},"gitHead":"22f6621a175e858bb604f5ea19f9860982305f16","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"3.8.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"5.10.1","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"~0.2.2","object-assign":"^4.0.1","source-list-map":"^0.1.4","babel-code-frame":"^6.11.0","lodash.camelcase":"^3.0.1","postcss-modules-scope":"^1.0.0","css-selector-tokenizer":"^0.6.0","postcss-modules-values":"^1.1.0","postcss-modules-extract-imports":"^1.0.0","postcss-modules-local-by-default":"^1.0.1"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"},"_npmOperationalInternal":{"tmp":"tmp/css-loader-0.25.0.tgz_1473090923812_0.8617390526924282","host":"packages-12-west.internal.npmjs.com"}},"6.6.0":{"name":"css-loader","version":"6.6.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.6.0","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"c792ad5510bd1712618b49381bd0310574fafbd3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.6.0.tgz","fileCount":17,"integrity":"sha512-FK7H2lisOixPT406s5gZM1S3l8GrfhEBT3ZiL2UX1Ng1XWs0y2GPllz/OTyvbaHe12VgQrIXIzuEGVlbUhodqg==","signatures":[{"sig":"MEUCIAWTDbDtK59HLWjnC1qNqPBSwn3Z4BBpwTb9B64LUhPZAiEA7GUjL+MQr/Gnm2uzD4OkRVxpeEq9B7tDuVgXhSuOJVs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":129482,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+mFSCRA9TVsSAnZWagAAlZYP/RAXHfHl+NqGZ08iSf9E\n02tJFGXwmabbeYN/k3LWyY1dee+169RnmCxQiWTphVqa/SVxPUiCfvcLMB4K\ngZHbs8gIBEIqbSZw92BSILHhNLrybtbCMmezc4tLzkCpV1ioEY+HQBOBzhJB\nwMoH374+ANVtfMVO5aHeN3C3cZhNpg1urGSWLBmnQ2DSt47Hn9Tc0pCCvc2X\neBUuMmyb+b/Z7WFW3MHVfGRr+OpPxhMmxXFF6hXaXPgfMG3PHBiV0GG1GsqA\nYfRqCMu3PTd23W3f0ZGOFcu70yu1ykRjqRBKF5oL7YPmvbW1IcIRMoWgMPJT\nQF6I0qRU/Z514gRMhq2rZK2OhFraU82srGDPGMjhpikgbhpFm2lEKxW+Q+c5\nxLite6vAAfI2g2UrOU5YbkspebcuZFwPjd9U5nBw7pQRaw2nTXfG4yGl9elb\ng+YD97MbkFg/LK8zQCIJ7V5IXaiAbUwl38BL7DMrRyfyaDVSKIbevkErRbI5\ntHGYD78KZkHyeU6kMNL+BqbSu+b7en77vl7Z+mr+6A0iWrFVElfrj69wog1K\nILUFPBTUx5W7SeAKymDxLbmMAqLT3sJot+rSdEAX5XO9kCDePx+5mMgFYAra\nBDQvsiGTxjbCS2hNMt8oqjXgxKThAepfE10g3Y1bntHuxgTgYaQQaQk02W5s\nuBE3\r\n=J8Ti\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"5d6be099c3dbd099b38bbfe1ae04c64b29fa7944","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"8.3.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.22.9","dependencies":{"semver":"^7.3.5","postcss":"^8.4.5","icss-utils":"^5.1.0","postcss-value-parser":"^4.2.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^27.4.7","less":"^4.1.1","sass":"^1.49.0","husky":"^7.0.1","memfs":"^3.4.1","eslint":"^8.7.0","stylus":"^0.56.0","del-cli":"^4.0.1","webpack":"^5.67.0","es-check":"^6.0.0","prettier":"^2.5.1","cross-env":"^7.0.3","@babel/cli":"^7.16.8","babel-jest":"^27.4.6","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.16.12","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^12.3.2","npm-run-all":"^4.1.5","sass-loader":"^12.4.0","style-loader":"^3.1.0","stylus-loader":"^6.1.0","postcss-loader":"^6.2.1","@commitlint/cli":"^16.1.0","standard-version":"^9.3.1","@babel/preset-env":"^7.16.11","postcss-preset-env":"^7.2.3","eslint-plugin-import":"^2.25.4","eslint-config-prettier":"^8.3.0","mini-css-extract-plugin":"^2.5.3","@commitlint/config-conventional":"^16.0.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.6.0_1643798866246_0.8261260735455958","host":"s3://npm-registry-packages"}},"3.6.0":{"name":"css-loader","version":"3.6.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@3.6.0","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"2e4b2c7e6e2d27f8c8f28f61bffcd2e6c91ef645","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-3.6.0.tgz","fileCount":16,"integrity":"sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==","signatures":[{"sig":"MEYCIQCDH8Q7UOkSAX3U4/8WBilPXZJGGAwWFCxAOCDMmzn6IwIhAOPJdPodrP9RnHmSSeF2qPP1txhcMtJNyb9dTzuC8La5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":91698,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe5OI7CRA9TVsSAnZWagAA/uEP/0OFayMet+/3ObDJ5Au/\no7kwksFj/HdH47uMQbdnnpfQdAD/Mczwg96hfv8a2cJu10Miv7kCNoTlbt9e\nh/+gfOfuP0UxZvmoyEUC7c0eATvuzOEGtik/EPtkCKBO3VsvofbFRRgeJyTy\nB7emV1PCNYkoodJyduIM5Q3Ox8KlPIUSbGtiTYKouySg7zq1qvZ9ci6NgqxL\nbGb6O6v9F7dJQywnt8579eCgPHcyXYLMCv8R/9tvfONQe0g3BfPJ62EAatT9\nw1grmWNDK6cUZsRR+vfppRqWEY4G6FBTi6Ndz9PU7MDIIo5bXE0jIoIZ+/hb\nXedXjB/dK0QAu7sOe7LtFEG+UEwEThrrJi1C8WiXdroy8gagZl4pqqULVR7n\nYyHh8TP4ltO8AgmRnsUWsTXarO3AkoT/pHIx6Q1uVAurSETczDvffhQeayVy\nwbU4wRXoZfWQuMSE+ZEMG2LGSyCgMVEFVHamwnxXJhi8JfcghkMF+MnlxpC/\nx9kMMiYH6+SMxXWK8yTz0eCMTpiFJ4NrqkBGK8SGni5P2TC7irM6ngDxACxN\nHY1UQxTKnYp21Tf4gShoOFpM9+ywn+V/2dR9rQgB9Pq5naiJx2WVBAOOCCQx\nEgiNzuH1z5Dq7cwGnk9U4RM5+KDCvbp/DJOEobdRAE2iva3NU1gxSuWOSw+Q\nWYbL\r\n=EWKx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 8.9.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"22e16e2fc88f920571219570953d3da5702d4fdb","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.14.5","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","semver":"^6.3.0","postcss":"^7.0.32","camelcase":"^5.3.1","icss-utils":"^4.1.1","loader-utils":"^1.2.3","schema-utils":"^2.7.0","normalize-path":"^3.0.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^2.2.0","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^25.5.4","sass":"^1.26.8","husky":"^4.2.5","memfs":"^3.2.0","eslint":"^6.8.0","del-cli":"^3.0.1","webpack":"^4.43.0","es-check":"^5.1.0","prettier":"^2.0.5","cross-env":"^7.0.2","@babel/cli":"^7.10.1","babel-jest":"^25.5.1","strip-ansi":"^6.0.0","url-loader":"^4.1.0","@babel/core":"^7.10.2","file-loader":"^6.0.0","lint-staged":"^10.2.10","npm-run-all":"^4.1.5","sass-loader":"^8.0.2","postcss-loader":"^3.0.0","@commitlint/cli":"^8.3.5","standard-version":"^8.0.0","@babel/preset-env":"^7.10.2","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.21.2","eslint-config-prettier":"^6.11.0","@webpack-contrib/defaults":"^6.3.0","@commitlint/config-conventional":"^8.3.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_3.6.0_1592058426808_0.8652854653169408","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"css-loader","version":"3.2.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@3.2.0","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"bb570d89c194f763627fcf1f80059c6832d009b2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-3.2.0.tgz","fileCount":16,"integrity":"sha512-QTF3Ud5H7DaZotgdcJjGMvyDj5F3Pn1j/sC6VBEOVp94cbwqyIBdcs/quzj4MC1BKQSrTpQznegH/5giYbhnCQ==","signatures":[{"sig":"MEYCIQDuJda75xHQbBgbFAdWL8vNZ/+uqGxwBR5rXALZFxLsUQIhALYGKdMC1OZqQbzGMWqUTJU/CLN2GG1BeQ02Nqz8Joo/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78617,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSXsLCRA9TVsSAnZWagAAZbIP/03NjSp00yjOtIhe9jrC\nGF+ZuEnCdzjrV2E8bhBH7oKLyEi8JYbVxTaqpGeUhjZJR5PN15cPH+dHIZaL\nR84If7eXgm11HhLI7VxpAy7vuK10K/+XS2dFZPm323EEg97r0VVnXJhqmSD0\n1FBEhIVmC88U6iFKqCJxAzeQhGEr6uIGalQAzx1H+FfACm4vmEYo6OFZvLXr\nnPbhOXYzUPpUN+4RUCI/jWM9aXPWMcX8R7cmaxJgOJDm39rdztltg55hlcEB\nv0rKB1NjC0NgpHiSCwbVJsOa+BT8P0zhExe1my0kUhj++0V9Trdu/nxGlEpS\n95UkTqcPjc8y57R+BgXMtAmDTlfIPhCz7p1Ioxuyj01mtOWalTczhZQIyH2o\nzYz4YqIYEvY+EGzsE0LLgV6nswdGFkDZef3fsfANW9PQ1rDF2JdONAtje4H8\nxMM6ae3hlN3mytQ9EM1zzMvybjkXjzChJd+V54UXCDSoe6Vk3JLoKaJs1KsK\ngn1i2SVgF5SoDAC4JeP1GxlN+WrKjKUY4iMWtay2vMDdgDqnWa59vtYim/WA\nrD4Url7CXzXiWQMjZDsCJi/6yi6CvRLSlU7n7kNcCVa62VTC2/l6LEEAsz83\nEwCAvW8NIHhUJeR9D8Bt6TuGToj7Isuqm8sTu7w/RbLJ6jhJlwYkRu+SJLWH\n/KM1\r\n=cow2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 8.9.0"},"gitHead":"39f18f86df7404ffaedf49aa441d2a08a5e9c1e2","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"cross-env NODE_ENV=test npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --ignore \"src/**/*.test.js\" --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache src test","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"cross-env NODE_ENV=test jest --watch","lint:prettier":"prettier \"{**/*,*}.{js,json,md,yml,css}\" --list-different","test:coverage":"cross-env NODE_ENV=test jest --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.10.2","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","postcss":"^7.0.17","camelcase":"^5.3.1","icss-utils":"^4.1.1","loader-utils":"^1.2.3","schema-utils":"^2.0.0","normalize-path":"^3.0.0","postcss-value-parser":"^4.0.0","postcss-modules-scope":"^2.1.0","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.0.0","jest":"^24.8.0","sass":"^1.22.5","husky":"^3.0.0","eslint":"^6.1.0","del-cli":"^2.0.0","webpack":"^4.35.0","es-check":"^5.0.0","prettier":"^1.18.2","cross-env":"^5.2.0","memory-fs":"^0.4.1","@babel/cli":"^7.5.0","babel-jest":"^24.8.0","jest-junit":"^7.0.0","strip-ansi":"^5.2.0","@babel/core":"^7.5.4","file-loader":"^4.0.0","lint-staged":"^9.2.0","npm-run-all":"^4.1.5","sass-loader":"^7.1.0","postcss-loader":"^3.0.0","@commitlint/cli":"^8.1.0","standard-version":"^7.0.0","@babel/preset-env":"^7.5.4","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.18.0","eslint-config-prettier":"^6.0.0","@webpack-contrib/defaults":"^5.0.2","commitlint-azure-pipelines-cli":"^1.0.2","@commitlint/config-conventional":"^8.1.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_3.2.0_1565096714225_0.20308787467951306","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"css-loader","version":"3.2.1","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@3.2.1","maintainers":[{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"62849b45a414b7bde0bfba17325a026471040eae","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-3.2.1.tgz","fileCount":16,"integrity":"sha512-q40kYdcBNzMvkIImCL2O+wk8dh+RGwPPV9Dfz3n7XtOYPXqe2Z6VgtvoxjkLHz02gmhepG9sOAJOUlx+3hHsBg==","signatures":[{"sig":"MEQCIGb+aC2Ru3MZ9um8OQ3tKWcPjF3VG5lyNuzP2/otNgGyAiA4NCpj0nK3fzrpW0neuv7QZ7PFtWOqhhFqnYX7AhiWaQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80047,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5RplCRA9TVsSAnZWagAAkCEP/3F7M2PJVQjKpc8ftB/N\nBaygRn/zK8qhaa4a28Lb9aNgf0U4MF3ktUGchGDRgsjvKqEtS3Ee3nUZVypG\nfywcd3DscdCYV4+0ZrWcSgk5iwOtvybCyjsJaEZeKiIee9f5lHxRAU8+ckfJ\nHt94DDeQZV0fm20iDMmIeZmEzHqJDh1nyRaujeW+93HGlSHXmdmfIWEEb1As\ni/eNG6flLgW38/IaFSBOO8YAWHTL75OEsP2MiD598riCVc6IbHZprbEkkgJB\nTG/QG5u1HsIxQx0l/feJCJfls3iIlWsG/vmUm4jk1KuBz77K8oaXgCzdtbsn\nnnToMFniIbbNTLF+XCZ5kC/j04ijUKRHGbcfLwvGARd4zRSOhvJmD69j4vkH\n5ofVU+iP0SD15S/ZTuS90yBK+4khwyLxjX4uZqnXyS7Z8ha5l0/gUEFBbbe0\n4302z+ff9WEn4N8ZkwVmqPbbkkuHNqqsZboxGsMIm0t13ZLJ5K3wq8t8/zg2\n3hxwb+pRIZZx6N1YAHEY3TCeeI3kob9+tO6TsEcs3CVXQu61s0V8JAXX5y7L\nNlbVe1vLdZFcsYZRX4oK757T4pfK8wuud/3eMgKNyO7WifyaO6RTF7sveUC5\n0EUEaH3cqchVNJyaI8ep8OCQhN2suIQ8DyobTmQGpcHGoXuBEqIF8PhU9ptP\nBEi2\r\n=HS/X\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 8.9.0"},"gitHead":"77e705cd823e084968b4ee7d747d08fa16a038dc","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"cross-env NODE_ENV=test npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --ignore \"src/**/*.test.js\" --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache src test","prepare":"npm run build","pretest":"npm run lint","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"cross-env NODE_ENV=test jest --watch","lint:prettier":"prettier \"{**/*,*}.{js,json,md,yml,css}\" --list-different","test:coverage":"cross-env NODE_ENV=test jest --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.13.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"10.15.2","dependencies":{"cssesc":"^3.0.0","postcss":"^7.0.23","camelcase":"^5.3.1","icss-utils":"^4.1.1","loader-utils":"^1.2.3","schema-utils":"^2.6.0","normalize-path":"^3.0.0","postcss-value-parser":"^4.0.2","postcss-modules-scope":"^2.1.1","postcss-modules-values":"^3.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","jest":"^24.9.0","sass":"^1.23.7","husky":"^3.1.0","eslint":"^6.7.1","del-cli":"^3.0.0","webpack":"^4.41.2","es-check":"^5.1.0","prettier":"^1.19.1","cross-env":"^6.0.3","memory-fs":"^0.5.0","@babel/cli":"^7.7.4","babel-jest":"^24.9.0","jest-junit":"^9.0.0","strip-ansi":"^6.0.0","url-loader":"^3.0.0","@babel/core":"^7.7.4","file-loader":"^5.0.2","lint-staged":"^9.5.0","npm-run-all":"^4.1.5","sass-loader":"^8.0.0","postcss-loader":"^3.0.0","@commitlint/cli":"^8.2.0","standard-version":"^7.0.1","@babel/preset-env":"^7.7.4","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.18.2","eslint-config-prettier":"^6.7.0","@webpack-contrib/defaults":"^5.0.2","commitlint-azure-pipelines-cli":"^1.0.2","@commitlint/config-conventional":"^8.2.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_3.2.1_1575295589021_0.9560301484423877","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"css-loader","version":"2.0.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@2.0.0","maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"jtangelder","email":"j.tangelder@gmail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"f0f7469dc8e750dace97534328ed80395b5c575b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-2.0.0.tgz","fileCount":16,"integrity":"sha512-3Fq8HJYs7ruBiDpJA/w2ZROtivA769ePuH3/vgPdOB+FQiotErJ7VJYRZq86SPRVFaccn1wEktUnaaUyf+Uslw==","signatures":[{"sig":"MEUCIQCia20D1iwZOv70/5m9rA5tJ8urYGKMaRec0YN/98kQXAIgBcMxao/7o8Zm3YrVpfQjF9IyQGkJ9ulH/h9CuP9CROY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61464,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcClzgCRA9TVsSAnZWagAA5YsP/R52PsdLOd5p0EXjePVf\nFQ6B2MsizBr5MPhprHRHpJmJ6bHkJzUv0F3M8POkC7+rFdbxpGoJQ74v123a\nPvw19iGD1J+KcaXcQltWMlwC/xLjVFFTizmDy136j+D7oBmnbob9Lb9U3dQA\nv1iTTtENJFLMzg+fi5gPHkUcz33uItZt2uzfmmi5+a7scRaWZiaZyoXrfFGB\nPbSg7j8F2KB6iOOZW67zKUTNFIT7T9KdwyufltyCKYRtKfHJ1klpkTvHbTEQ\nTD7S7IPD4J+KvYb2NCsponIoQxPjEmSJMS1nQBfmxs2vMejYUv++0/V8P6Jv\nipCJe/qka2aE0fy9WfLJ3tkTpJQm6ZMS/U92AsEvR3BzoLUj4UYIHQL1FmlQ\nPXWFB3BExLn76LUfAtPChGawuF9oWOgkw8jFi6QM/ufcJF0BUeS17a4GrV/t\nreeTNMePQI5z+KR5lhwUDhs8EZAFqG3TJ1KJlsDrQmz4gACSM7Zo4DLBqPub\nWGlB8fpU/2+rF+ip/kPq6ASjdAZl/i85rCMBZGZy3ZKRW9bSuRpmLWxYX09Q\nm4be7n9DsW9HWgW0PvZjonpOz3t+LjdsL/jwve6nLSC2J5MPTQ5eu2BlYUbN\nVywX+G3+9C9bU8GSk9rBrWSWrYtPgB7+iutaJspw1cwC+6LiJ+iDpynolxv9\nXCpw\r\n=1UbV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","babel":{"presets":[["@babel/preset-env",{"targets":{"node":"6.9.0"},"useBuiltIns":"usage"}]]},"husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">= 6.9.0 <7.0.0 || >= 8.9.0"},"gitHead":"634ab49c17b284e55e62105109412ebd37e234b5","scripts":{"lint":"eslint --cache src test","test":"jest","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","clean":"del-cli dist","start":"npm run build -- -w","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","prepublish":"npm run build","test:watch":"jest --watch","ci:coverage":"npm run test:coverage -- --runInBand","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"commitlint":{"extends":["@commitlint/config-conventional"]},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.4.1","description":"css loader module for webpack","directories":{},"lint-staged":{"*.js":["eslint --fix","git add"]},"_nodeVersion":"10.12.0","dependencies":{"lodash":"^4.17.11","postcss":"^7.0.6","icss-utils":"^4.0.0","loader-utils":"^1.0.2","schema-utils":"^1.0.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^2.0.0","postcss-modules-values":"^2.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"^3.0.0","jest":"^23.6.0","sass":"^1.15.1","husky":"^1.2.0","eslint":"^5.9.0","del-cli":"^1.1.0","webpack":"^4.26.1","prettier":"^1.15.2","cross-env":"^5.2.0","memory-fs":"^0.4.1","@babel/cli":"^7.1.5","babel-core":"^7.0.0-bridge.0","babel-jest":"^23.6.0","strip-ansi":"^5.0.0","@babel/core":"^7.1.6","file-loader":"^2.0.0","lint-staged":"^8.1.0","sass-loader":"^7.1.0","postcss-loader":"^3.0.0","@babel/polyfill":"^7.0.0","@commitlint/cli":"^7.2.1","standard-version":"^4.0.0","webpack-defaults":"^2.3.0","@babel/preset-env":"^7.1.6","postcss-preset-env":"^6.4.0","eslint-plugin-import":"^2.14.0","eslint-plugin-prettier":"^3.0.0","@commitlint/config-conventional":"^7.1.2","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_2.0.0_1544183007599_0.18005241971478703","host":"s3://npm-registry-packages"}},"0.17.0":{"name":"css-loader","version":"0.17.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.17.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"a1ddf2df86ba08fbd22781bb33379fc3b08da6eb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.17.0.tgz","integrity":"sha512-3HSTKo5vTMgjnLa8FjqbnYAnsPAZ74N4rf4JjKBc2cvJ+isonspP4iHrBgWyTREQkNXYBfONSqppykVtRvhKOg==","signatures":[{"sig":"MEQCICIs4zFpqAaM4eferAfq3RgZU05BkIv+00/QqertNMBHAiBKya60vV+leoBCKHY1IybL/4WhjwKXnIpJPFXP08gqLQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"a1ddf2df86ba08fbd22781bb33379fc3b08da6eb","gitHead":"c2f9150caba481e7506265860e0f81216ee11e41","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.10.1","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.4","dependencies":{"cssnano":"^2.6.1","postcss":"^4.1.11","loader-utils":"~0.2.2","source-list-map":"^0.1.4","postcss-modules-scope":"0.0.8","css-selector-tokenizer":"^0.5.1","postcss-modules-extract-imports":"0.0.5","postcss-modules-local-by-default":"0.0.12"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"2.0.1":{"name":"css-loader","version":"2.0.1","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@2.0.1","maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"jtangelder","email":"j.tangelder@gmail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"2e51a15449ab3f7195b7e1bc00a407460016a3b3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-2.0.1.tgz","fileCount":16,"integrity":"sha512-XIVwoIOzSFRVsafOKa060GJ/A70c0IP/C1oVPHEX4eHIFF39z0Jl7j8Kua1SUTiqWDupUnbY3/yQx9r7EUB35w==","signatures":[{"sig":"MEUCIC3AIGFjELdOl3++t3LaUPJfNBR0reAmlkw41EQ5zM8eAiEAinbCJCAOHuRu/boew2Zc13yPW+LpmPuJmjrhDKMexpU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62487,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcE6SRCRA9TVsSAnZWagAA24kP/A/dDuMVidIPMPITOUex\nXfwYxx8/IuE09JaT+Sykx0eYbqG3JTAe4RSRbaXwVyZ72ZeTssKxLhCYc6WE\ni3tmEWvU+reVqTG0UY+8DR8twwKkNpZVoBtl1X/S4I/7xPzNs+zqXYYKhPl1\nc78g1OJOnwWTPArcLPhPwYBUufUScH5ysQIhAflpWayEnDKPwnEybn0nBXrF\ne9aq2N1dfsnJNeZ154CpWfp9oCoNv09r0bz5Lp7kYr6yvXDVO3zDkbcTVCq+\nImk6v/XetCqSq8aWewxLJpWNipNR/jooRA8//WRToU61oOHc5cPrHATIjuOI\nlACjsAuktr0HRi/JaEO/KWJmdT7ulzNoJMe9/oGYj8mEs+b7z+hT0fzAzxgT\nPk14wffIQs/NDPXKm3AeEYtQOiFnf0WkqxzqYXZ29U+cPYIth8562D8KX7Zc\n/JUvlDOrKIH6nN0qKbH4+IaMORRQ/VbvdlrcEHsQyrG+PT4VYi+YxDelwmEi\nbwX1jwe4C4fjydytA6GVBZrvRqzsb2Tpyrirl8wxKbgH7ozd2cAbazFwrSz+\nQgZwWgBlt32BtW7gGtqQd3VRXNQzWal9hVA4Amm3Db1QM+PHzXEm1qIPqjZJ\n07GSGJvCrNmKsxPNKpTi2Vj5d3LNjQdGWev7wFgpezJDag9AxttSk8/Mbroh\nO54q\r\n=Sjli\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","babel":{"presets":[["@babel/preset-env",{"targets":{"node":"6.9.0"},"useBuiltIns":"usage"}]]},"husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">= 6.9.0 <7.0.0 || >= 8.9.0"},"gitHead":"e233d0aa2372058f511dde7736bbe1dbbf723fc9","scripts":{"lint":"eslint --cache src test","test":"jest","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","clean":"del-cli dist","start":"npm run build -- -w","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","commitmsg":"commitlint -e $GIT_PARAMS","commitlint":"commitlint","prepublish":"npm run build","test:watch":"jest --watch","ci:coverage":"npm run test:coverage -- --runInBand","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","ci:lint:commits":"commitlint --from=origin/master --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"commitlint":{"extends":["@commitlint/config-conventional"]},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.5.0","description":"css loader module for webpack","directories":{},"lint-staged":{"*.js":["eslint --fix","git add"]},"_nodeVersion":"10.14.1","dependencies":{"lodash":"^4.17.11","postcss":"^7.0.6","icss-utils":"^4.0.0","loader-utils":"^1.0.2","schema-utils":"^1.0.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^2.0.0","postcss-modules-values":"^2.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"^3.0.0","jest":"^23.6.0","sass":"^1.15.1","husky":"^1.2.0","eslint":"^5.9.0","del-cli":"^1.1.0","webpack":"^4.26.1","prettier":"^1.15.2","cross-env":"^5.2.0","memory-fs":"^0.4.1","@babel/cli":"^7.1.5","babel-core":"^7.0.0-bridge.0","babel-jest":"^23.6.0","strip-ansi":"^5.0.0","@babel/core":"^7.1.6","file-loader":"^2.0.0","lint-staged":"^8.1.0","sass-loader":"^7.1.0","postcss-loader":"^3.0.0","@babel/polyfill":"^7.0.0","@commitlint/cli":"^7.2.1","standard-version":"^4.0.0","@babel/preset-env":"^7.1.6","postcss-preset-env":"^6.4.0","eslint-plugin-import":"^2.14.0","eslint-plugin-prettier":"^3.0.0","@webpack-contrib/defaults":"^3.0.0","@commitlint/config-conventional":"^7.1.2","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_2.0.1_1544791184735_0.09690072974534392","host":"s3://npm-registry-packages"}},"0.13.1":{"name":"css-loader","version":"0.13.1","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.13.1","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"2df4b8e03b26ff7438b15627986fa0e090663604","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.13.1.tgz","integrity":"sha512-C6o3aeQW06MiMYE+0rfI1axemTArSjpc+awJBSSxeWmrwKsWxoyy0cO1KPHocl5fRDDK/1xQPI/89lXX217BFQ==","signatures":[{"sig":"MEQCICon62X46VWzz0tFknOhKkjjjrm6iH2Ux1/HIwghJDHOAiBwyZ8QKUQC4g2alE3pvucpiYO7IDN7vNDRU9Lmv5mlFQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"2df4b8e03b26ff7438b15627986fa0e090663604","gitHead":"c2584322426015ea0255bec1c21547ccad819705","scripts":{"test":"mocha","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.9.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.2","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","istanbul":"^0.3.13","coveralls":"^2.11.2"}},"0.13.0":{"name":"css-loader","version":"0.13.0","author":{"name":"Tobias Koppers @sokra"},"_id":"css-loader@0.13.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"e2b5c2961b5573cae47b1740c839b1f41a734e0c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.13.0.tgz","integrity":"sha512-+Okqm1Vb7WppDpPQx77ZbtW60GRjPfobzc8c1iocLJDDRZhJn6JMF1vdoDh0CWKsi/yxfIO+EHZxjm//WFrUyg==","signatures":[{"sig":"MEYCIQCjbVAyfKcICO7FxTHMgjvdxscModjmxGktWWSCEmMxyQIhANiG3ko1UaNnljQa6DmNY0uVCMHoeO5w0sShdexB95C8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"e2b5c2961b5573cae47b1740c839b1f41a734e0c","gitHead":"22596d1a18eeb5e8aa9c6436e88e395ebf8b7dee","scripts":{"test":"mocha","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"licenses":[{"url":"http://www.opensource.org/licenses/mit-license.php","type":"MIT"}],"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"2.9.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"0.12.2","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","istanbul":"^0.3.13","coveralls":"^2.11.2"}},"2.0.2":{"name":"css-loader","version":"2.0.2","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@2.0.2","maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"jtangelder","email":"j.tangelder@gmail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"5b02031745ba6d6721bcecad39daaea9804e30d3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-2.0.2.tgz","fileCount":16,"integrity":"sha512-28hdCb5gCuTKUA+R6KzLwgxK6pUfgvrUyMNn7avOUQYFvmc13djru28uG+NF/pRre7Odd6B/kmJErCcpFZZQpQ==","signatures":[{"sig":"MEYCIQCGaHYM4JBRe1ug6S3EyaEyctPKIoPUzfmhfMZIbrk8aAIhAOoVdUJSETnnFVoiDYxJ5oYpxd7O4BP/bpfPcbObSh2E","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63060,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcHM0fCRA9TVsSAnZWagAAwioP/jjEtKxJFyifwPL92gKK\n8naMbPX2AO8koEk0kYSZh6a1Tgh22zgdv045/qo6Q+yqBOTWFx3puW76Wa/G\niWMK6tbMIXTR2iTsmbXeJxRaUyPRlaN2gDP0F0fM/FSmqsa87pptDC8Ru6tn\n3hVX/vrFjjqikDPf8I/ZE+gQPmh2D3SqwnA2vaGayJzIMBSZf8q1i9VbDV6W\nauMautCoCT1w1iHBEu6dUHKpyxZ6dKvolGMbPmyIsVRBeURUKCEAHEGMF7m4\nLp0rVA8G9vkpch8HdiggC65BUUSpJYzM9l8xEkdAESziveJ8lf4pkEQc7ClR\nJfgzxhZkt/cqJvObPGaYd6EzQOpKp3chSc+3Uf1qxre4GyD6hyMtkF45NnJj\nvLqxol91Py7r6GzDIstyrw9o+ppFNEh6mXizfJ4ZfvtcolPWrPIRT67YggLZ\nuKpWgnDHDcpy3ZsyP3rxQ+aZ//K7N67MjsNFnBjqjrUo4a024iIklyV0oK+q\np+KiR7IjZeahYX99Sk57sJXc7oyD74JjMOCauM1Yw3UowBXeo7C89EwVe/3/\nbSg0HMsqxwAYV06xpfMPKpdw52GTMUBt+LaaV9De4MapN+ldkG1N0N5dtcLW\nJeMBEvOF0j2+15+ompU4dpCBO7f/in7UssHylhNnZyqcGlC7OKhUY1tglpW+\nj7B9\r\n=DTsU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","babel":{"presets":[["@babel/preset-env",{"targets":{"node":"6.9.0"},"useBuiltIns":"usage"}]]},"husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">= 6.9.0"},"gitHead":"c41f994084928b0c03c6488b434f338530498d02","scripts":{"lint":"eslint --cache src test","test":"jest","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","clean":"del-cli dist","start":"npm run build -- -w","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","release":"standard-version","defaults":"webpack-defaults","prebuild":"npm run clean","security":"npm audit","commitmsg":"commitlint -e $GIT_PARAMS","commitlint":"commitlint","prepublish":"npm run build","test:watch":"jest --watch","ci:coverage":"npm run test:coverage -- --runInBand","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","ci:lint:commits":"commitlint --from=origin/master --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"commitlint":{"extends":["@commitlint/config-conventional"]},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"6.5.0","description":"css loader module for webpack","directories":{},"lint-staged":{"*.js":["eslint --fix","git add"]},"_nodeVersion":"10.14.1","dependencies":{"lodash":"^4.17.11","postcss":"^7.0.6","icss-utils":"^4.0.0","loader-utils":"^1.0.2","schema-utils":"^1.0.0","postcss-value-parser":"^3.3.0","postcss-modules-scope":"^2.0.0","postcss-modules-values":"^2.0.0","postcss-modules-extract-imports":"^2.0.0","postcss-modules-local-by-default":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"del":"^3.0.0","jest":"^23.6.0","sass":"^1.15.1","husky":"^1.2.0","eslint":"^5.9.0","del-cli":"^1.1.0","webpack":"^4.26.1","prettier":"^1.15.2","cross-env":"^5.2.0","memory-fs":"^0.4.1","@babel/cli":"^7.1.5","babel-core":"^7.0.0-bridge.0","babel-jest":"^23.6.0","strip-ansi":"^5.0.0","@babel/core":"^7.1.6","file-loader":"^3.0.1","lint-staged":"^8.1.0","sass-loader":"^7.1.0","postcss-loader":"^3.0.0","@babel/polyfill":"^7.0.0","@commitlint/cli":"^7.2.1","standard-version":"^4.0.0","@babel/preset-env":"^7.1.6","postcss-preset-env":"^6.4.0","eslint-plugin-import":"^2.14.0","eslint-plugin-prettier":"^3.0.0","@webpack-contrib/defaults":"^3.0.0","@commitlint/config-conventional":"^7.1.2","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_2.0.2_1545391390713_0.8915144515175646","host":"s3://npm-registry-packages"}},"6.5.0":{"name":"css-loader","version":"6.5.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.5.0","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"9d1cf7766a9a8f0b3c6e1638309b964dbdab46d3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.5.0.tgz","fileCount":17,"integrity":"sha512-VmuSdQa3K+wJsl39i7X3qGBM5+ZHmtTnv65fqMGI+fzmHoYmszTVvTqC1XN8JwWDViCB1a8wgNim5SV4fb37xg==","signatures":[{"sig":"MEUCIQDYtA9LmkAHdoh6ynliyTMWdHO0XkKks+h1uv08szuetAIgLwVzr1hJ2MadrXxGKRsluXozwR5gxz2ooHJgTi7Q8Y0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":127947},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"86d77cadf9ffe46570d0ec8e463b59f380376b75","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.24.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.22.7","dependencies":{"semver":"^7.3.5","postcss":"^8.2.15","icss-utils":"^5.1.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^27.0.6","less":"^4.1.1","sass":"^1.35.2","husky":"^7.0.1","memfs":"^3.2.2","eslint":"^8.1.0","stylus":"^0.55.0","del-cli":"^4.0.1","webpack":"^5.45.1","es-check":"^6.0.0","prettier":"^2.3.2","cross-env":"^7.0.3","@babel/cli":"^7.14.5","babel-jest":"^27.0.6","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.14.6","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^11.0.1","npm-run-all":"^4.1.5","sass-loader":"^12.1.0","style-loader":"^3.1.0","stylus-loader":"^6.1.0","postcss-loader":"^6.1.1","@commitlint/cli":"^13.1.0","standard-version":"^9.3.1","@babel/preset-env":"^7.14.7","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.23.4","eslint-config-prettier":"^8.3.0","mini-css-extract-plugin":"^2.1.0","@commitlint/config-conventional":"^13.1.0","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.5.0_1635264488779_0.6723592010963335","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"css-loader","version":"6.1.0","keywords":["webpack","css","loader","url","import"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@6.1.0","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"michael-ciniawsky","email":"michael.ciniawsky@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},{"name":"spacek33z","email":"kees@webduck.nl"}],"homepage":"https://github.com/webpack-contrib/css-loader","bugs":{"url":"https://github.com/webpack-contrib/css-loader/issues"},"dist":{"shasum":"9f49a414103d3a43a7a5a0a0468ac71ab5132788","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-6.1.0.tgz","fileCount":16,"integrity":"sha512-AcCb6ire7NgkrxJCtwEDa/y+xxBrPNXYWdlSpXNr+YwW2wTahSowSIxD9cHc9Uvc8Dbq+NQ/NQ6aDvJWik44vg==","signatures":[{"sig":"MEUCIFE0C9jCOoJxeVgXqh2UyU2JedWtXXets1KcsDDGoMkkAiEAgjm1EX+kLGeDQmR4eqUBk3lCgd9rDE7qR2MgFSe/6bE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":114478,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg8ueDCRA9TVsSAnZWagAAMigP/A856sAC0+ZZqdZAxR+4\nncZmnNBuEiCDpnTBzRJbMNYyk5q6vNlfWoKO3oB4gY1JEfOeVf02oB2fkhzB\n0Oi7gA43rpD4xPGgsvOQ5QPm2RL/zdZdwU/urPs+KfzZNM+cHaBvv5h34z8a\noZGBrMTTJ1ENkRSGHWHGst5FmnzLcjki1x5lqMlpcsXLQErOXrKvh3Kgp/hW\nkRAKiUWNA3mqrXCNybPmnh6xv7RA5VOsgg8TL6RZbq+zoN9XknTIvyvytXYY\nSZSRMxNBdtDn1Mi4z/lTpWM6WFdpm3yDUQK5bWaLSZinYBI5P/NKjzOj0ETT\nYddDSgaM1WcEGPiBaoBxz9YSM6a0vBDoDsCc71JxKtdnFVwu3LsjzlAqX5lu\n8VkRFaMtALmTmHSwfsay0y4AvM868RtbYo0rYBATBKMzDTkN6n7bLA5QnrZu\niedwBPrL9E/3tn8M0PcAr/+W8EE2nmvLBAZlNeoelYtbgQVkvsqTFtYl7WlF\nvpLWoltZSTCGL+6NrBbK9vOdXKGixQezY5G3Jz7M3Se1EBQ08Tyfl4yzbRuG\n5RytinU0nU+geld7+Ju9QAEs9r3dcZYQEG6xEM4jmU24MGjR/jiSczJ7ZodA\nUjYteovz+QdqeRbIyB06qFyGNs8AOlvH1sDg0Y7KiyO4kpO6pu00n4iVo4AN\nUo7h\r\n=cIbQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"funding":{"url":"https://opencollective.com/webpack","type":"opencollective"},"gitHead":"cc0c1b4a4c5e9f1c6c95537a763fb522011d5fbc","scripts":{"lint":"npm-run-all -l -p \"lint:**\"","test":"npm run test:coverage","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","clean":"del-cli dist","start":"npm run build -- -w","lint:js":"eslint --cache .","prepare":"husky install && npm run build","pretest":"npm run lint","release":"standard-version","prebuild":"npm run clean","security":"npm audit --production","postbuild":"npm run validate:runtime","test:only":"cross-env NODE_ENV=test jest","commitlint":"commitlint --from=master","test:watch":"npm run test:only -- --watch","lint:prettier":"prettier --list-different .","test:coverage":"npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\""},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/webpack-contrib/css-loader.git","type":"git"},"_npmVersion":"7.16.0","description":"css loader module for webpack","directories":{},"_nodeVersion":"12.22.1","dependencies":{"semver":"^7.3.5","postcss":"^8.2.15","icss-utils":"^5.1.0","postcss-value-parser":"^4.1.0","postcss-modules-scope":"^3.0.0","postcss-modules-values":"^4.0.0","postcss-modules-extract-imports":"^3.0.0","postcss-modules-local-by-default":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"^6.0.0","jest":"^27.0.6","less":"^4.1.1","sass":"^1.35.2","husky":"^7.0.1","memfs":"^3.2.2","eslint":"^7.30.0","stylus":"^0.54.8","del-cli":"^4.0.1","webpack":"^5.45.1","es-check":"^5.2.4","prettier":"^2.3.2","cross-env":"^7.0.3","@babel/cli":"^7.14.5","babel-jest":"^27.0.6","strip-ansi":"^6.0.0","url-loader":"^4.1.1","@babel/core":"^7.14.6","file-loader":"^6.2.0","less-loader":"^10.0.1","lint-staged":"^11.0.1","npm-run-all":"^4.1.5","sass-loader":"^12.1.0","style-loader":"^3.1.0","stylus-loader":"^6.1.0","postcss-loader":"^6.1.1","@commitlint/cli":"^12.1.4","standard-version":"^9.3.1","@babel/preset-env":"^7.14.7","postcss-preset-env":"^6.7.0","eslint-plugin-import":"^2.23.4","eslint-config-prettier":"^8.3.0","mini-css-extract-plugin":"^2.1.0","@commitlint/config-conventional":"^12.1.4","@webpack-contrib/eslint-config-webpack":"^3.0.0"},"peerDependencies":{"webpack":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/css-loader_6.1.0_1626531715472_0.25144217555128323","host":"s3://npm-registry-packages"}},"0.20.0":{"name":"css-loader","version":"0.20.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.20.0","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"60999c9540453fb1fce2ab42e2b70531917135d4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.20.0.tgz","integrity":"sha512-0aqXgPu5HPONAZlW7dKnOBLiUbagzTXEP/K2Is9bnBGaTsiNoqQeVn9pNIJCBn5e4JPBx1cTtD6+khA8QIriAQ==","signatures":[{"sig":"MEYCIQDnx3axWnTjog/GXbG8oquFqLeoJJazilYNEMpEZ0QyHAIhAM9IIY9RCnYUnef+2+n3026n2tlBOqBvqQhgOzjJt09+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"60999c9540453fb1fce2ab42e2b70531917135d4","gitHead":"e93914cb1b3a822b12ff80b15be3226a86b9f3c8","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"3.3.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"4.0.0","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"~0.2.2","source-list-map":"^0.1.4","postcss-modules-scope":"1.0.0-beta2","css-selector-tokenizer":"^0.5.1","postcss-modules-extract-imports":"1.0.0-beta2","postcss-modules-local-by-default":"1.0.0-beta1"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}},"0.20.1":{"name":"css-loader","version":"0.20.1","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","_id":"css-loader@0.20.1","maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/webpack/css-loader#readme","bugs":{"url":"https://github.com/webpack/css-loader/issues"},"dist":{"shasum":"73475037c3eec2a1994ae625fead9a2c4ab33d8a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/css-loader/-/css-loader-0.20.1.tgz","integrity":"sha512-CGU9gQEGTvplNttnFT0NdDVgXL1Os6bQjxEbWCHr6aoa60C1wORFQV3IimlMkRFathnAUgMcqGhRnp1mKI+P/g==","signatures":[{"sig":"MEUCIBiUC1YgXyzg3DiShe+O92Y0GugVZwPoPuD5uarTapPjAiEAhKTbX4DaDBFFw7ITER5QZuc6+C/24vFpqx08QOSIe0Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"73475037c3eec2a1994ae625fead9a2c4ab33d8a","gitHead":"909f8e67cbdbc4bd601ef0d92b52299a0ac0b109","scripts":{"test":"mocha","cover":"istanbul cover node_modules/mocha/bin/_mocha","travis":"npm run cover -- --report lcovonly","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+ssh://git@github.com/webpack/css-loader.git","type":"git"},"_npmVersion":"3.3.3","description":"css loader module for webpack","directories":{},"_nodeVersion":"4.0.0","dependencies":{"cssnano":">=2.6.1 <4","postcss":"^5.0.6","loader-utils":"~0.2.2","object-assign":"^4.0.1","source-list-map":"^0.1.4","postcss-modules-scope":"1.0.0-beta2","css-selector-tokenizer":"^0.5.1","postcss-modules-extract-imports":"1.0.0-beta2","postcss-modules-local-by-default":"1.0.0-beta1"},"devDependencies":{"mocha":"^2.2.4","should":"^7.0.1","istanbul":"^0.3.13","coveralls":"^2.11.2","codecov.io":"^0.1.2"}}},"name":"css-loader","time":{"0.2.4":"2012-09-26T11:20:39.260Z","0.6.0":"2013-03-25T23:15:24.549Z","0.28.2":"2017-05-22T06:47:13.952Z","0.6.1":"2013-06-10T10:42:38.046Z","0.28.3":"2017-05-25T20:37:09.841Z","0.2.2":"2012-05-13T21:31:41.777Z","0.28.4":"2017-05-30T01:13:08.887Z","0.2.3":"2012-05-20T22:04:57.877Z","0.28.5":"2017-08-17T08:17:04.560Z","0.6.4":"2013-11-28T11:31:29.978Z","0.28.6":"2017-08-30T16:28:36.142Z","0.6.5":"2013-12-13T11:34:45.254Z","0.28.7":"2017-08-30T21:18:28.507Z","0.6.2":"2013-09-16T14:07:07.102Z","0.28.8":"2018-01-05T06:25:35.686Z","0.6.3":"2013-11-15T12:09:37.747Z","0.28.9":"2018-01-17T13:25:17.319Z","0.20.2":"2015-10-19T21:44:28.017Z","4.1.1":"2020-07-30T10:27:13.848Z","0.24.0":"2016-08-24T07:00:54.115Z","6.9.1":"2024-01-18T18:40:40.678Z","4.1.0":"2020-07-29T16:21:34.353Z","0.2.0":"2012-05-13T20:58:56.803Z","0.2.1":"2012-05-13T21:04:44.477Z","0.28.10":"2018-02-22T17:50:45.458Z","6.9.0":"2024-01-09T15:42:11.387Z","0.28.0":"2017-03-30T06:42:30.029Z","0.28.11":"2018-03-16T10:35:34.289Z","6.5.1":"2021-11-03T19:31:50.137Z","0.28.1":"2017-05-02T07:18:51.042Z","3.3.2":"2019-12-12T16:49:41.769Z","6.10.0":"2024-01-30T16:26:34.516Z","3.3.0":"2019-12-09T16:16:22.904Z","3.3.1":"2019-12-12T14:41:09.076Z","2.1.0":"2018-12-25T20:00:44.018Z","0.16.0":"2015-08-12T19:59:53.757Z","0.12.1":"2015-05-14T13:56:51.397Z","0.12.0":"2015-04-25T12:41:26.626Z","2.1.1":"2019-03-07T10:15:56.590Z","6.4.0":"2021-10-09T12:42:24.560Z","6.0.0":"2021-07-15T02:28:13.351Z","5.2.0":"2021-03-24T17:03:17.189Z","5.2.1":"2021-04-09T15:00:48.679Z","5.2.2":"2021-04-16T15:18:21.650Z","5.2.3":"2021-04-19T13:02:57.761Z","5.2.4":"2021-04-19T17:19:18.656Z","0.5.1":"2013-02-10T17:34:39.106Z","0.27.3":"2017-03-13T13:45:04.335Z","5.2.5":"2021-05-20T12:43:21.443Z","0.5.2":"2013-02-13T12:27:30.126Z","5.2.6":"2021-05-24T14:05:37.127Z","5.2.7":"2021-07-13T13:01:59.486Z","0.5.0":"2013-02-01T07:45:52.478Z","0.9.1":"2015-01-11T08:39:18.582Z","0.9.0":"2014-09-22T05:55:13.342Z","4.2.0":"2020-07-31T15:18:06.866Z","0.23.0":"2015-11-14T08:19:48.556Z","4.2.1":"2020-08-06T15:20:52.781Z","0.23.1":"2015-12-22T09:52:29.031Z","0.1.1":"2012-04-07T19:02:29.898Z","6.8.0":"2023-05-27T22:34:58.539Z","0.1.2":"2012-05-02T11:21:01.419Z","0.27.0":"2017-03-10T05:34:30.663Z","6.8.1":"2023-05-28T01:41:50.349Z","0.27.1":"2017-03-10T08:16:01.099Z","4.2.2":"2020-08-24T16:37:57.569Z","0.1.0":"2012-04-07T01:04:28.211Z","0.27.2":"2017-03-12T18:27:37.018Z","3.0.0":"2019-06-11T12:43:49.498Z","3.4.1":"2020-01-03T15:38:41.333Z","3.4.2":"2020-01-10T17:08:12.376Z","0.6.11":"2014-03-31T07:52:47.184Z","0.6.12":"2014-03-31T07:58:08.014Z","6.11.0":"2024-04-03T16:20:10.221Z","0.6.10":"2014-03-31T07:52:16.539Z","3.4.0":"2019-12-17T14:05:53.797Z","0.15.3":"2015-07-13T07:11:18.121Z","7.1.0":"2024-04-08T18:09:49.451Z","0.15.2":"2015-07-07T21:42:06.720Z","7.1.1":"2024-04-10T15:13:02.914Z","0.15.1":"2015-06-18T14:45:40.953Z","7.1.2":"2024-05-22T14:30:40.289Z","0.15.0":"2015-06-18T14:42:01.339Z","7.1.3":"2026-01-27T16:04:58.126Z","0.11.2":"2015-04-24T16:33:08.492Z","0.11.1":"2015-04-24T16:10:16.294Z","0.11.0":"2015-04-21T21:35:34.175Z","0.15.6":"2015-07-26T21:32:06.971Z","0.15.5":"2015-07-18T16:24:09.881Z","0.15.4":"2015-07-14T21:11:27.233Z","0.19.0":"2015-09-22T17:54:28.677Z","6.3.0":"2021-09-18T19:01:48.746Z","0.6.8":"2014-02-11T11:35:47.206Z","0.6.9":"2014-03-26T09:36:13.765Z","0.6.6":"2013-12-22T10:36:03.705Z","5.1.0":"2021-02-25T14:49:20.704Z","0.6.7":"2014-01-23T08:04:42.852Z","5.1.1":"2021-03-01T13:21:07.433Z","5.1.2":"2021-03-10T15:46:39.119Z","1.0.0":"2018-07-06T16:41:31.954Z","5.1.3":"2021-03-15T18:17:41.599Z","1.0.1":"2018-10-29T14:44:41.279Z","5.1.4":"2021-03-24T11:40:41.795Z","0.26.4":"2017-03-08T13:53:21.861Z","0.8.0":"2014-09-07T20:55:12.367Z","0.22.0":"2015-11-04T22:50:38.264Z","4.3.0":"2020-09-08T13:32:21.165Z","6.7.3":"2022-12-14T15:04:21.863Z","6.7.4":"2023-05-19T00:17:22.223Z","0.26.0":"2016-11-17T13:55:24.838Z","6.7.1":"2022-03-08T12:27:24.211Z","0.26.1":"2016-12-02T14:05:07.047Z","6.7.2":"2022-11-13T16:03:35.677Z","0.26.2":"2017-02-24T16:49:58.988Z","6.7.0":"2022-03-04T10:57:04.799Z","0.10.0":"2015-04-09T21:06:37.862Z","3.5.0":"2020-04-06T16:57:21.661Z","modified":"2026-04-27T00:33:34.158Z","3.5.1":"2020-04-07T10:05:45.486Z","3.5.2":"2020-04-10T15:33:07.805Z","3.5.3":"2020-04-24T12:02:13.655Z","3.1.0":"2019-07-18T10:28:22.472Z","7.1.4":"2026-02-16T13:27:57.741Z","0.14.4":"2015-05-27T15:29:17.433Z","0.18.0":"2015-09-10T07:18:48.999Z","0.14.3":"2015-05-25T20:18:00.141Z","0.14.2":"2015-05-24T19:51:24.330Z","0.14.1":"2015-05-24T07:28:05.002Z","0.14.0":"2015-05-23T16:44:01.362Z","created":"2012-04-07T01:04:25.612Z","0.10.1":"2015-04-09T21:37:26.878Z","7.0.0":"2024-04-04T16:38:47.508Z","0.14.5":"2015-06-09T18:37:50.351Z","6.2.0":"2021-07-19T20:15:12.359Z","0.21.0":"2015-10-21T15:14:36.048Z","5.0.0":"2020-10-13T17:40:42.714Z","5.0.1":"2020-11-04T16:54:54.612Z","5.0.2":"2021-02-08T13:20:09.129Z","0.7.0":"2014-07-07T11:03:53.991Z","0.7.1":"2014-08-10T21:15:58.020Z","4.0.0":"2020-07-25T16:14:08.993Z","0.25.0":"2016-09-05T15:55:25.964Z","6.6.0":"2022-02-02T10:47:46.367Z","3.6.0":"2020-06-13T14:27:06.915Z","3.2.0":"2019-08-06T13:05:14.417Z","3.2.1":"2019-12-02T14:06:29.245Z","2.0.0":"2018-12-07T11:43:27.743Z","0.17.0":"2015-09-02T13:51:36.090Z","2.0.1":"2018-12-14T12:39:44.949Z","0.13.1":"2015-05-20T22:58:03.994Z","0.13.0":"2015-05-20T22:13:41.179Z","2.0.2":"2018-12-21T11:23:10.942Z","6.5.0":"2021-10-26T16:08:08.950Z","6.1.0":"2021-07-17T14:21:55.623Z","0.20.0":"2015-10-18T20:48:20.564Z","0.20.1":"2015-10-18T21:05:17.018Z"},"readmeFilename":"README.md","homepage":"https://github.com/webpack/css-loader"}