{
  "manifest": {
    "name": "postcss-modules-values",
    "version": "4.0.0",
    "description": "PostCSS plugin for CSS Modules to pass arbitrary values between your module files",
    "main": "src/index.js",
    "files": [
      "src"
    ],
    "engines": {
      "node": "^10 || ^12 || >= 14"
    },
    "scripts": {
      "prettier": "prettier -l --ignore-path .gitignore .",
      "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": "git+https://github.com/css-modules/postcss-modules-values.git"
    },
    "keywords": [
      "css",
      "modules",
      "postcss"
    ],
    "author": {
      "name": "Glen Maddern"
    },
    "license": "ISC",
    "bugs": {
      "url": "https://github.com/css-modules/postcss-modules-values/issues"
    },
    "homepage": "https://github.com/css-modules/postcss-modules-values#readme",
    "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.0",
      "prettier": "^2.1.2"
    },
    "dependencies": {
      "icss-utils": "^5.0.0"
    },
    "peerDependencies": {
      "postcss": "^8.1.0"
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-postcss-modules-values-4.0.0-d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c-integrity/node_modules/postcss-modules-values/package.json",
    "readmeFilename": "README.md",
    "readme": "# CSS Modules: Values\n\nPass arbitrary values between your module files\n\n### Usage\n\n```css\n/* colors.css */\n@value primary: #BF4040;\n@value secondary: #1F4F7F;\n\n.text-primary {\n  color: primary;\n}\n\n.text-secondary {\n  color: secondary;\n}\n```\n\n```css\n/* breakpoints.css */\n@value small: (max-width: 599px);\n@value medium: (min-width: 600px) and (max-width: 959px);\n@value large: (min-width: 960px);\n```\n\n```css\n/* my-component.css */\n/* alias paths for other values or composition */\n@value colors: \"./colors.css\";\n/* import multiple from a single file */\n@value primary, secondary from colors;\n/* make local aliases to imported values */\n@value small as bp-small, large as bp-large from \"./breakpoints.css\";\n/* value as selector name */\n@value selectorValue: secondary-color;\n\n.selectorValue {\n  color: secondary;\n}\n\n.header {\n  composes: text-primary from colors;\n  box-shadow: 0 0 10px secondary;\n}\n\n@media bp-small {\n  .header {\n    box-shadow: 0 0 4px secondary;\n  }\n}\n@media bp-large {\n  .header {\n    box-shadow: 0 0 20px secondary;\n  }\n}\n```\n\n**If you are using Sass** along with this PostCSS plugin, do not use the colon `:` in your `@value` definitions. It will cause Sass to crash.\n\nNote also you can _import_ multiple values at once but can only _define_ one value per line.\n\n```css\n@value a: b, c: d; /* defines a as \"b, c: d\" */\n```\n\n## License\n\nISC\n\n## With thanks\n\n- Mark Dalgleish\n- Tobias Koppers\n- Josh Johnston\n\n---\n\nGlen Maddern, 2015.\n",
    "licenseText": "ISC License (ISC)\n\nCopyright (c) 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."
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz",
    "hash": "d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c",
    "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==",
    "registry": "npm",
    "packageName": "postcss-modules-values",
    "cacheIntegrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== sha1-18Xn5ow7s8myfL9Iyguz/7RgLJw="
  },
  "registry": "npm",
  "hash": "d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c"
}