{
  "manifest": {
    "name": "postcss-convert-values",
    "version": "5.1.3",
    "description": "Convert values with PostCSS (e.g. ms -> s)",
    "main": "src/index.js",
    "types": "types/index.d.ts",
    "files": [
      "LICENSE-MIT",
      "src",
      "types"
    ],
    "keywords": [
      "css",
      "optimisation",
      "postcss",
      "postcss-plugin"
    ],
    "license": "MIT",
    "homepage": "https://github.com/cssnano/cssnano",
    "author": {
      "name": "Ben Briggs",
      "email": "beneb.info@gmail.com",
      "url": "http://beneb.info"
    },
    "repository": {
      "type": "git",
      "url": "https://github.com/cssnano/cssnano.git"
    },
    "dependencies": {
      "browserslist": "^4.21.4",
      "postcss-value-parser": "^4.2.0"
    },
    "bugs": {
      "url": "https://github.com/cssnano/cssnano/issues"
    },
    "engines": {
      "node": "^10 || ^12 || >=14.0"
    },
    "devDependencies": {
      "postcss": "^8.2.15"
    },
    "peerDependencies": {
      "postcss": "^8.2.15"
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-postcss-convert-values-5.1.3-04998bb9ba6b65aa31035d669a6af342c5f9d393-integrity/node_modules/postcss-convert-values/package.json",
    "readmeFilename": "README.md",
    "readme": "# [postcss][postcss]-convert-values\n\n> Convert values with PostCSS (e.g. ms -> s)\n\n## Install\n\nWith [npm](https://npmjs.org/package/postcss-convert-values) do:\n\n```\nnpm install postcss-convert-values --save\n```\n\n## Example\n\nThis plugin reduces CSS size by converting values to use different units\nwhere possible; for example, `500ms` can be represented as `.5s`. You can\nread more about these units in [this article][csstricks].\n\n### Input\n\n```css\nh1 {\n    font-size: 16px;\n    width: 0em\n}\n```\n\n### Output\n\n```css\nh1 {\n    font-size: 1pc;\n    width: 0\n}\n```\n\nNote that this plugin only covers conversions for duration and absolute length\nvalues. For color conversions, use [postcss-colormin][colormin].\n\n## API\n\n### convertValues([options])\n\n#### options\n\n##### length\n\nType: `boolean`\nDefault: `true`\n\nPass `false` to disable conversion from `px` to other absolute length units,\nsuch as `pc` & `pt` & vice versa.\n\n##### time\n\nType: `boolean`\nDefault: `true`\n\nPass `false` to disable conversion from `ms` to `s` & vice versa.\n\n##### angle\n\nType: `boolean`\nDefault: `true`\n\nPass `false` to disable conversion from `deg` to `turn` & vice versa.\n\n##### precision\n\nType: `boolean|number`\nDefault: `false`\n\nSpecify any numeric value here to round `px` values to that many decimal places;\nfor example, using `{precision: 2}` will round `6.66667px` to `6.67px`, and\n`{precision: 0}` will round it to `7px`. Passing `false` (the default) will\nleave these values as is.\n\nIt is recommended for most use cases to set this option to `2`.\n\n\n## Usage\n\nSee the [PostCSS documentation](https://github.com/postcss/postcss#usage) for\nexamples for your environment.\n\n\n## Contributors\n\nSee [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).\n\n\n## License\n\nMIT © [Ben Briggs](http://beneb.info)\n\n\n[postcss]: https://github.com/postcss/postcss\n[csstricks]: https://css-tricks.com/the-lengths-of-css/\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz#04998bb9ba6b65aa31035d669a6af342c5f9d393",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz",
    "hash": "04998bb9ba6b65aa31035d669a6af342c5f9d393",
    "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==",
    "registry": "npm",
    "packageName": "postcss-convert-values",
    "cacheIntegrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA== sha1-BJmLubprZaoxA11mmmrzQsX505M="
  },
  "registry": "npm",
  "hash": "04998bb9ba6b65aa31035d669a6af342c5f9d393"
}