package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "postcss-focus-visible",
  3. "version": "4.0.0",
  4. "description": "Use the :focus-visible pseudo-selector in CSS",
  5. "author": "Jonathan Neal <jonathantneal@hotmail.com>",
  6. "license": "CC0-1.0",
  7. "repository": "jonathantneal/postcss-focus-visible",
  8. "homepage": "https://github.com/jonathantneal/postcss-focus-visible#readme",
  9. "bugs": "https://github.com/jonathantneal/postcss-focus-visible/issues",
  10. "main": "index.cjs.js",
  11. "module": "index.es.mjs",
  12. "files": [
  13. "index.cjs.js",
  14. "index.cjs.js.map",
  15. "index.es.mjs",
  16. "index.es.mjs.map"
  17. ],
  18. "scripts": {
  19. "prepublishOnly": "npm test",
  20. "pretest": "rollup -c .rollup.js --silent",
  21. "test": "echo 'Running tests...'; npm run test:js && npm run test:tape",
  22. "test:js": "eslint *.js --cache --ignore-path .gitignore --quiet",
  23. "test:tape": "postcss-tape"
  24. },
  25. "engines": {
  26. "node": ">=6.0.0"
  27. },
  28. "dependencies": {
  29. "postcss": "^7.0.2"
  30. },
  31. "devDependencies": {
  32. "@babel/core": "^7.0.0",
  33. "@babel/preset-env": "^7.0.0",
  34. "babel-eslint": "^9.0",
  35. "eslint": "^5.6",
  36. "eslint-config-dev": "2.0",
  37. "postcss-tape": "2.2",
  38. "pre-commit": "^1.2",
  39. "rollup": "^0.66",
  40. "rollup-plugin-babel": "^4.0.1"
  41. },
  42. "eslintConfig": {
  43. "extends": "dev",
  44. "parser": "babel-eslint"
  45. },
  46. "keywords": [
  47. "postcss",
  48. "css",
  49. "postcss-plugin",
  50. "focus",
  51. "ring",
  52. "css",
  53. "pseudos",
  54. "selectors",
  55. "accessibility",
  56. "a11y",
  57. "keyboards",
  58. "pointer",
  59. "cursor",
  60. "mice",
  61. "mouse",
  62. "pen",
  63. "touch",
  64. "trackpad",
  65. "button",
  66. "input",
  67. "select",
  68. "textarea",
  69. "contenteditable",
  70. "javascript",
  71. "js"
  72. ]
  73. }