package.json 1009 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "tr46",
  3. "version": "5.1.1",
  4. "engines": {
  5. "node": ">=18"
  6. },
  7. "description": "An implementation of the Unicode UTS #46: Unicode IDNA Compatibility Processing",
  8. "main": "index.js",
  9. "files": [
  10. "index.js",
  11. "lib/"
  12. ],
  13. "scripts": {
  14. "test": "node --test",
  15. "lint": "eslint",
  16. "pretest": "node scripts/getLatestTests.js",
  17. "prepublish": "node scripts/generateMappingTable.js && node scripts/generateRegexes.js"
  18. },
  19. "repository": "https://github.com/jsdom/tr46",
  20. "keywords": [
  21. "unicode",
  22. "tr46",
  23. "uts46",
  24. "punycode",
  25. "url",
  26. "whatwg"
  27. ],
  28. "author": "Sebastian Mayr <npm@smayr.name>",
  29. "contributors": [
  30. "Timothy Gu <timothygu99@gmail.com>"
  31. ],
  32. "license": "MIT",
  33. "dependencies": {
  34. "punycode": "^2.3.1"
  35. },
  36. "devDependencies": {
  37. "@domenic/eslint-config": "^4.0.1",
  38. "@unicode/unicode-16.0.0": "^1.6.5",
  39. "eslint": "^9.22.0",
  40. "globals": "^16.0.0",
  41. "regenerate": "^1.4.2"
  42. },
  43. "unicodeVersion": "16.0.0"
  44. }