package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "postcss-selector-not",
  3. "description": "PostCSS plugin to transform :not() W3C CSS level 4 pseudo class to :not() CSS level 3 selectors",
  4. "version": "6.0.1",
  5. "contributors": [
  6. {
  7. "name": "Antonio Laguna",
  8. "email": "antonio@laguna.es",
  9. "url": "https://antonio.laguna.es"
  10. },
  11. {
  12. "name": "Romain Menke",
  13. "email": "romainmenke@gmail.com"
  14. },
  15. {
  16. "name": "Maxime Thirouin"
  17. }
  18. ],
  19. "license": "MIT",
  20. "funding": {
  21. "type": "opencollective",
  22. "url": "https://opencollective.com/csstools"
  23. },
  24. "engines": {
  25. "node": "^12 || ^14 || >=16"
  26. },
  27. "main": "dist/index.cjs",
  28. "module": "dist/index.mjs",
  29. "types": "dist/index.d.ts",
  30. "exports": {
  31. ".": {
  32. "import": "./dist/index.mjs",
  33. "require": "./dist/index.cjs",
  34. "default": "./dist/index.mjs"
  35. }
  36. },
  37. "files": [
  38. "CHANGELOG.md",
  39. "LICENSE",
  40. "README.md",
  41. "dist"
  42. ],
  43. "dependencies": {
  44. "postcss-selector-parser": "^6.0.10"
  45. },
  46. "peerDependencies": {
  47. "postcss": "^8.2"
  48. },
  49. "scripts": {
  50. "build": "rollup -c ../../rollup/default.js",
  51. "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
  52. "docs": "node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs",
  53. "lint": "npm run lint:eslint && npm run lint:package-json",
  54. "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
  55. "lint:package-json": "node ../../.github/bin/format-package-json.mjs",
  56. "prepublishOnly": "npm run clean && npm run build && npm run test",
  57. "test": "node .tape.mjs && npm run test:exports",
  58. "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs",
  59. "test:rewrite-expects": "REWRITE_EXPECTS=true node .tape.mjs"
  60. },
  61. "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-selector-not#readme",
  62. "repository": {
  63. "type": "git",
  64. "url": "https://github.com/csstools/postcss-plugins.git",
  65. "directory": "plugins/postcss-selector-not"
  66. },
  67. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  68. "keywords": [
  69. "Not",
  70. "postcss",
  71. "postcss-plugin",
  72. "selector",
  73. "selectors"
  74. ],
  75. "csstools": {
  76. "cssdbId": "not-pseudo-class",
  77. "exportName": "postcssSelectorNot",
  78. "humanReadableName": "PostCSS Selector Not",
  79. "specUrl": "https://www.w3.org/TR/selectors-4/#negation-pseudo"
  80. },
  81. "volta": {
  82. "extends": "../../package.json"
  83. }
  84. }