package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "tr46",
  3. "version": "3.0.0",
  4. "engines": {
  5. "node": ">=12"
  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/mappingTable.json",
  12. "lib/regexes.js",
  13. "lib/statusMapping.js"
  14. ],
  15. "scripts": {
  16. "test": "mocha",
  17. "lint": "eslint .",
  18. "pretest": "node scripts/getLatestTests.js",
  19. "prepublish": "node scripts/generateMappingTable.js && node scripts/generateRegexes.js"
  20. },
  21. "repository": "https://github.com/jsdom/tr46",
  22. "keywords": [
  23. "unicode",
  24. "tr46",
  25. "uts46",
  26. "punycode",
  27. "url",
  28. "whatwg"
  29. ],
  30. "author": "Sebastian Mayr <npm@smayr.name>",
  31. "contributors": [
  32. "Timothy Gu <timothygu99@gmail.com>"
  33. ],
  34. "license": "MIT",
  35. "dependencies": {
  36. "punycode": "^2.1.1"
  37. },
  38. "devDependencies": {
  39. "@domenic/eslint-config": "^1.4.0",
  40. "@unicode/unicode-14.0.0": "^1.2.1",
  41. "eslint": "^7.32.0",
  42. "minipass-fetch": "^1.4.1",
  43. "mocha": "^9.1.1",
  44. "regenerate": "^1.4.2"
  45. },
  46. "unicodeVersion": "14.0.0"
  47. }