package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@csstools/selector-specificity",
  3. "description": "Determine selector specificity with postcss-selector-parser",
  4. "version": "2.2.0",
  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. "license": "CC0-1.0",
  17. "funding": {
  18. "type": "opencollective",
  19. "url": "https://opencollective.com/csstools"
  20. },
  21. "engines": {
  22. "node": "^14 || ^16 || >=18"
  23. },
  24. "main": "dist/index.cjs",
  25. "module": "dist/index.mjs",
  26. "types": "dist/index.d.ts",
  27. "exports": {
  28. ".": {
  29. "types": "./dist/index.d.ts",
  30. "import": "./dist/index.mjs",
  31. "require": "./dist/index.cjs",
  32. "default": "./dist/index.mjs"
  33. }
  34. },
  35. "files": [
  36. "CHANGELOG.md",
  37. "LICENSE.md",
  38. "README.md",
  39. "dist"
  40. ],
  41. "peerDependencies": {
  42. "postcss-selector-parser": "^6.0.10"
  43. },
  44. "devDependencies": {
  45. "postcss-selector-parser": "^6.0.10"
  46. },
  47. "scripts": {
  48. "build": "rollup -c ../../rollup/default.mjs",
  49. "lint": "node ../../.github/bin/format-package-json.mjs",
  50. "prepublishOnly": "npm run build && npm run test",
  51. "stryker": "stryker run --logLevel error",
  52. "test": "node ./test/index.mjs && node ./test/_import.mjs && node ./test/_require.cjs"
  53. },
  54. "homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity#readme",
  55. "repository": {
  56. "type": "git",
  57. "url": "https://github.com/csstools/postcss-plugins.git",
  58. "directory": "packages/selector-specificity"
  59. },
  60. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  61. "keywords": [
  62. "css",
  63. "postcss-selector-parser",
  64. "specificity"
  65. ],
  66. "volta": {
  67. "extends": "../../package.json"
  68. }
  69. }