package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "postcss-focus-visible",
  3. "version": "6.0.3",
  4. "description": "Use the :focus-visible pseudo-selector in CSS",
  5. "author": "Jonathan Neal <jonathantneal@hotmail.com>",
  6. "license": "CC0-1.0",
  7. "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-visible#readme",
  8. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  9. "main": "dist/index.cjs",
  10. "module": "dist/index.mjs",
  11. "types": "dist/index.d.ts",
  12. "files": [
  13. "CHANGELOG.md",
  14. "LICENSE.md",
  15. "README.md",
  16. "dist"
  17. ],
  18. "scripts": {
  19. "build": "rollup -c ../../rollup/default.js",
  20. "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
  21. "lint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
  22. "prepublishOnly": "npm run clean && npm run build && npm run test",
  23. "stryker": "stryker run --logLevel error",
  24. "test": "postcss-tape --ci && npm run test:exports",
  25. "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs"
  26. },
  27. "engines": {
  28. "node": "^12 || ^14 || >=16"
  29. },
  30. "dependencies": {
  31. "postcss-selector-parser": "^6.0.8"
  32. },
  33. "devDependencies": {
  34. "postcss": "^8.3.6",
  35. "postcss-tape": "^6.0.1"
  36. },
  37. "peerDependencies": {
  38. "postcss": "^8.3"
  39. },
  40. "keywords": [
  41. "postcss",
  42. "css",
  43. "postcss-plugin",
  44. "focus",
  45. "ring",
  46. "css",
  47. "pseudos",
  48. "selectors",
  49. "accessibility",
  50. "a11y",
  51. "keyboards",
  52. "pointer",
  53. "cursor",
  54. "mice",
  55. "mouse",
  56. "pen",
  57. "touch",
  58. "trackpad",
  59. "button",
  60. "input",
  61. "select",
  62. "textarea",
  63. "contenteditable",
  64. "javascript",
  65. "js"
  66. ],
  67. "repository": {
  68. "type": "git",
  69. "url": "https://github.com/csstools/postcss-plugins.git",
  70. "directory": "plugins/postcss-focus-visible"
  71. },
  72. "volta": {
  73. "extends": "../../package.json"
  74. }
  75. }