package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "css-has-pseudo",
  3. "version": "3.0.3",
  4. "description": "Style elements relative to other elements 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/css-has-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-has-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')\"",
  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. "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs"
  45. },
  46. "engines": {
  47. "node": "^12 || ^14 || >=16"
  48. },
  49. "dependencies": {
  50. "postcss-selector-parser": "^6.0.8"
  51. },
  52. "devDependencies": {
  53. "postcss": "^8.3.6",
  54. "postcss-tape": "^6.0.1"
  55. },
  56. "peerDependencies": {
  57. "postcss": "^8.3"
  58. },
  59. "keywords": [
  60. "postcss",
  61. "css",
  62. "postcss-plugin",
  63. "javascript",
  64. "js",
  65. "polyfill",
  66. "has",
  67. "contains",
  68. "descendant",
  69. "pseudo",
  70. "selector"
  71. ],
  72. "repository": {
  73. "type": "git",
  74. "url": "https://github.com/csstools/postcss-plugins.git",
  75. "directory": "plugins/css-has-pseudo"
  76. },
  77. "volta": {
  78. "extends": "../../package.json"
  79. }
  80. }