package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "css-blank-pseudo",
  3. "version": "3.0.2",
  4. "description": "Style form elements when they are empty",
  5. "author": "Jonathan Neal <jonathantneal@hotmail.com>",
  6. "license": "CC0-1.0",
  7. "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/css-blank-pseudo#readme",
  8. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  9. "main": "dist/index.cjs",
  10. "module": "dist/index.mjs",
  11. "exports": {
  12. ".": {
  13. "import": "./dist/index.mjs",
  14. "require": "./dist/index.cjs",
  15. "default": "./dist/index.mjs"
  16. },
  17. "./browser": {
  18. "import": "./dist/browser.mjs",
  19. "require": "./dist/browser.cjs",
  20. "default": "./dist/browser.mjs"
  21. },
  22. "./browser-global": {
  23. "default": "./dist/browser-global.js"
  24. }
  25. },
  26. "files": [
  27. "CHANGELOG.md",
  28. "LICENSE.md",
  29. "README.md",
  30. "dist",
  31. "browser.js"
  32. ],
  33. "bin": {
  34. "css-blank-pseudo": "dist/cli.cjs"
  35. },
  36. "scripts": {
  37. "build": "rollup -c ../../rollup/default.js && npm run copy-browser-scripts-to-old-location",
  38. "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
  39. "copy-browser-scripts-to-old-location": "node -e \"fs.copyFileSync('./dist/browser-global.js', './browser.js'); fs.copyFileSync('./dist/browser-global.js', './browser-legacy.js')\"",
  40. "lint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
  41. "prepublishOnly": "npm run clean && npm run build && npm run test",
  42. "stryker": "stryker run --logLevel error",
  43. "test": "postcss-tape --ci && npm run test:exports",
  44. "cli": "css-blank-pseudo",
  45. "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs"
  46. },
  47. "engines": {
  48. "node": "^12 || ^14 || >=16"
  49. },
  50. "dependencies": {
  51. "postcss-selector-parser": "^6.0.8"
  52. },
  53. "devDependencies": {
  54. "postcss": "^8.3.6",
  55. "postcss-tape": "^6.0.1"
  56. },
  57. "peerDependencies": {
  58. "postcss": "^8.3"
  59. },
  60. "keywords": [
  61. "postcss",
  62. "css",
  63. "postcss-plugin",
  64. "javascript",
  65. "js",
  66. "polyfill",
  67. "blank",
  68. "empty",
  69. "pseudo",
  70. "selectors",
  71. "accessibility",
  72. "a11y",
  73. "input",
  74. "select",
  75. "textarea"
  76. ],
  77. "repository": {
  78. "type": "git",
  79. "url": "https://github.com/csstools/postcss-plugins.git",
  80. "directory": "plugins/css-blank-pseudo"
  81. },
  82. "volta": {
  83. "extends": "../../package.json"
  84. }
  85. }