web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.5 KiB

  1. {
  2. "name": "postcss-focus-within",
  3. "version": "3.0.0",
  4. "description": "Use the :focus-within pseudo-selector in CSS",
  5. "author": "Jonathan Neal <jonathantneal@hotmail.com>",
  6. "license": "CC0-1.0",
  7. "repository": "jonathantneal/postcss-focus-within",
  8. "homepage": "https://github.com/jonathantneal/postcss-focus-within#readme",
  9. "bugs": "https://github.com/jonathantneal/postcss-focus-within/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.0",
  35. "eslint": "^5.6.0",
  36. "eslint-config-dev": "2.0.0",
  37. "postcss-tape": "2.2.0",
  38. "pre-commit": "^1.2.2",
  39. "rollup": "^0.66.0",
  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. "within",
  52. "polyfill",
  53. "pseudos",
  54. "selectors",
  55. "accessibility",
  56. "a11y",
  57. "descendants",
  58. "ancestors"
  59. ]
  60. }