12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- {
- "name": "postcss-preset-env",
- "version": "7.2.3",
- "description": "Convert modern CSS into something browsers understand",
- "author": "Jonathan Neal <jonathantneal@hotmail.com>",
- "license": "CC0-1.0",
- "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugin-packs/postcss-preset-env#readme",
- "bugs": "https://github.com/csstools/postcss-plugins/issues",
- "main": "dist/index.cjs",
- "module": "dist/index.mjs",
- "files": [
- "CHANGELOG.md",
- "LICENSE.md",
- "README.md",
- "dist"
- ],
- "scripts": {
- "build": "rollup -c ../../rollup/default.js",
- "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
- "lint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
- "prepublishOnly": "npm run clean && npm run build && npm run test",
- "stryker": "stryker run --logLevel error",
- "test": "postcss-tape --ci && npm run test:exports",
- "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs"
- },
- "engines": {
- "node": "^12 || ^14 || >=16"
- },
- "dependencies": {
- "autoprefixer": "^10.4.2",
- "browserslist": "^4.19.1",
- "caniuse-lite": "^1.0.30001299",
- "css-blank-pseudo": "^3.0.2",
- "css-has-pseudo": "^3.0.3",
- "css-prefers-color-scheme": "^6.0.2",
- "cssdb": "^5.0.0",
- "postcss-attribute-case-insensitive": "^5.0.0",
- "postcss-color-functional-notation": "^4.2.1",
- "postcss-color-hex-alpha": "^8.0.2",
- "postcss-color-rebeccapurple": "^7.0.2",
- "postcss-custom-media": "^8.0.0",
- "postcss-custom-properties": "^12.1.2",
- "postcss-custom-selectors": "^6.0.0",
- "postcss-dir-pseudo-class": "^6.0.3",
- "postcss-double-position-gradients": "^3.0.4",
- "postcss-env-function": "^4.0.4",
- "postcss-focus-visible": "^6.0.3",
- "postcss-focus-within": "^5.0.3",
- "postcss-font-variant": "^5.0.0",
- "postcss-gap-properties": "^3.0.2",
- "postcss-image-set-function": "^4.0.4",
- "postcss-initial": "^4.0.1",
- "postcss-lab-function": "^4.0.3",
- "postcss-logical": "^5.0.3",
- "postcss-media-minmax": "^5.0.0",
- "postcss-nesting": "^10.1.2",
- "postcss-overflow-shorthand": "^3.0.2",
- "postcss-page-break": "^3.0.4",
- "postcss-place": "^7.0.3",
- "postcss-pseudo-class-any-link": "^7.0.2",
- "postcss-replace-overflow-wrap": "^4.0.0",
- "postcss-selector-not": "^5.0.0"
- },
- "devDependencies": {
- "postcss": "^8.4.5",
- "postcss-simple-vars": "^6.0.3",
- "postcss-tape": "^6.0.1"
- },
- "peerDependencies": {
- "postcss": "^8.4"
- },
- "keywords": [
- "postcss",
- "css",
- "postcss-plugin",
- "specifications",
- "specs",
- "features",
- "lists",
- "stages",
- "w3c",
- "csswg",
- "future",
- "next"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/csstools/postcss-plugins.git",
- "directory": "plugin-packs/postcss-preset-env"
- },
- "volta": {
- "extends": "../../package.json"
- }
- }
|