package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "postcss-dir-pseudo-class",
  3. "description": "Use the :dir pseudo-class in CSS",
  4. "version": "6.0.5",
  5. "author": "Jonathan Neal <jonathantneal@hotmail.com>",
  6. "license": "CC0-1.0",
  7. "funding": {
  8. "type": "opencollective",
  9. "url": "https://opencollective.com/csstools"
  10. },
  11. "engines": {
  12. "node": "^12 || ^14 || >=16"
  13. },
  14. "main": "dist/index.cjs",
  15. "module": "dist/index.mjs",
  16. "exports": {
  17. ".": {
  18. "import": "./dist/index.mjs",
  19. "require": "./dist/index.cjs",
  20. "default": "./dist/index.mjs"
  21. }
  22. },
  23. "files": [
  24. "CHANGELOG.md",
  25. "LICENSE.md",
  26. "README.md",
  27. "dist"
  28. ],
  29. "dependencies": {
  30. "postcss-selector-parser": "^6.0.10"
  31. },
  32. "peerDependencies": {
  33. "postcss": "^8.2"
  34. },
  35. "scripts": {
  36. "build": "rollup -c ../../rollup/default.js",
  37. "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
  38. "docs": "node ../../.github/bin/generate-docs/install.mjs",
  39. "lint": "npm run lint:eslint && npm run lint:package-json",
  40. "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
  41. "lint:package-json": "node ../../.github/bin/format-package-json.mjs",
  42. "prepublishOnly": "npm run clean && npm run build && npm run test",
  43. "test": "node .tape.mjs && npm run test:exports",
  44. "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs",
  45. "test:rewrite-expects": "REWRITE_EXPECTS=true node .tape.mjs"
  46. },
  47. "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-dir-pseudo-class#readme",
  48. "repository": {
  49. "type": "git",
  50. "url": "https://github.com/csstools/postcss-plugins.git",
  51. "directory": "plugins/postcss-dir-pseudo-class"
  52. },
  53. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  54. "keywords": [
  55. "attribute",
  56. "css",
  57. "directionality",
  58. "directions",
  59. "left",
  60. "left-to-right",
  61. "ltr",
  62. "polyfill",
  63. "postcss",
  64. "postcss-plugin",
  65. "right",
  66. "right-to-left",
  67. "rtl",
  68. "selector"
  69. ],
  70. "csstools": {
  71. "exportName": "postcssDirPseudoClass",
  72. "humanReadableName": "PostCSS Dir Pseudo Class"
  73. },
  74. "volta": {
  75. "extends": "../../package.json"
  76. }
  77. }