package.json 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "name": "postcss-preset-env",
  3. "version": "7.2.3",
  4. "description": "Convert modern CSS into something browsers understand",
  5. "author": "Jonathan Neal <jonathantneal@hotmail.com>",
  6. "license": "CC0-1.0",
  7. "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugin-packs/postcss-preset-env#readme",
  8. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  9. "main": "dist/index.cjs",
  10. "module": "dist/index.mjs",
  11. "files": [
  12. "CHANGELOG.md",
  13. "LICENSE.md",
  14. "README.md",
  15. "dist"
  16. ],
  17. "scripts": {
  18. "build": "rollup -c ../../rollup/default.js",
  19. "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
  20. "lint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
  21. "prepublishOnly": "npm run clean && npm run build && npm run test",
  22. "stryker": "stryker run --logLevel error",
  23. "test": "postcss-tape --ci && npm run test:exports",
  24. "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs"
  25. },
  26. "engines": {
  27. "node": "^12 || ^14 || >=16"
  28. },
  29. "dependencies": {
  30. "autoprefixer": "^10.4.2",
  31. "browserslist": "^4.19.1",
  32. "caniuse-lite": "^1.0.30001299",
  33. "css-blank-pseudo": "^3.0.2",
  34. "css-has-pseudo": "^3.0.3",
  35. "css-prefers-color-scheme": "^6.0.2",
  36. "cssdb": "^5.0.0",
  37. "postcss-attribute-case-insensitive": "^5.0.0",
  38. "postcss-color-functional-notation": "^4.2.1",
  39. "postcss-color-hex-alpha": "^8.0.2",
  40. "postcss-color-rebeccapurple": "^7.0.2",
  41. "postcss-custom-media": "^8.0.0",
  42. "postcss-custom-properties": "^12.1.2",
  43. "postcss-custom-selectors": "^6.0.0",
  44. "postcss-dir-pseudo-class": "^6.0.3",
  45. "postcss-double-position-gradients": "^3.0.4",
  46. "postcss-env-function": "^4.0.4",
  47. "postcss-focus-visible": "^6.0.3",
  48. "postcss-focus-within": "^5.0.3",
  49. "postcss-font-variant": "^5.0.0",
  50. "postcss-gap-properties": "^3.0.2",
  51. "postcss-image-set-function": "^4.0.4",
  52. "postcss-initial": "^4.0.1",
  53. "postcss-lab-function": "^4.0.3",
  54. "postcss-logical": "^5.0.3",
  55. "postcss-media-minmax": "^5.0.0",
  56. "postcss-nesting": "^10.1.2",
  57. "postcss-overflow-shorthand": "^3.0.2",
  58. "postcss-page-break": "^3.0.4",
  59. "postcss-place": "^7.0.3",
  60. "postcss-pseudo-class-any-link": "^7.0.2",
  61. "postcss-replace-overflow-wrap": "^4.0.0",
  62. "postcss-selector-not": "^5.0.0"
  63. },
  64. "devDependencies": {
  65. "postcss": "^8.4.5",
  66. "postcss-simple-vars": "^6.0.3",
  67. "postcss-tape": "^6.0.1"
  68. },
  69. "peerDependencies": {
  70. "postcss": "^8.4"
  71. },
  72. "keywords": [
  73. "postcss",
  74. "css",
  75. "postcss-plugin",
  76. "specifications",
  77. "specs",
  78. "features",
  79. "lists",
  80. "stages",
  81. "w3c",
  82. "csswg",
  83. "future",
  84. "next"
  85. ],
  86. "repository": {
  87. "type": "git",
  88. "url": "https://github.com/csstools/postcss-plugins.git",
  89. "directory": "plugin-packs/postcss-preset-env"
  90. },
  91. "volta": {
  92. "extends": "../../package.json"
  93. }
  94. }