package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "tldts",
  3. "version": "7.0.23",
  4. "description": "Library to work against complex domain names, subdomains and URIs.",
  5. "author": {
  6. "name": "Rémi Berson"
  7. },
  8. "contributors": [
  9. "Alexei <alexeiatyahoodotcom@gmail.com>",
  10. "Alexey <kureev-mail@ya.ru>",
  11. "Andrew <chefandrew@seomoz.org>",
  12. "Johannes Ewald <johannes.ewald@peerigon.com>",
  13. "Jérôme Desboeufs <jerome.desboeufs@gmail.com>",
  14. "Kelly Campbell <kelly.a.campbell@gmail.com>",
  15. "Kiko Beats <josefrancisco.verdu@gmail.com>",
  16. "Kris Reeves <krisreeves@searchfanatics.com>",
  17. "Krzysztof Jan Modras <chrmod@chrmod.net>",
  18. "Olivier Melcher <olivier.melcher@gmail.com>",
  19. "Rémi Berson <remi.berson@pm.me>",
  20. "Saad Rashid <srashid@lendinghome.com>",
  21. "Thomas Parisot <hi@oncletom.io>",
  22. "Timo Tijhof <krinklemail@gmail.com>",
  23. "Xavier Damman <xdamman@gmail.com>",
  24. "Yehezkiel Syamsuhadi <yehezkielbs@gmail.com>"
  25. ],
  26. "publishConfig": {
  27. "access": "public"
  28. },
  29. "license": "MIT",
  30. "homepage": "https://github.com/remusao/tldts#readme",
  31. "bugs": {
  32. "url": "https://github.com/remusao/tldts/issues"
  33. },
  34. "repository": {
  35. "type": "git",
  36. "url": "git+ssh://git@github.com/remusao/tldts.git"
  37. },
  38. "main": "dist/cjs/index.js",
  39. "module": "dist/es6/index.js",
  40. "types": "dist/types/index.d.ts",
  41. "files": [
  42. "dist",
  43. "src",
  44. "index.ts"
  45. ],
  46. "bin": "bin/cli.js",
  47. "scripts": {
  48. "clean": "rimraf dist coverage",
  49. "build": "tsc --build ./tsconfig.json",
  50. "bundle": "tsc --build ./tsconfig.bundle.json && rollup --config ./rollup.config.mjs",
  51. "prepack": "yarn run bundle",
  52. "test": "nyc ../../node_modules/.bin/mocha --config ../../.mocharc.cjs"
  53. },
  54. "devDependencies": {
  55. "@rollup/plugin-node-resolve": "^16.0.3",
  56. "@rollup/plugin-terser": "^0.4.4",
  57. "@rollup/plugin-typescript": "^12.3.0",
  58. "@types/chai": "^5.2.3",
  59. "@types/mocha": "^10.0.10",
  60. "@types/node": "^25.1.0",
  61. "chai": "^6.2.2",
  62. "mocha": "^11.7.5",
  63. "nyc": "^17.1.0",
  64. "rimraf": "^6.1.2",
  65. "rollup": "^4.57.1",
  66. "rollup-plugin-sourcemaps2": "^0.5.4",
  67. "tldts-tests": "^7.0.23",
  68. "typescript": "^5.9.3"
  69. },
  70. "dependencies": {
  71. "tldts-core": "^7.0.23"
  72. },
  73. "keywords": [
  74. "tld",
  75. "sld",
  76. "domain",
  77. "subdomain",
  78. "subdomain",
  79. "hostname",
  80. "browser",
  81. "uri",
  82. "url",
  83. "domain name",
  84. "public suffix",
  85. "url parsing",
  86. "typescript"
  87. ],
  88. "gitHead": "48883aebfeef41ddc8aa75ca6b608a99472b3d1d"
  89. }