package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "tr46",
  3. "version": "6.0.0",
  4. "engines": {
  5. "node": ">=20"
  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": {
  20. "type": "git",
  21. "url": "git+https://github.com/jsdom/tr46.git"
  22. },
  23. "keywords": [
  24. "unicode",
  25. "tr46",
  26. "uts46",
  27. "punycode",
  28. "url",
  29. "whatwg"
  30. ],
  31. "author": "Sebastian Mayr <npm@smayr.name>",
  32. "contributors": [
  33. "Timothy Gu <timothygu99@gmail.com>"
  34. ],
  35. "license": "MIT",
  36. "dependencies": {
  37. "punycode": "^2.3.1"
  38. },
  39. "devDependencies": {
  40. "@domenic/eslint-config": "^4.0.1",
  41. "@unicode/unicode-17.0.0": "^1.6.12",
  42. "eslint": "^9.35.0",
  43. "globals": "^16.4.0",
  44. "regenerate": "^1.4.2"
  45. },
  46. "unicodeVersion": "17.0.0"
  47. }