package.json 699 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "xml-name-validator",
  3. "description": "Validates whether a string matches the production for an XML name or qualified name",
  4. "keywords": [
  5. "xml",
  6. "name",
  7. "qname"
  8. ],
  9. "version": "5.0.0",
  10. "author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
  11. "license": "Apache-2.0",
  12. "repository": "jsdom/xml-name-validator",
  13. "main": "lib/xml-name-validator.js",
  14. "files": [
  15. "lib/"
  16. ],
  17. "scripts": {
  18. "test": "node --test",
  19. "benchmark": "node scripts/benchmark.js",
  20. "lint": "eslint ."
  21. },
  22. "devDependencies": {
  23. "@domenic/eslint-config": "^3.0.0",
  24. "benchmark": "^2.1.4",
  25. "eslint": "^8.53.0"
  26. },
  27. "engines": {
  28. "node": ">=18"
  29. }
  30. }