{"_id":"postcss-normalize","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"keywords":["postcss","css","postcss-plugin","normalizes","browsers","fixes"],"dist-tags":{"latest":"13.0.1"},"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"description":"Use the parts of normalize.css or sanitize.css you need from your browserslist","readme":"# PostCSS Normalize [<img src=\"https://postcss.github.io/postcss/logo.svg\" alt=\"PostCSS\" width=\"90\" height=\"90\" align=\"right\">][postcss]\n\n[<img alt=\"npm version\" src=\"https://img.shields.io/npm/v/postcss-normalize.svg\" height=\"20\">][npm-url]\n[<img alt=\"build status\" src=\"https://img.shields.io/travis/csstools/postcss-normalize/main.svg\" height=\"20\">][cli-url]\n[<img alt=\"support chat\" src=\"https://img.shields.io/badge/support-chat-blue.svg\" height=\"20\">][git-url]\n\n[PostCSS Normalize] lets you use the parts of [normalize.css] or [sanitize.css]\nthat you need from your [browserslist].\n\n```css\n@import \"normalize.css\";\n```\n\n```css\n@import \"sanitize.css\";\n```\n\n**PostCSS Normalize** uses a non-opinionated version of [normalize.css], but\nan opinionated version may also be used.\n\n```css\n@import \"normalize.css/opinionated.css\";\n```\n\n### Examples\n\nHere is a sample of what **normalize.css** looks like when the **browserslist**\nis `ie >= 9`:\n\n```css\n/**\n * Add the correct display in IE 9-.\n */\n\naudio,\nvideo {\n  display: inline-block;\n}\n\n/**\n * Remove the border on images inside links in IE 10-.\n */\n\nimg {\n  border-style: none;\n}\n```\n\nAnd here is the same sample when the **browserslist** is `ie >= 10`:\n\n```css\n/**\n * Remove the border on images inside links in IE 10-.\n */\n\nimg {\n  border-style: none;\n}\n```\n\n## Usage\n\nAdd [PostCSS Normalize] to your project:\n\n```bash\nnpm install postcss-normalize --save-dev\n```\n\nAdd a [browserslist] entry in `package.json`:\n\n```json\n{\n  \"browserslist\": \"last 2 versions\"\n}\n```\n\nUse **PostCSS Normalize** to process your CSS:\n\n```js\nconst postcssNormalize = require('postcss-normalize')\n\npostcssNormalize.process(YOUR_CSS /*, processOptions, pluginOptions */)\n```\n\nOr use it as a [PostCSS] plugin:\n\n```js\nconst postcss = require('postcss')\nconst postcssNormalize = require('postcss-normalize')\n\npostcss([\n  postcssNormalize(/* pluginOptions */)\n]).process(YOUR_CSS /*, processOptions */)\n```\n\n**PostCSS Normalize** runs in all Node environments, with special instructions\nfor:\n\n| [Node](INSTALL.md#node) | [PostCSS CLI](INSTALL.md#postcss-cli) | [Webpack](INSTALL.md#webpack) | [Create React App](INSTALL.md#create-react-app) | [Gulp](INSTALL.md#gulp) | [Grunt](INSTALL.md#grunt) |\n| --- | --- | --- | --- | --- | --- |\n\n## PostCSS Import Usage\n\n**PostCSS Normalize** includes a `postcssImport` function to configure\n[PostCSS Import] and allow you to continue using the `@import` syntax.\n\n```js\nconst postcss = require('postcss')\nconst postcssImport = require('postcss-import')\nconst postcssNormalize = require('postcss-normalize')\n\npostcss([\n  postcssImport(\n    postcssNormalize(\n      /* pluginOptions (for PostCSS Normalize) */\n    ).postcssImport(\n      /* pluginOptions (for PostCSS Import) */\n    )\n  )\n]) // now you can use @import \"normalize.css\", etc. again\n```\n\nAlternatively, use `@import-normalize` or `@import-sanitize` to avoid conflicts\nwith `@import` transforms.\n\n```pcss\n@import-normalize;\n```\n\n```pcss\n@import-normalize \"normalize/opinionated.css\";\n```\n\n```pcss\n@import-sanitize;\n```\n\n## Options\n\n### allowDuplicates\n\nThe `allowDuplicates` option determines whether multiple, duplicate insertions\nof CSS libraries are allowed. By default, duplicate libraries are omitted.\n\n```js\npostcssNormalize({ allowDuplicates: true })\n```\n\n### forceImport\n\nThe `forceImport` option defines CSS libraries that will be inserted at the\nbeginning of the CSS file. Unless overriden by `allowDuplicates`, duplicate\nCSS libraries would still be omitted.\n\n```js\npostcssNormalize({ forceImport: true })\n```\n\nSpecific CSS libraries may be defined.\n\n```js\npostcssNormalize({\n  forceImport: 'sanitize.css'\n})\n```\n\n### browsers\n\nThe `browsers` option defines an override of the project’s **browserslist** for\n**PostCSS Normalize**. This option should be avoided in leui of a browserslist\nfile.\n\n```js\npostcssNormalize({ browsers: 'last 2 versions' })\n```\n\n## CSS Libraries\n\n**PostCSS Normalize** can include [normalize.css] or [sanitize.css] and\nconfigure either with the following combinations:\n\n```css\n@import \"normalize\"; /* also, @import \"normalize.css\" */\n@import \"normalize/opinionated\"; /* also, @import \"normalize.css/opinionated.css\", @import \"normalize.css/*\" */\n@import \"sanitize\"; /* also, @import \"sanitize.css\" */\n@import \"sanitize/assets\"; /* also, @import \"sanitize.css/assets.css\" */\n@import \"sanitize/forms\"; /* also, @import \"sanitize.css/forms.css\" */\n@import \"sanitize/reduce-motion\"; /* also, @import \"sanitize.css/reduce-motion.css\" */\n@import \"sanitize/system-ui\"; /* also, @import \"sanitize.css/system-ui.css\" */\n@import \"sanitize/typography\"; /* also, @import \"sanitize.css/typography.css\" */\n@import \"sanitize/ui-monospace\"; /* also, @import \"sanitize.css/ui-monospace.css\" */\n@import \"sanitize/*\"; /* also, @import \"sanitize.css/*\" (sanitize + all additions) */\n```\n\n[cli-img]: https://img.shields.io/travis/csstools/postcss-normalize/main.svg\n[cli-url]: https://travis-ci.org/csstools/postcss-normalize\n[git-img]: https://img.shields.io/badge/support-chat-blue.svg\n[git-url]: https://gitter.im/postcss/postcss\n[npm-img]: https://img.shields.io/npm/v/postcss-normalize.svg\n[npm-url]: https://www.npmjs.com/package/postcss-normalize\n\n[browserslist]: http://browserl.ist/\n[CSS Libraries]: #css-libraries\n[normalize.css]: https://github.com/csstools/normalize.css\n[Options]: #options\n[PostCSS]: https://github.com/postcss/postcss\n[PostCSS Import]: https://github.com/postcss/postcss-import\n[PostCSS Import Usage]: #postcss-import-usage\n[PostCSS Normalize]: https://github.com/csstools/postcss-normalize\n[sanitize.css]: https://github.com/csstools/sanitize.css\n","repository":{"type":"git","url":"git+https://github.com/csstools/postcss-normalize.git"},"users":{"gpuente":true,"xiechao06":true,"denji":true,"qoozoo":true},"bugs":{"url":"https://github.com/csstools/postcss-normalize/issues"},"license":"CC0-1.0","versions":{"2.0.0":{"name":"postcss-normalize","version":"2.0.0","keywords":["postcss","css","postcss-plugin","normalize.css","normalize","browsers","bugs","fixes","usability","browserslist","browserlist"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@2.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"seaneking","email":"sean@simpla.io"}],"homepage":"https://github.com/jonathantneal/postcss-normalize#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-normalize/issues"},"dist":{"shasum":"e8030b9875acfc1aac0a2ad8080c7da7c9efb654","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-2.0.0.tgz","integrity":"sha512-l8Huw+4hJl7wy0250sQ5nYqCDIhD0SeKLuEEOBXqJ1Hubdcoy3/rla7+URmCcMRmjf6oD55T8Hax/Pb+wt9s4A==","signatures":[{"sig":"MEQCIAn7+p3Y85WoxxVEAXnPHfWU0SGe7SVnyCApdVydbeIbAiASwrbkCpqz/H8ckIAeVbK9zHWUblEgztZOeMNcq/3pPw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","lib/json-to-ast.js","lib/normalize.json"],"_shasum":"e8030b9875acfc1aac0a2ad8080c7da7c9efb654","engines":{"node":">=4.0.0"},"gitHead":"52c41acc3d87238a0de7f9e2ad380ac819db754c","scripts":{"test":"echo 'Running tests...'; npm run test:setup && npm run test:js && npm run test:tape","clean":"git clean -X -d -f","test:js":"eslint *.js --cache --ignore-pattern .gitignore","test:tape":"postcss-tape","prepublish":"npm test","test:setup":"node lib/normalize-css-to-json"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-normalize.git","type":"git"},"_npmVersion":"4.2.0","description":"Use the parts of normalize.css you need from your browserlist","directories":{},"_nodeVersion":"7.10.0","dependencies":{"postcss":"^6.0.1","browserslist":"^2.1.2"},"eslintConfig":{"extends":"dev"},"devDependencies":{"fse":"^3.0.0","eslint":"^3.19.0","pre-commit":"^1.2.2","postcss-tape":"2.0.1","eslint-config-dev":"2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize-2.0.0.tgz_1495073403472_0.6417402233928442","host":"packages-18-east.internal.npmjs.com"}},"7.0.1":{"name":"postcss-normalize","version":"7.0.1","keywords":["postcss","css","postcss-plugin","normalizes","browsers","fixes"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@7.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"seaneking","email":"sean@simpla.io"}],"homepage":"https://github.com/csstools/postcss-normalize#readme","bugs":{"url":"https://github.com/csstools/postcss-normalize/issues"},"dist":{"shasum":"eb51568d962b8aa61a8318383c8bb7e54332282e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-7.0.1.tgz","fileCount":6,"integrity":"sha512-NOp1fwrG+6kVXWo7P9SizCHX6QvioxFD/hZcI2MLxPmVnFJFC0j0DDpIuNw2tUDeCFMni59gCVgeJ1/hYhj2OQ==","signatures":[{"sig":"MEUCIArIY94mR0OGsS98FL/ji8yJAGBXMJW3OlU7WYvJLrLEAiEAsQ01yJPp8auJaeOH1CRQ/WTF/VuQcIhYSZ+yLnjYxGs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17706,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkR1tCRA9TVsSAnZWagAAo88P/2aU2M8omAmmctWG75/8\nzilPrj3pLP+bfVehEu+AZ1brzH+jgdSN228aZZnkKlozSzO3/DRHDu4G8hbI\negEAiUu0uXLIDkbv1ebpXZP+K5b7qw43IwynCKervSSa4c/QU+PbiinoNxZF\nZKgaPky8op1rDAwpdOb/zazWrVG4EWYawgRZsTmIgTdi8qFiZWetL7KkutlY\nU4VEQjQpQ3ut5WJP9FcXxbAWucULVm0w6Q1CiSnJPWO9IHFaCrEL5T625/3e\n9PoEIfdWdimEWWMg2D7jmJ7eL2poMlzkeQZ5Mgl5TKIZSb2M1vtx4O9vGg1/\nABkGcP+kBveZ60Jjc27SwQsn7RmhcNn4QXFFMuD6S57dv9mByjjmvDY6Mfz3\ntxCV8Q8feMagWNkUty/tOBYnBc6L8XvOaAPtiFCF2aBJkMlBLmMACAGA8OPj\nxeUKj70ZqEju+4NBb3xk5ApOydJjMV1g+LIrAGcTPDRYxDWL7K71XOvRblKD\nNYS3h6Q1FAVw+bQx9qjYa/nlLLzumeRPTAAxczY46MYye2N0vW46VcrwTo27\nr6Zwc01s3hX65V+DkuZa4FIfrzlh/ECRKXPBqfFP42LitTBbF2czwoIT0wJ5\nrBkXsJyYEHEsygfXuWg5LoFdjx5twAAjNr4sPdhzU+iAnJJTMcCWRYkYL69h\nqVqY\r\n=TSPe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.js","engines":{"node":">=6.0.0"},"gitHead":"e5e3797e1ad02065e2e6544f6c4288569d7167be","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-normalize.git","type":"git"},"_npmVersion":"6.4.1","description":"Use the parts of normalize.css you need from your browserslist","directories":{},"_nodeVersion":"10.9.0","dependencies":{"postcss":"^7.0.2","browserslist":"^4.1.1","@csstools/normalize.css":"^9.0.1","postcss-browser-comments":"^2.0.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.5.0","rollup":"^0.65.2","pre-commit":"^1.2.2","@babel/core":"^7.0.0","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.0.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize_7.0.1_1536236908351_0.7376446431449506","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"postcss-normalize","version":"2.0.1","keywords":["postcss","css","postcss-plugin","normalize.css","normalize","browsers","bugs","fixes","usability","browserslist","browserlist"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@2.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"seaneking","email":"sean@simpla.io"}],"homepage":"https://github.com/jonathantneal/postcss-normalize#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-normalize/issues"},"dist":{"shasum":"8f77235e775f99c8f1d58fff1accb74e352c28a1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-2.0.1.tgz","integrity":"sha512-clooh8nQxJ4D591uX2BdpxxoU2XO0FAITE9vLzq9pZdQn0zMrOtR1rMKDw5yib3UZ6srmbBtwuQZ2h9Rhi2gEA==","signatures":[{"sig":"MEUCIExIx/yIclMZatEhmc/nIMn9Ht9epn25sOMgCAKKycsHAiEApSqWfAmn2igvAwPhofkgsrKc17N5n0f2LKu5R3QbCr0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","lib/json-to-ast.js","lib/normalize.json"],"_shasum":"8f77235e775f99c8f1d58fff1accb74e352c28a1","engines":{"node":">=4.0.0"},"gitHead":"19e24de8b65a25e1e05e5a9a2a406ef0eddc1582","scripts":{"test":"echo 'Running tests...'; npm run test:setup && npm run test:js && npm run test:tape","clean":"git clean -X -d -f","test:js":"eslint *.js --cache --ignore-pattern .gitignore","test:tape":"postcss-tape","prepublish":"npm test","test:setup":"node lib/normalize-css-to-json"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-normalize.git","type":"git"},"_npmVersion":"4.2.0","description":"Use the parts of normalize.css you need from your browserlist","directories":{},"_nodeVersion":"7.10.0","dependencies":{"postcss":"^6.0.1","browserslist":"^2.1.2"},"eslintConfig":{"extends":"dev"},"devDependencies":{"fse":"^3.0.0","eslint":"^3.19.0","pre-commit":"^1.2.2","postcss-tape":"2.0.1","eslint-config-dev":"2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize-2.0.1.tgz_1495415852310_0.7265982502140105","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"postcss-normalize","version":"2.1.0","keywords":["postcss","css","postcss-plugin","normalize.css","normalize","browsers","bugs","fixes","usability","browserslist","browserlist"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@2.1.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"seaneking","email":"sean@simpla.io"}],"homepage":"https://github.com/jonathantneal/postcss-normalize#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-normalize/issues"},"dist":{"shasum":"bd336bf85c14a5e924cef49951f17fb0ef070174","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-2.1.0.tgz","integrity":"sha512-KyPefeMV+UX/UiVbDbGIrE0kOzgj5h2Q8hbmfpHYIjkFoab6HxNEMwuWLBqDvhj+RqUqCpzHBuGeoAijABXIdA==","signatures":[{"sig":"MEYCIQDZat0Bfcs1c3sL4IznjGUlO28szrz5NtZppa6ZKXhAywIhAMqG/GFPd5bmHtgxpoEZTSjKsJfmcQ8VZTLYd0fsDBfF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.css","index.js","lib/normalize.js","lib/normalize.json"],"_shasum":"bd336bf85c14a5e924cef49951f17fb0ef070174","engines":{"node":">=4.0.0"},"gitHead":"12991d82b5098b0f8b3e3c103181d6161e72b1e2","scripts":{"test":"npm run test:init && npm run test:js && npm run test:tape","clean":"git clean -X -d -f","test:js":"eslint *.js --cache --ignore-pattern .gitignore","test:init":"node lib/normalize-init","test:tape":"postcss-tape","prepublish":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-normalize.git","type":"git"},"_npmVersion":"4.2.0","description":"Use the parts of normalize.css you need from your browserlist","directories":{},"_nodeVersion":"7.10.0","dependencies":{"postcss":"^6.0.1","browserslist":"^2.1.2"},"eslintConfig":{"extends":"dev"},"devDependencies":{"fse":"^3.0.0","eslint":"^3.19.0","pre-commit":"^1.2.2","postcss-tape":"2.0.1","eslint-config-dev":"2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize-2.1.0.tgz_1495839426471_0.3650333983823657","host":"s3://npm-registry-packages"}},"11.0.0":{"name":"postcss-normalize","version":"11.0.0","keywords":["postcss","css","postcss-plugin","normalizes","browsers","fixes"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@11.0.0","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-normalize#readme","bugs":{"url":"https://github.com/csstools/postcss-normalize/issues"},"dist":{"shasum":"eb7e3fdd02326109e6a338c4bcfd498027dc4512","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-11.0.0.tgz","fileCount":6,"integrity":"sha512-65T9YID7UhOe2hQtvLhVCHoqWY17ze7v79oC87aQtoITQOvnqQ3kNS2k9y9phRmUg6HIBSHAXC1BMAfRr3Wsvg==","signatures":[{"sig":"MEYCIQDrGWwP8LgjuTsSowhxX+eIZZqRda6ULa8vQabau+4ebQIhAIgyQG82FDNnHwDo51k2Z1r1LycM9u5jB10Uwg3gf6Vw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31026},"main":"./index.cjs","babel":{"plugins":["@babel/plugin-syntax-import-meta"],"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"types":"./index.d.ts","module":"./index.mjs","engines":{"node":">= 12"},"exports":{"import":"./index.mjs","default":"./index.mjs","require":"./index.cjs"},"gitHead":"abf7ef8669d451aee6760bad564d1e92e7eedcc2","scripts":{"tape":"postcss-tape","test":"npm run build && npm run tape","build":"rollup --config .rollup.mjs --silent","prepublishOnly":"npm test"},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-normalize.git","type":"git"},"_npmVersion":"10.8.3","description":"Use the parts of normalize.css or sanitize.css you need from your browserslist","directories":{},"_nodeVersion":"20.17.0","dependencies":{"sanitize.css":"*","@csstools/normalize.css":"*","postcss-browser-comments":"^4"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^4.21.2","postcss":"^8.4.31","browserslist":"^4.16.5","postcss-tape":"^6.0.1","postcss-import":"^14.0.2"},"peerDependencies":{"postcss":">= 8","browserslist":">= 4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize_11.0.0_1725720735521_0.01652449891568475","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"postcss-normalize","version":"9.0.0","keywords":["postcss","css","postcss-plugin","normalizes","browsers","fixes"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@9.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"seaneking","email":"sean@simpla.io"}],"homepage":"https://github.com/csstools/postcss-normalize#readme","bugs":{"url":"https://github.com/csstools/postcss-normalize/issues"},"dist":{"shasum":"3b551279f78ec3b2e151bc8cf52ff6e46c4cc60c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-9.0.0.tgz","fileCount":6,"integrity":"sha512-//kq5O1xkygzN1iCioFIBtzyVTgB6ce9+Hu0mNHuUhPn+FnnFSPybe5kBemnUPPqd7QrHc+kdX6GVECUWdU2uQ==","signatures":[{"sig":"MEUCIQDLLzGJ14TcMaV+3UwP89cwcSvit5vkIl7NlTMKyc/vMgIgBoG/ug6ifCChTbm/E783VKSJsUmSNS8R/PXqYefFYcA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30714,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJek4fNCRA9TVsSAnZWagAAm3oP/iCSn5iBxDVyhEXZS5Eh\nyvWpxAfDGnxZ+3eHrC+iDmplc8DxjJNSPef0zamdD4w3/ptIYkbs29NVQwXr\nag2ncAfe33SrsKVJSKaIPb0ADo05FvcB+GgGhIrj960ttWpSQsDN0T5CoJQl\nFH75pGuZimABdtLCwvX5xGneD49PRD3PFQ94PrWQHw1PLp9Gn7TWufKH47rV\nkoPOQwOj0KDty+4CMjsSWnatl46RoYsunDLBWk5lhL20UAOydWW3NBtwwP3I\nfGMMWGhKoF8WvcE8XkHL/EZVlCVp13Q14IrKd5eqWnSrAOqIGSpLKNyTxM9M\n8gvWvZlPxEdr07ggbyd9UL0Bmy6cUWvMVKYBG7GgVZ9jVOURZnuE83no8Swg\nIrYS4VufvmdZFh+k9XSFYsMl/aXOmfPt4Lh2uVvaoOuBQMd2y+pny270qZZ+\naTbWt6oJoQGCjsZZgDFakMwxBmrZTAN6ODRdOTMMxMoZWh67Z0tZkBFI9u6B\nt8RtqqBJK4U42YBfzQ1fr12KnN5L0GEI+MxH6tc0re4o+fNuO423C2Nv9r8K\nycRMrpDh2q2v5SZDocy1f3PmieiqmutkVcJbHaFQOY8RDrKqiKfBdH+Lx2fw\n7Xp6LPFk2dArv8MrSiFixiRhRB7xpIdNw5+wPd53R75OZ8qJ/wBiyLdtyOrN\nsnaK\r\n=vOB/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","babel":{"plugins":["@babel/plugin-syntax-import-meta"],"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"module":"dist/index.esm.mjs","rollup":{"input":"src/index.js","output":[{"file":"dist/index.cjs.js","format":"cjs"},{"file":"dist/index.esm.js","format":"esm"}],"plugins":["rollup-plugin-babel"]},"engines":{"node":">=10.0.0"},"gitHead":"9f094c7f96c8450341721800dd564fa617049f9d","scripts":{"lint":"npx eslint --cache src","tape":"npx postcss-tape","test":"npm run lint && npm run tape","build":"npx rollup -c .rollup.js","pretest":"npm install && npm run build","lint:fix":"npx eslint --cache --fix","build:watch":"npx rollup -c .rollup.js --watch"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-normalize.git","type":"git"},"_npmVersion":"6.14.4","description":"Use the parts of normalize.css or sanitize.css you need from your browserslist","directories":{},"_nodeVersion":"13.12.0","dependencies":{"postcss":"^7.0.27","sanitize.css":"*","@csstools/normalize.css":"*","postcss-browser-comments":"^3.0.0"},"eslintConfig":{"env":{"es6":true,"node":true},"parser":"babel-eslint","extends":"eslint:recommended"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^6.8.0","rollup":"^2.6.0","pre-commit":"^1.2.2","@babel/core":"^7.9.0","babel-eslint":"^10.1.0","postcss-tape":"^5.0.2","postcss-import":"^12.0.1","@babel/preset-env":"^7.9.5","rollup-plugin-babel":"^4.4.0","@babel/plugin-syntax-import-meta":"^7.8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize_9.0.0_1586726861048_0.0674413500699842","host":"s3://npm-registry-packages"}},"13.0.1":{"name":"postcss-normalize","version":"13.0.1","description":"Use the parts of normalize.css or sanitize.css you need from your browserslist","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/csstools/postcss-normalize.git"},"homepage":"https://github.com/csstools/postcss-normalize#readme","bugs":{"url":"https://github.com/csstools/postcss-normalize/issues"},"main":"./index.cjs","module":"./index.mjs","exports":{"require":"./index.cjs","import":"./index.mjs","default":"./index.mjs"},"scripts":{"prepublishOnly":"npm test","build":"rollup --config .rollup.mjs --silent","test":"npm run build && node --test","test:rewrite-expects":"REWRITE_EXPECTS=true node --test"},"engines":{"node":">= 18"},"peerDependencies":{"browserslist":">= 4","postcss":">= 8"},"dependencies":{"@csstools/normalize.css":"12.1.1","postcss-browser-comments":"^6.0.1","sanitize.css":"13.0.0"},"devDependencies":{"@csstools/postcss-tape":"^5.0.0","browserslist":"^4.16.5","postcss":"^8.4.31","postcss-import":"^16.0.0","rollup":"^4.21.2"},"babel":{"plugins":["@babel/plugin-syntax-import-meta"],"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"keywords":["postcss","css","postcss-plugin","normalizes","browsers","fixes"],"_id":"postcss-normalize@13.0.1","gitHead":"0ef7c4d8634a3e647e90a4ee08557724b8f5b9e7","_nodeVersion":"20.17.0","_npmVersion":"10.8.3","dist":{"integrity":"sha512-oGfXG7IQ44FUIMFco2N2Uz71UotM+tZ9trEmT1bHIUR5gAplyG3RnHqpMDEcCx1r+1bwBJTrI5uhiQr4YOpqhQ==","shasum":"4e367c8933caba83557c6150af5aa4774b2a1c99","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-13.0.1.tgz","fileCount":5,"unpackedSize":29961,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDn3vcXncLq0rqEvHdx6ukWhO1/xQ46xRuGTsDKT95VhwIhAJdCNfkaDVnRI/E2AUqRaGVxqV4jK5zyYkSIwhDj6jTj"}]},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"directories":{},"maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-normalize_13.0.1_1727299416495_0.5938459087595915"},"_hasShrinkwrap":false},"7.0.0":{"name":"postcss-normalize","version":"7.0.0","keywords":["postcss","css","postcss-plugin","normalizes","browsers","fixes"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@7.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"seaneking","email":"sean@simpla.io"}],"homepage":"https://github.com/csstools/postcss-normalize#readme","bugs":{"url":"https://github.com/csstools/postcss-normalize/issues"},"dist":{"shasum":"3535e273e53a80b60b54af374cba90875591380e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-7.0.0.tgz","fileCount":6,"integrity":"sha512-jEtxVPoBdpG7Nq38k7J+POlfDM1AjoWkGjsSA9Zmlis6WOnB8/rXEnB9oIXPTCCF0qUPrKJ3jr3S7RCbbqhyCA==","signatures":[{"sig":"MEUCIC1BXE6LO4ZuiG34Wm4hGFYxw9giGrhBYml57BK4CQQmAiEAxpO4PtWfilzIzgToSywRBz/df38e0ygEcG8JTJOA204=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17444,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjoeGCRA9TVsSAnZWagAA8FUP/RRPrcRcrFhLcE2qVMaY\nsPhUTwk2jGIcvMy+7BTppcJqlwS8vfZZBiM6BLypUDWGAh46UpmSXkJ9W/Ls\nkcpeYc5LQS2SU3ceK7myW3CW8ghJWb5VuNlchHU89Cswv6R+FMSUQDz33Rag\n75laJNvpO8McEJKEzl7VP8H2VxpGp+T2QRHwJj3TV3eSjhkoHZoLw4yGCxI8\nV5O1Q9rclFjyeQdJA4qOWsBUfJYDaKpIplJF//HpJPuubhIkrMZTp9NRhQ/G\nTXJuHh7e8PmSclf7AdILi5Sq0Vu+WuGIoZ1PDS7rsU6neVAjR55eMo+DTFZR\n+Js0ztyLsEGz4umzG2yruSgtWunVMzdL/v1lFxxr1Jzq1Hw8TaNpvRhJQWXk\nDdbMwPAMgLkm2ckxNtPS5xxHne2iH9svg7c2lg6So3h/om35KgqTyxzzUcgI\nAt9ZAwMog3KXt7BHNheItLME/5qufsaj/eBgrFpFlbfbEotWukRZLl/GKxaV\nu41lEP+sp8v1+XF9TR/MLYe4YLQq+RnE8Dq5jJ7Xlzc07kUVAiYWLGmd4aGo\nF73FNPQ2vKLKkxQ9fSavh6kxbS14R5O83CrZgrfV4uAtdcfIrVn4PBiCDQ1+\nYTKJeFdy4VKaeGl+gN6RwWN17G2bdTd0I7f6MmXSZH1nXPgSSL8ZT+eUD3gu\ngLEi\r\n=ZE/j\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.js","engines":{"node":">=6.0.0"},"gitHead":"3fdc61bdde08dbe11853cc3307748a15c1d9d2e2","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-normalize.git","type":"git"},"_npmVersion":"6.4.1","description":"Use the parts of normalize.css you need from your browserslist","directories":{},"_nodeVersion":"10.9.0","dependencies":{"postcss":"^7.0.2","browserslist":"^4.1.0","@csstools/normalize.css":"^9.0.1","postcss-browser-comments":"^1.0.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.5.0","rollup":"^0.65.0","pre-commit":"^1.2.2","@babel/core":"^7.0.0","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.0.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize_7.0.0_1536067461531_0.9587412451933526","host":"s3://npm-registry-packages"}},"13.0.0":{"name":"postcss-normalize","version":"13.0.0","keywords":["postcss","css","postcss-plugin","normalizes","browsers","fixes"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@13.0.0","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-normalize#readme","bugs":{"url":"https://github.com/csstools/postcss-normalize/issues"},"dist":{"shasum":"e61212727c73a2ada863df305b6be9467f45a2f9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-13.0.0.tgz","fileCount":5,"integrity":"sha512-EdlY4gQiS8DluldxUsgsgzMA1+4mRd4FQ7x8yGT934X3IBTJ0ZW3OG6xNneaHTv2BNzwnQ5mrnmrA/7yxVvnYw==","signatures":[{"sig":"MEUCIGJeu6v2LsUrz7racWg2J6rbnLs0n9yr0CNmav0cmRXXAiEAhfoO3fI7XAl7G4/N8BpduL0mwcUB7eR40beBDmjzwvg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29877},"main":"./index.cjs","babel":{"plugins":["@babel/plugin-syntax-import-meta"],"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"module":"./index.mjs","engines":{"node":">= 18"},"exports":{"import":"./index.mjs","default":"./index.mjs","require":"./index.cjs"},"gitHead":"b8840b0b4aca53e17a2d208008438a44db1a1f37","scripts":{"tape":"postcss-tape","test":"npm run build && npm run tape && node .test.cjs && node .test.mjs","build":"rollup --config .rollup.mjs --silent","prepublishOnly":"npm test"},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-normalize.git","type":"git"},"_npmVersion":"10.8.3","description":"Use the parts of normalize.css or sanitize.css you need from your browserslist","directories":{},"_nodeVersion":"20.17.0","dependencies":{"sanitize.css":"13.0.0","@csstools/normalize.css":"12.1.1","postcss-browser-comments":"^4"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^4.21.2","postcss":"^8.4.31","browserslist":"^4.16.5","postcss-tape":"^6.0.1","postcss-import":"^14.0.2"},"peerDependencies":{"postcss":">= 8","browserslist":">= 4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize_13.0.0_1725724346839_0.38871130192697456","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"postcss-normalize","version":"4.0.0","keywords":["postcss","css","postcss-plugin","normalize.css","normalize","browsers","bugs","fixes","usability","browserslist","browserlist"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@4.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"seaneking","email":"sean@simpla.io"}],"homepage":"https://github.com/jonathantneal/postcss-normalize#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-normalize/issues"},"dist":{"shasum":"12d05a6005661a7282034347b5d12ccf083bd119","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-4.0.0.tgz","integrity":"sha512-WR+Z/+IP9Hpc9n8fJWKBU1Wzlqrkc5f2nbiQPovFSDux4fASFijpIJcpC0KLiRfhL46wVxPs/FaeBoIoS6Vq8w==","signatures":[{"sig":"MEYCIQC+DR6urMDD8yu43rLlVoNcBjjFmhC70bblpJuxV2t4YAIhAP7s7KoJZ/As73IRmIRfeiPJl5gWoqph0w70Ej2Cg/sx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","lib/normalize.js","lib/normalize.json"],"engines":{"node":">=4.0.0"},"gitHead":"c56d952a2504cc25aae82e2c218f613738bfd967","scripts":{"test":"npm run test:init && npm run test:js && npm run test:tape","clean":"git clean -X -d -f","test:js":"eslint *.js --cache --ignore-pattern .gitignore","test:init":"node lib/normalize-init","test:tape":"postcss-tape","prepublish":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-normalize.git","type":"git"},"_npmVersion":"5.0.3","description":"Use the parts of normalize.css you need from your browserlist","directories":{},"_nodeVersion":"8.1.0","dependencies":{"postcss":"^6.0.2","browserslist":"^2.1.5"},"eslintConfig":{"extends":"dev"},"devDependencies":{"fse":"^3.0.0","eslint":"^4.0.0","pre-commit":"^1.2.2","postcss-tape":"2.0.1","eslint-config-dev":"2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize-4.0.0.tgz_1498050057598_0.952442726586014","host":"s3://npm-registry-packages"}},"0.1.1":{"name":"postcss-normalize","version":"0.1.1","keywords":["postcss","css","postcss-plugin","normalize"],"author":{"name":"Sean King","email":"sean@simpla.io"},"license":"MIT","_id":"postcss-normalize@0.1.1","maintainers":[{"name":"seaneking","email":"sean@simpla.io"}],"homepage":"https://github.com/seaneking/postcss-normalize","bugs":{"url":"https://github.com/seaneking/postcss-normalize/issues"},"dist":{"shasum":"1c1affe8a23737c1da01aa5b58a85e78c278a3bf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-0.1.1.tgz","integrity":"sha512-n3omx1OV2uKKymG+KT1L9JPEP6RScpECzhgvyew43QfGZvXX5I14sx6nZIgK7PmX9ZPT92Ri4SvXcY5Htx6Z2Q==","signatures":[{"sig":"MEQCIB8MIzEo4gy+DrMwjzA5KmTl+5OjBl/q3xlQTxT/MZL2AiBx9yfv5KGGFLxu4hBxjz7S19WGN++lgatOLaiDDAxe5Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"1c1affe8a23737c1da01aa5b58a85e78c278a3bf","gitHead":"aebc9ff479afcdd9e8eadd11a666b4394e63c5a7","scripts":{"test":"gulp check"},"_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"deprecated":"this plugin is deprecated! Use postcss-import instead","repository":{"url":"git+https://github.com/seaneking/postcss-normalize.git","type":"git"},"_npmVersion":"2.13.0","description":"PostCSS plugin that automatically applies normalize.css","directories":{},"_nodeVersion":"0.12.7","dependencies":{"postcss":"^4.1.9","clean-css":"^3.3.9","normalize.css":"^3.0.3"},"devDependencies":{"chai":"^2.3.0","gulp":"^3.8.11","gulp-mocha":"^2.0.1","gulp-eslint":"^0.12.0"}},"0.2.0":{"name":"postcss-normalize","version":"0.2.0","keywords":["postcss","css","postcss-plugin","normalize"],"author":{"name":"Sean King","email":"sean@simpla.io"},"license":"MIT","_id":"postcss-normalize@0.2.0","maintainers":[{"name":"seaneking","email":"sean@simpla.io"}],"homepage":"https://github.com/seaneking/postcss-normalize","bugs":{"url":"https://github.com/seaneking/postcss-normalize/issues"},"dist":{"shasum":"4594847042cf806336e08a5c0ad6e1794ee4920b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-0.2.0.tgz","integrity":"sha512-g+0iulxvJubaomtgAM3JtapENV22O4/pwbSf9QgasWrlAEKLX2lcOtAK8Km+r18GnJkDMNMASNg/apCLSurNXg==","signatures":[{"sig":"MEQCIAtBmA0PqPjoRF7cGv3HuO5KiNG1UlgrAFcc2XTl7Uc3AiA7Z8MTSfGoEMMBoOp4pSW2DYFWh11gaEt+14gKLSG/xA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"4594847042cf806336e08a5c0ad6e1794ee4920b","gitHead":"65548e03be8b6a8853f2b99afddfadbbbbf6bd29","scripts":{"test":"gulp check"},"_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"deprecated":"this plugin is deprecated! Use postcss-import instead","repository":{"url":"git+https://github.com/seaneking/postcss-normalize.git","type":"git"},"_npmVersion":"3.3.12","description":"PostCSS plugin that automatically applies normalize.css","directories":{},"_nodeVersion":"5.5.0","dependencies":{"postcss":"^5.0.0","clean-css":"^3.3.9","normalize.css":"^4.0.0"},"devDependencies":{"chai":"^2.3.0","gulp":"^3.8.11","gulp-mocha":"^2.0.1","gulp-eslint":"^0.12.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize-0.2.0.tgz_1459133526687_0.27469851030036807","host":"packages-12-west.internal.npmjs.com"}},"0.1.2":{"name":"postcss-normalize","version":"0.1.2","keywords":["postcss","css","postcss-plugin","normalize"],"author":{"name":"Sean King","email":"sean@simpla.io"},"license":"MIT","_id":"postcss-normalize@0.1.2","maintainers":[{"name":"seaneking","email":"sean@simpla.io"}],"homepage":"https://github.com/seaneking/postcss-normalize","bugs":{"url":"https://github.com/seaneking/postcss-normalize/issues"},"dist":{"shasum":"66b53367a1409db3dbc8f4b2c8faf2dd90176073","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-0.1.2.tgz","integrity":"sha512-9F2Iv+vi2Q5jr49nWX4ow0sySqUBcNxobT24exNOBcdG4ZuMdXSBfGoURKDy5GwQqpIXoxbdPjEmwuCscpxt6g==","signatures":[{"sig":"MEYCIQC5bt/k0SS/Gky/xT+eh016CzmxN3Xc+9y9E/EYsaWXcAIhANoxnQxZrNYu/6ZHNhbmKfY7/2GGGkvy2m1sIAxVkFJ6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"66b53367a1409db3dbc8f4b2c8faf2dd90176073","gitHead":"2c1af7f387d554aae5f991d4a583cb53afd8a501","scripts":{"test":"gulp check"},"_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"deprecated":"this plugin is deprecated! Use postcss-import instead","repository":{"url":"git+https://github.com/seaneking/postcss-normalize.git","type":"git"},"_npmVersion":"2.14.7","description":"PostCSS plugin that automatically applies normalize.css","directories":{},"_nodeVersion":"4.2.1","dependencies":{"postcss":"^4.1.9","clean-css":"^3.3.9","normalize.css":"^3.0.3"},"devDependencies":{"chai":"^2.3.0","gulp":"^3.8.11","gulp-mocha":"^2.0.1","gulp-eslint":"^0.12.0"}},"0.3.0":{"name":"postcss-normalize","version":"0.3.0","keywords":["postcss","css","postcss-plugin","normalize"],"author":{"name":"Sean King","email":"sean@simpla.io"},"license":"MIT","_id":"postcss-normalize@0.3.0","maintainers":[{"name":"seaneking","email":"sean@simpla.io"}],"homepage":"https://github.com/seaneking/postcss-normalize","bugs":{"url":"https://github.com/seaneking/postcss-normalize/issues"},"dist":{"shasum":"1866d574af10191e5f0a4cf961fcc73ade3d3588","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-0.3.0.tgz","integrity":"sha512-NALwrhNecvtQUB+YR5pPNV3wx3N+v41T5N1RPZS7MhdQUSVFjincbWXVyaToJrWg3KV+uo9sPsqdxfr54klrbw==","signatures":[{"sig":"MEQCICkB4N/zNXygPi/jS9oRXtGwoRyxG9jAyVXW84L4l8+wAiBkwVci6qQj6L4x8ikehfF5mFOS5XvfaYrPTFy2OBMIvw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"1866d574af10191e5f0a4cf961fcc73ade3d3588","gitHead":"ea204f34a664573c5571ffea08d91dd457222f0e","scripts":{"test":"gulp check"},"_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"deprecated":"this plugin is deprecated! Use postcss-import instead","repository":{"url":"git+https://github.com/seaneking/postcss-normalize.git","type":"git"},"_npmVersion":"3.3.12","description":"PostCSS plugin that automatically applies normalize.css","directories":{},"_nodeVersion":"5.5.0","dependencies":{"postcss":"^5.0.0","normalize.css":"^4.0.0"},"devDependencies":{"chai":"^2.3.0","gulp":"^3.8.11","gulp-mocha":"^2.0.1","gulp-eslint":"^0.12.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize-0.3.0.tgz_1464236560353_0.05987240467220545","host":"packages-16-east.internal.npmjs.com"}},"0.1.0":{"name":"postcss-normalize","version":"0.1.0","keywords":["postcss","css","postcss-plugin","normalize"],"author":{"name":"Sean King","email":"sean@simpla.io"},"license":"MIT","_id":"postcss-normalize@0.1.0","maintainers":[{"url":"http://simpla.io","name":"Sean King","email":"sean@simpla.io"}],"homepage":"https://github.com/seaneking/postcss-normalize","bugs":{"url":"https://github.com/seaneking/postcss-normalize/issues"},"dist":{"shasum":"1a9b0e50cc782b85666357616a0bdc8a199d6802","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-0.1.0.tgz","integrity":"sha512-hMGyHhv8hREa6bMc8/6w2bpPQJegcgoLMxYwt/tyHVSPO0Acg5DVb8vB2QdBoVJ87yHV+YSPPdSSmq4FiKKDTg==","signatures":[{"sig":"MEUCIQCsyTTC8w1kfXg/qTpRkYCnl7Vw6HPJKfs0h+8qPaA8UAIgHKeyq/bAkRQjGw6alAeD0vbwQO0Rje6HImeAzcjR++o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"1a9b0e50cc782b85666357616a0bdc8a199d6802","gitHead":"30ae405ed7a865630c11de0a695fed1b126f63b4","scripts":{"test":"gulp check"},"_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"deprecated":"this plugin is deprecated! Use postcss-import instead","repository":{"url":"git+https://github.com/seaneking/postcss-normalize.git","type":"git"},"_npmVersion":"2.11.2","description":"PostCSS plugin that automatically applies normalize.css","directories":{},"_nodeVersion":"0.12.0","dependencies":{"postcss":"^4.1.9","normalize.css":"^3.0.3"},"devDependencies":{"chai":"^2.3.0","gulp":"^3.8.11","gulp-mocha":"^2.0.1","gulp-eslint":"^0.12.0"}},"3.0.0":{"name":"postcss-normalize","version":"3.0.0","keywords":["postcss","css","postcss-plugin","normalize.css","normalize","browsers","bugs","fixes","usability","browserslist","browserlist"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@3.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"seaneking","email":"sean@simpla.io"}],"homepage":"https://github.com/jonathantneal/postcss-normalize#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-normalize/issues"},"dist":{"shasum":"f217eb2d0867db9f393458a8ee7aa07adbedaa55","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-3.0.0.tgz","integrity":"sha512-D06e6MhMtP+yHgkY+lI34cWSOtO7L/gRKtAYW/btSGVFy8Uj9wjJUQ1dzoOBlcM4md1B93wOM0BUZoWFq6iu1Q==","signatures":[{"sig":"MEUCIGRewytoQHNFtCpqxpC9a/p2fs6XQvVa4sE5h6WAw1NeAiEAl06vDr0kGkMwYfc6PcpyrwjirgC0sdbyGzThAd8Egcc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","lib/normalize.js","lib/normalize.json"],"_shasum":"f217eb2d0867db9f393458a8ee7aa07adbedaa55","engines":{"node":">=4.0.0"},"gitHead":"4a636aa7bbd34d8ae6049a06acd990c13c41e299","scripts":{"test":"npm run test:init && npm run test:js && npm run test:tape","clean":"git clean -X -d -f","test:js":"eslint *.js --cache --ignore-pattern .gitignore","test:init":"node lib/normalize-init","test:tape":"postcss-tape","prepublish":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-normalize.git","type":"git"},"_npmVersion":"4.2.0","description":"Use the parts of normalize.css you need from your browserlist","directories":{},"_nodeVersion":"7.10.0","dependencies":{"postcss":"^6.0.1","browserslist":"^2.1.2"},"eslintConfig":{"extends":"dev"},"devDependencies":{"fse":"^3.0.0","eslint":"^3.19.0","pre-commit":"^1.2.2","postcss-tape":"2.0.1","eslint-config-dev":"2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize-3.0.0.tgz_1496020281835_0.7719474362675101","host":"s3://npm-registry-packages"}},"10.0.1":{"name":"postcss-normalize","version":"10.0.1","keywords":["postcss","css","postcss-plugin","normalizes","browsers","fixes"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@10.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-normalize#readme","bugs":{"url":"https://github.com/csstools/postcss-normalize/issues"},"dist":{"shasum":"464692676b52792a06b06880a176279216540dd7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-10.0.1.tgz","fileCount":6,"integrity":"sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==","signatures":[{"sig":"MEQCIBhDrITerQI/R1ADZaIZOLxZRpfFJPJDq5odDjTk3qjFAiBRapg1ClDgDBozZK3lxSUf7Vhf0rWA/rhhZOwD2PkKhQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32052,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhQeDDCRA9TVsSAnZWagAA+tgQAJhmNODu/Uwej7tn6S6n\nJLSwvn6N1WIo4jor0J7a/NAgDTBHjeU7MbgnLZxCpVRUZna2zlY/Nviltopv\nxq9OYgPpG3EMJw8/DYkq0BI0OO2cwMvPxCU6jtTECk4VaDXA3yPxx4fNT0Xm\n/Sfd9B1ubTE0M7ktVSHrHkYturZh2tenq+X+veM689S3RrWmsyqWVA6rm+kV\ns3PYAazPtjIbDCg98Hy+VM8hGvbY4it02eaA5hZ6BJKorQbNPldyk86cD4tE\n+7hKv3s+whue6icJ9fvLC+o+xysjETDEEaUaiHvGQSksHOPeXDp9DooZgtyt\nIROfW3zYuLkATaqgUmQxIdYpn6riNlL22EfRJU3VzpjjrxnpN1ZRd20Y70UP\n5SRitPIcEyqiwGtDCbzQQri1IXj8EizL2dXTxHSoxN9KPVgTeg+Dpzwj/xNS\nAijBMI50liFWrNY1L4HSeWMvh5Tazw9RtkzWu/dLmNeQeMnkjTkw/tpW9AZE\ni0ijgCFYc1NjKY+FhWJiMtNWF21VtbinsNTr0x/X3fSeZRpCIG4dccO9nEQ+\n6fKo5bpVq2bxokX84OcEqgJu33wcysqpoXn2vlm2Jqvn+iJ4/4LVzyn9NW+G\nW4hTHF0VR9jutIbTKKIVEPsFx4Vzkg4zniyCycnIhRcwftaey2+qGVCsWSl7\nG2mL\r\n=IP8E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index.cjs","babel":{"plugins":["@babel/plugin-syntax-import-meta"],"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"types":"./index.d.ts","module":"./index.mjs","engines":{"node":">= 12"},"exports":{"import":"./index.mjs","default":"./index.mjs","require":"./index.cjs"},"gitHead":"f50e2298f542761f10b1492a93b6a042d1dcafef","scripts":{"lint":"package-check && eslint --cache .gitignore --quiet","tape":"postcss-tape","test":"npm run lint && npm run build && npm run tape","build":"rollup --config .rollup.js --silent","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-normalize.git","type":"git"},"_npmVersion":"7.20.3","description":"Use the parts of normalize.css or sanitize.css you need from your browserslist","directories":{},"_nodeVersion":"16.6.1","dependencies":{"sanitize.css":"*","@csstools/normalize.css":"*","postcss-browser-comments":"^4"},"eslintConfig":{"rules":{"semi":["error","never"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":12,"ecmaFeatures":{"modules":true}},"ignorePatterns":[".tape.js"]},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^7.32.0","rollup":"^2.56.3","postcss":"^8.2.13","pre-commit":"^1.2.2","@babel/core":"^7.15.5","browserslist":"^4.16.5","postcss-tape":"^6.0.1","postcss-import":"^14.0.2","@babel/preset-env":"^7.15.6","rollup-plugin-babel":"^4.4.0","@skypack/package-check":"^0.2.2","@babel/plugin-syntax-import-meta":"^7.10.4"},"peerDependencies":{"postcss":">= 8","browserslist":">= 4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize_10.0.1_1631707331152_0.30839804873133647","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"postcss-normalize","version":"6.0.0","keywords":["postcss","css","postcss-plugin","normalizes","browsers","fixes"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@6.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"seaneking","email":"sean@simpla.io"}],"homepage":"https://github.com/csstools/postcss-normalize#readme","bugs":{"url":"https://github.com/csstools/postcss-normalize/issues"},"dist":{"shasum":"6441b3ced4578f7b7c3b1529a43d1d0ef466996f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-6.0.0.tgz","fileCount":6,"integrity":"sha512-dejFnNT8h4jA0CXKx2D/xuA/mk8cnvAssVeFGiUXxD034i/mICUUzbxvpNAO12VQhFOht9oWa9T3RUeq/xTNsw==","signatures":[{"sig":"MEYCIQDAjFE9Z7T1yPsIcn0gL7+/6VdNosUI2/DLGLvvxgLWUQIhAIwQ9QHLqkrBxZqmTJV6lt42p2FMEczoBk6iDjOmEBqk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16362},"main":"index.cjs.js","_from":".","files":["index.cjs.js","index.es.js"],"module":"index.es.js","_shasum":"6441b3ced4578f7b7c3b1529a43d1d0ef466996f","engines":{"node":">=6.0.0"},"gitHead":"5c5b70ad62fd016ec543ac1bec93e8b8f1026b7c","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-normalize.git","type":"git"},"_npmVersion":"3.10.10","description":"Use the parts of normalize.css you need from your browserslist","directories":{},"_nodeVersion":"6.14.3","dependencies":{"postcss":"^6.0.22","browserslist":"^3.2.8","@csstools/normalize.css":"^8.0.0","postcss-browser-comments":"^1.0.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^4.19.1","rollup":"^0.60.7","babel-core":"^6.26.3","pre-commit":"^1.2.2","babel-eslint":"^8.2.3","postcss-tape":"^2.2.0","babel-preset-env":"^1.7.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^3.0.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize_6.0.0_1529151386646_0.7521386678858948","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"postcss-normalize","version":"10.0.0","keywords":["postcss","css","postcss-plugin","normalizes","browsers","fixes"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@10.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-normalize#readme","bugs":{"url":"https://github.com/csstools/postcss-normalize/issues"},"dist":{"shasum":"6ad4c55067b16447969a8ab208c9f9f39d859aa7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-10.0.0.tgz","fileCount":8,"integrity":"sha512-krYZhIfZ6TIbMSXI4JpIWU64CPHCzXNbyCgHAJdZXirBpgTLRoB4+bSA17zvMLlst6SrdL9yfyTdGQlxS5poeg==","signatures":[{"sig":"MEQCIEb8o9FHM3hpPJUYdbtVFY4/Wn9Zf4Av1qXqVRyRAdu/AiBBTXjYwh3NH3whHthZtGHm2y63NlIXFKD88J8LjO/P5w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48060,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgirlbCRA9TVsSAnZWagAAXJwP/1ywxswn5nIuyIAhlYHm\nI2uvLWSa0WbEsngaRDHGXfTGKBmvSGAu3AFlGxrUVqpd4x8RAKAC426fXzLf\nk74VHfl8xee92qKOAR0Plgm11vgh6pQ87Be47T93uMUZlIl5IKc/rubzhptn\nkogj6tXv0CXCtCbaAHi9NwWvNovoo2Bq4XHQB/XTc6Hi6GsPnyLuwuuP3KmE\nLEitEITlozFMyYgzDdSRjNLG3vCrwgltkP496tVHDnmo+jBAUjVJ2HzcR5Wn\nmNT/9kCRZKjVYLc6/a3Hr0NnRh7r/DqNU5sjD1svfq1iMmqXkrk+vC+zqr7a\n6d+/oHV6IT0GwHLMfWsoktDtLz+SJ1vPEzNA9sLAEBKSPigVb6WovrzN2TdB\nE2qX48eCN7Kv5kRvaclO2Dj/QIPFma4/tgdz9LrPgqsloiKKhiooVETeD0IK\npvw005B0gwPZ0lA/Q1+FFPfkkxDemraDW5q2WMGUi4mgNuhikCrrZPUw4byq\nrreCLDodCcm1QgTb8QQmDDAIp8D6AlPo0tAu/dZoKNqvI2DpzDLlaeQzBDb6\n/6KwP4A+KpCXWEkCR94TgYitmGaMV+N8QzQylwhEprLG1evI6hxOHNrwFvYV\n75sa9Az6UzPRGtGN7R6Es4WuwDbucKHyBP8+AanCX+W49fBWYTMnatxPSZXU\nrHy9\r\n=Y2Co\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs","babel":{"plugins":["@babel/plugin-syntax-import-meta"],"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"module":"index.mjs","engines":{"node":">= 12"},"gitHead":"47eaf289e77555f1dadcbb1f4ecb3dd48acdf71d","scripts":{"lint":"eslint --cache .gitignore --quiet","tape":"postcss-tape","test":"npm run lint && npm run build && npm run tape","build":"rollup --config .rollup.js --silent","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-normalize.git","type":"git"},"_npmVersion":"7.10.0","description":"Use the parts of normalize.css or sanitize.css you need from your browserslist","directories":{},"_nodeVersion":"16.0.0","dependencies":{"sanitize.css":"*","@csstools/normalize.css":"*","postcss-browser-comments":"^4"},"eslintConfig":{"rules":{"semi":["error","never"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":12,"ecmaFeatures":{"modules":true}},"ignorePatterns":[".tape.js"]},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^7.25.0","rollup":"^2.46.0","postcss":"^8.2.13","pre-commit":"^1.2.2","@babel/core":"^7.13.16","browserslist":"^4.16.5","postcss-tape":"^6.0.1","postcss-import":"^14.0.1","@babel/preset-env":"^7.13.15","rollup-plugin-babel":"^4.4.0","@babel/plugin-syntax-import-meta":"^7.10.4"},"peerDependencies":{"postcss":">= 8","browserslist":">= 4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize_10.0.0_1619704155364_0.5519313308605611","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"postcss-normalize","version":"8.0.0","keywords":["postcss","css","postcss-plugin","normalizes","browsers","fixes"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@8.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"seaneking","email":"sean@simpla.io"}],"homepage":"https://github.com/csstools/postcss-normalize#readme","bugs":{"url":"https://github.com/csstools/postcss-normalize/issues"},"dist":{"shasum":"7b540c4c70e05defdc85a2e4a4ea25df734cd35f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-8.0.0.tgz","fileCount":8,"integrity":"sha512-6GGHJIn5N3DG9dq8k0k+ZL5cyE0KvdMbot7hRqX8MEnoWluK2iQzcbH1c1YnFkIMToi8262M79vNqdXzE5bwow==","signatures":[{"sig":"MEUCIQCHocTYo6r6VEM3MSXpqZoehKeAuAjtU+wkI79HLDqs9wIgTAmcpmU5oraEwEtMSv0Pz2TX5sAeQ/+6Uu+/Cokr4SU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30377,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc9nK5CRA9TVsSAnZWagAA6XgQAJXUPqd6ss597jS10L2/\n8gujza8oIEMS2ds1bloO4M9hHzfx0qTGAe4Rl6a9rZoQC9YBOVKGaKhzRwkt\nUPlHmgFCv7k4nOTNqxEGdPnWl8ffzq8B3R4+O2/2QeUupsFKcvHY891sD7wC\neU319Drz5OaPZHXCXWC9PxWNFAQt+NzbsFhB3jGXSBEvPb2sbwHP208lR7va\nTYEbbCSSjHn7l0fMRquNEsTe8c7USGim/g0o3XYU9KbzyFvHHeOAFB6fffG8\nHLK1LKeTiygTyooKS/faIH08FkBRUmXr9U4E1mU7b4Btis9gKZ8Gx3WGjAjL\nOwlp96ZZcA4WlnOHoMGV0yIL9IxGYP2MzdDkWICtuSj17SYeUP/Qi+gx+NR1\nl3JmVefYY/sHxTX1N5zAmg2xAZynXok12n6mOdTe8ETTjL5dnVrntv+ciqFS\nyH5D3ZKu9lk9aeqoSbE+hg11Edw1x4+dIVHr6ELG12AzwHoKziYxEtSvNp8b\nLD9J56q0w06BX4mq52zBY+50K2PzKYvRNDLsnsx9N4/AFst7c2/Rl14A9KBU\nA27DIgyjaWaQvlZCRJMIbzBlPWpBDFkaAej7326qDCv+1K4O5vimfY/2/vVR\njSKD11J/dZThSzRXDr2Ztgi3d5djfoItisoRKH2ot/kESTG4hcqEAc6JLq54\nEOpM\r\n=hDr/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.esm.mjs","engines":{"node":">=8.0.0"},"gitHead":"2f04d18757ca45826a0d4c2ea14cc5ec0a083f3f","scripts":{"test":"npm run test:js && npm run test:tape","build":"rollup --config .rollup.js --silent","test:js":"eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","pretest:tape":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-normalize.git","type":"git"},"_npmVersion":"6.9.0","description":"Use the parts of normalize.css or sanitize.css you need from your browserslist","directories":{},"_nodeVersion":"12.1.0","dependencies":{"postcss":"^7.0.16","browserslist":"^4.6.1","sanitize.css":"^10.0.0","@csstools/normalize.css":"^10.1.0","postcss-browser-comments":"^3.0.0"},"eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"parser":"babel-eslint","extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2018,"impliedStrict":true}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.16.0","rollup":"^1.13.1","pre-commit":"^1.2.2","@babel/core":"^7.4.5","babel-eslint":"^10.0.1","postcss-tape":"^5.0.0","postcss-import":"^12.0.1","@babel/preset-env":"^7.4.5","rollup-plugin-babel":"^4.3.2","@babel/plugin-syntax-import-meta":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize_8.0.0_1559655096482_0.278956309173259","host":"s3://npm-registry-packages"}},"12.0.0":{"name":"postcss-normalize","version":"12.0.0","keywords":["postcss","css","postcss-plugin","normalizes","browsers","fixes"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@12.0.0","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-normalize#readme","bugs":{"url":"https://github.com/csstools/postcss-normalize/issues"},"dist":{"shasum":"893f6cc21317e4e185bde7390d1a5a568a26afc3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-12.0.0.tgz","fileCount":5,"integrity":"sha512-hok6Xu5mw9TCs7YgquubxxB/T7icKslAU3zyronFa3Sxq56iGAVMBccWXUjMWN9v5wHZ7DUNuqsXRS9Z+S1T2g==","signatures":[{"sig":"MEUCIFcjfdQI64JCH/xesgH3Sgl0X+llvRVLpFBB3vUwpSlCAiEA/8qOPg3j4qfcwjjQSg9jkBd46xjJeghLIZp9W4UI8Ec=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29867},"main":"./index.cjs","babel":{"plugins":["@babel/plugin-syntax-import-meta"],"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"module":"./index.mjs","engines":{"node":">= 18"},"exports":{"import":"./index.mjs","default":"./index.mjs","require":"./index.cjs"},"gitHead":"0e4f3eb55eff7b327ed30db7a4e76720ff94eba4","scripts":{"tape":"postcss-tape","test":"npm run build && npm run tape && node .test.cjs && node .test.mjs","build":"rollup --config .rollup.mjs --silent","prepublishOnly":"npm test"},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-normalize.git","type":"git"},"_npmVersion":"10.8.3","description":"Use the parts of normalize.css or sanitize.css you need from your browserslist","directories":{},"_nodeVersion":"20.17.0","dependencies":{"sanitize.css":"*","@csstools/normalize.css":"*","postcss-browser-comments":"^4"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^4.21.2","postcss":"^8.4.31","browserslist":"^4.16.5","postcss-tape":"^6.0.1","postcss-import":"^14.0.2"},"peerDependencies":{"postcss":">= 8","browserslist":">= 4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize_12.0.0_1725722465355_0.34416505211153514","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"postcss-normalize","version":"8.0.1","keywords":["postcss","css","postcss-plugin","normalizes","browsers","fixes"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@8.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"seaneking","email":"sean@simpla.io"}],"homepage":"https://github.com/csstools/postcss-normalize#readme","bugs":{"url":"https://github.com/csstools/postcss-normalize/issues"},"dist":{"shasum":"90e80a7763d7fdf2da6f2f0f82be832ce4f66776","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-8.0.1.tgz","fileCount":8,"integrity":"sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==","signatures":[{"sig":"MEUCIH8/CbWwkYy+Jbpo+rieJQfwOaKkQj5h3inMyRCC//bUAiEAiKsFtKeOT3s72MjrY2+hD2qcCQ9xt8KYkAjTg/al7hk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46117,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/ooiCRA9TVsSAnZWagAA5JMQAJNEif5oTak5x4bwKW2r\nHHmsRMqd5uCjsgoSU20XCmJ9es3JSJHYxnKwkNi8qFM84IDL0nZCoLTLbo/o\nKFLprjmxEWh2XgfecxMQ/szhl9VBGS2lHRuuzPf++HOLJDQnH9u66zUMcwJp\nSOY6pkbJOyygi5oJn+Znfx7G4rG7N5FwTWvgqcVWR9Z5DP3gfLV8j7N+HvVt\nJMkXPsjFk1JyaSG8+Ckn5SjB4zRxrd2zXpiAq62QWu8Nlw8eIsaKX/q1mq5r\nWpjuIHXXTxwX9/ss8DYCWHpZzn/KHPzJlekOhj1BTJGMKrXmnCqM9QuKmLiG\niUOOpx1qFfAmayFQFfRRyCm2OTXtrxBsdiEUGNqhT+iQVSkEs91Ulr3FMNZI\nZQVtG5uV1WEwTjnroSzWQypyuGx3YDDdtAR4Z1rwdyDqH0WfosWMx0MWhRJM\n3C/2KKLEGVgMOoNttgYnMFNq39YKgyqXEL+/DwBMswZ7su1Fnu3XlZsNSaPg\nLKn2PKVee1UdQxu1R33euiPKv2t+xY8hPSehqneCk6iwX51k6qlakzPyMq+k\nWVfEjaefWJAJmsXNhmd9rrDoilPkORav6vEHBzR4HJmFPrLCosBYKpT+cDwS\nPmjLn+TdGjfjSBa9VnOiy/dSnmuVECuSUJQh3VUdafJahkk/+X0HGnZRjmdo\nxOXj\r\n=Eszm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.esm.mjs","engines":{"node":">=8.0.0"},"gitHead":"7c11ae71a5c827d697fffb9f442e1f4cb9d55a54","scripts":{"test":"npm run test:js && npm run test:tape","build":"rollup --config .rollup.js --silent","test:js":"eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","pretest:tape":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-normalize.git","type":"git"},"_npmVersion":"6.9.0","description":"Use the parts of normalize.css or sanitize.css you need from your browserslist","directories":{},"_nodeVersion":"12.1.0","dependencies":{"postcss":"^7.0.17","browserslist":"^4.6.2","sanitize.css":"^10.0.0","@csstools/normalize.css":"^10.1.0","postcss-browser-comments":"^3.0.0"},"eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"parser":"babel-eslint","extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2018,"impliedStrict":true}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.16.0","rollup":"^1.14.6","pre-commit":"^1.2.2","@babel/core":"^7.4.5","babel-eslint":"^10.0.1","postcss-tape":"^5.0.0","postcss-import":"^12.0.1","@babel/preset-env":"^7.4.5","rollup-plugin-babel":"^4.3.2","@babel/plugin-syntax-import-meta":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize_8.0.1_1560185378069_0.6092840056929769","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"postcss-normalize","version":"5.0.0","keywords":["postcss","css","postcss-plugin","normalize"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@5.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"seaneking","email":"sean@simpla.io"}],"homepage":"https://github.com/jonathantneal/postcss-normalize#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-normalize/issues"},"dist":{"shasum":"db6012dea9d8415522b154c358dead04349471d3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-5.0.0.tgz","fileCount":8,"integrity":"sha512-GiDb/cWJHmWrXqEuDKIKNcsd3KCzUDKQD/oyN8F1aCS44lSREWZM0R1yjP2THSHYZfCLgjIddEwi0w4SFZ00rw==","signatures":[{"sig":"MEQCIE5bqBWYAZg3ERtBJ42b8WQgnLMZQ83baIx6WBGKs8YoAiAkQhM1MPS1rMuBAyYW9ViJdKrSZWiWJsKqL2dcQzU9Gw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24870,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGLnsCRA9TVsSAnZWagAAQ1EP/17nJzltAkjxXVsOC7+r\nkpP7HY4I7PlxYQ+3a+bXaY3PEBCWVJw8ami65r3zav8yGSJU9Fpebg68sFL8\n8dTvktO3CaVV/SmbqrrxzLOa1wcbZ1J8eVWkpVmwTedA892KurHXdBdmvoqy\nY6tFqLD4SI2kALhgZzdvcuCr7FkQMTSikOaBygH7ZRNGCeL954aEYRRtfZzT\nXaJQeiTN6yKeVOIScwgVZwLhYt46jdtxFF1D98rbocZwgnvOn+u+8qwpTmHM\ne7IkZ+S7jFljYBiRc4DeMD/8DIsKm/sygt/ZDtYNid1IiifWDsJY22dvNAEi\nWX3zFp1xQGHK1hUEUDnQCGj+vjJJnDObRouCsSGtuFrEihIFzaNTcau4qiuV\n0GxarFNn5BF9A1gfiCfEGJfAHA5RnlME0C1RSK/6utOYThoPEwUaofR+nBHV\nkfLJKbRqPT4STTaC0UXrxhypm3T9kdAWP9QYI396PYjloeZLxBSQteWvnbZV\nTaCgn2nrgqIXAPqMCcS9aClqs84F9mWCIFdB6UevK2AFHBAo4c6o7xpMkjCO\nl1hEZs/4Ek2os14gEycESbQtn8Y+7ANPi7aMJY83ZgCUjdbOIRlkW965aLV+\nC+BfsugY3jvbKfvEO/LjpaYovWm0+g7Pr1x7LwyabgqEQQw9JaM/Df2/VHk2\nvFfp\r\n=FRh0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","files":["index.cjs.js","index.es.js","lib/normalize.js","lib/normalize.json"],"module":"index.es.js","engines":{"node":">=6.0.0"},"gitHead":"a68c2d5fd94ed34b895ba866821ceb0718f93a96","scripts":{"test":"npm run test:init && npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:init":"node lib/normalize-init","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-normalize.git","type":"git"},"_npmVersion":"6.1.0","description":"Use the parts of normalize.css you need from your browserslist","directories":{},"_nodeVersion":"10.1.0","dependencies":{"postcss":"^6.0.22","browserslist":"^3.2.8"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"fse":"^4.0.1","eslint":"^4.19.1","rollup":"^0.60.0","babel-core":"^6.26.3","pre-commit":"^1.2.2","babel-eslint":"^8.2.3","postcss-tape":"^2.2.0","babel-preset-env":"^1.7.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^3.0.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize_5.0.0_1528347115039_0.5101697416204376","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"postcss-normalize","version":"1.0.0","keywords":["postcss","css","postcss-plugin","normalize.css","normalize","browsers","bugs","fixes","usability","browserslist","browserlist"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-normalize@1.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"seaneking","email":"sean@simpla.io"}],"homepage":"https://github.com/jonathantneal/postcss-normalize#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-normalize/issues"},"dist":{"shasum":"e79f54813cf60fa35a8c5a34647d43464cca3638","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-normalize/-/postcss-normalize-1.0.0.tgz","integrity":"sha512-JUO2Htm5nMxcYQWwaDdDSZTZIZDjV9FAULVhoC9m23muQ8dFHNl9YuT1HewV8UhHhdPHyAJu0qxQbEJHsBf/jw==","signatures":[{"sig":"MEUCIQD76akIcxbXKO9fN4HQDQFAtlT38v5fauIuReeWrM7kbAIgf3jai66FCIh4iJ0higj6jvTdSnPe8hHGiYhgZtYuyqE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","lib/json-to-ast.js","lib/normalize.json"],"_shasum":"e79f54813cf60fa35a8c5a34647d43464cca3638","engines":{"node":">=6.5.0"},"gitHead":"7b1760be1d611da2f96558a4ca3ff036f14e6d33","scripts":{"test":"echo 'Running tests...'; npm run test:setup && npm run test:js && npm run test:tape","clean":"git clean -X -d -f","test:js":"eslint *.js --cache --ignore-pattern .gitignore","test:tape":"postcss-tape","prepublish":"npm test","test:setup":"node lib/normalize-css-to-json"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-normalize.git","type":"git"},"_npmVersion":"4.2.0","description":"Use the parts of normalize.css you need from your browserlist","directories":{},"_nodeVersion":"7.9.0","dependencies":{"postcss":"^5.2.17","browserslist":"^2.1.1"},"eslintConfig":{"extends":"dev"},"devDependencies":{"fse":"^2.0.0","eslint":"^3.19.0","pre-commit":"^1.2.2","postcss-tape":"1.3.1","eslint-config-dev":"2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-normalize-1.0.0.tgz_1493912143425_0.16350163449533284","host":"packages-12-west.internal.npmjs.com"}}},"name":"postcss-normalize","time":{"11.0.0":"2024-09-07T14:52:15.791Z","9.0.0":"2020-04-12T21:27:41.159Z","4.0.0":"2017-06-21T13:00:58.521Z","0.1.1":"2015-08-17T03:35:04.406Z","0.2.0":"2016-03-28T02:52:07.118Z","0.1.2":"2015-11-19T02:35:00.481Z","0.3.0":"2016-05-26T04:22:43.027Z","0.1.0":"2015-07-04T15:23:46.471Z","3.0.0":"2017-05-29T01:11:22.865Z","8.0.0":"2019-06-04T13:31:36.614Z","12.0.0":"2024-09-07T15:21:05.527Z","8.0.1":"2019-06-10T16:49:38.230Z","modified":"2025-05-13T13:25:47.230Z","2.0.0":"2017-05-18T02:10:05.567Z","7.0.1":"2018-09-06T12:28:28.530Z","2.0.1":"2017-05-22T01:17:33.300Z","2.1.0":"2017-05-26T22:57:07.366Z","created":"2015-07-04T15:23:46.471Z","13.0.1":"2024-09-25T21:23:36.669Z","7.0.0":"2018-09-04T13:24:21.731Z","13.0.0":"2024-09-07T15:52:27.033Z","10.0.1":"2021-09-15T12:02:11.307Z","6.0.0":"2018-06-16T12:16:26.712Z","10.0.0":"2021-04-29T13:49:15.498Z","5.0.0":"2018-06-07T04:51:55.101Z","1.0.0":"2017-05-04T15:35:45.233Z"},"readmeFilename":"README.md","homepage":"https://github.com/csstools/postcss-normalize#readme"}