{
  "manifest": {
    "name": "postcss-modules-extract-imports",
    "version": "3.1.0",
    "description": "A CSS Modules transform to extract local aliases for inline imports",
    "main": "src/index.js",
    "engines": {
      "node": "^10 || ^12 || >= 14"
    },
    "files": [
      "src"
    ],
    "scripts": {
      "prettier": "prettier -l --ignore-path .gitignore . \"!test/test-cases\"",
      "eslint": "eslint --ignore-path .gitignore .",
      "lint": "yarn eslint && yarn prettier",
      "test:only": "jest",
      "test:watch": "jest --watch",
      "test:coverage": "jest --coverage --collectCoverageFrom=\"src/**/*\"",
      "pretest": "yarn lint",
      "test": "yarn test:coverage",
      "prepublishOnly": "yarn test"
    },
    "repository": {
      "type": "git",
      "url": "https://github.com/css-modules/postcss-modules-extract-imports.git"
    },
    "keywords": [
      "css-modules",
      "postcss",
      "plugin"
    ],
    "author": {
      "name": "Glen Maddern"
    },
    "license": "ISC",
    "bugs": {
      "url": "https://github.com/css-modules/postcss-modules-extract-imports/issues"
    },
    "homepage": "https://github.com/css-modules/postcss-modules-extract-imports",
    "devDependencies": {
      "coveralls": "^3.1.0",
      "eslint": "^7.10.0",
      "eslint-config-prettier": "^6.12.0",
      "husky": "^4.3.0",
      "jest": "^26.5.2",
      "lint-staged": "^10.4.0",
      "postcss": "^8.1.1",
      "prettier": "^2.1.2"
    },
    "peerDependencies": {
      "postcss": "^8.1.0"
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-postcss-modules-extract-imports-3.1.0-b4497cb85a9c0c4b5aabeb759bb25e8d89f15002-integrity/node_modules/postcss-modules-extract-imports/package.json",
    "readmeFilename": "README.md",
    "readme": "# CSS Modules: Extract Imports\n\n[![Build Status](https://travis-ci.org/css-modules/postcss-modules-extract-imports.svg?branch=master)](https://travis-ci.org/css-modules/postcss-modules-extract-imports)\n\nTransforms:\n\n```css\n:local(.continueButton) {\n  composes: button from \"library/button.css\";\n  color: green;\n}\n```\n\ninto:\n\n```css\n:import(\"library/button.css\") {\n  button: __tmp_487387465fczSDGHSABb;\n}\n:local(.continueButton) {\n  composes: __tmp_487387465fczSDGHSABb;\n  color: green;\n}\n```\n\n## Specification\n\n- Only a certain whitelist of properties are inspected. Currently, that whitelist is `['composes']` alone.\n- An extend-import has the following format:\n\n```\ncomposes: className [... className] from \"path/to/file.css\",  className [... className], className [... className] from global;\n```\n\n## Options\n\n- `failOnWrongOrder` `bool` generates exception for unpredictable imports order.\n\n```css\n.aa {\n  composes: b from \"./b.css\";\n  composes: c from \"./c.css\";\n}\n\n.bb {\n  /* \"b.css\" should be before \"c.css\" in this case */\n  composes: c from \"./c.css\";\n  composes: b from \"./b.css\";\n}\n```\n\n## Building\n\n```\nnpm install\nnpm test\n```\n\n[![Build Status](https://travis-ci.org/css-modules/postcss-modules-extract-imports.svg?branch=master)](https://travis-ci.org/css-modules/postcss-modules-extract-imports)\n\n- Lines: [![Coverage Status](https://coveralls.io/repos/css-modules/postcss-modules-extract-imports/badge.svg?branch=master)](https://coveralls.io/r/css-modules/postcss-modules-extract-imports?branch=master)\n- Statements: [![codecov.io](http://codecov.io/github/css-modules/postcss-modules-extract-imports/coverage.svg?branch=master)](http://codecov.io/github/css-modules/postcss-modules-extract-imports?branch=master)\n\n## License\n\nISC\n\n## With thanks\n\n- Mark Dalgleish\n- Tobias Koppers\n- Guy Bedford\n\n---\n\nGlen Maddern, 2015.\n",
    "licenseText": "Copyright 2015 Glen Maddern\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz#b4497cb85a9c0c4b5aabeb759bb25e8d89f15002",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz",
    "hash": "b4497cb85a9c0c4b5aabeb759bb25e8d89f15002",
    "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==",
    "registry": "npm",
    "packageName": "postcss-modules-extract-imports",
    "cacheIntegrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q== sha1-tEl8uFqcDEtaq+t1m7JejYnxUAI="
  },
  "registry": "npm",
  "hash": "b4497cb85a9c0c4b5aabeb759bb25e8d89f15002"
}