package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "postcss-focus-within",
  3. "version": "5.0.3",
  4. "description": "Use the :focus-within 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-within#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. "within",
  46. "polyfill",
  47. "pseudos",
  48. "selectors",
  49. "accessibility",
  50. "a11y",
  51. "descendants",
  52. "ancestors"
  53. ],
  54. "repository": {
  55. "type": "git",
  56. "url": "https://github.com/csstools/postcss-plugins.git",
  57. "directory": "plugins/postcss-focus-within"
  58. },
  59. "volta": {
  60. "extends": "../../package.json"
  61. }
  62. }