package.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "tldts",
  3. "version": "6.1.86",
  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": {
  47. "tldts": "bin/cli.js"
  48. },
  49. "scripts": {
  50. "clean": "rimraf dist coverage",
  51. "build": "tsc --build ./tsconfig.json",
  52. "bundle": "tsc --build ./tsconfig.bundle.json && rollup --config ./rollup.config.mjs",
  53. "prepack": "yarn run bundle",
  54. "test": "nyc mocha --config ../../.mocharc.cjs"
  55. },
  56. "devDependencies": {
  57. "@rollup/plugin-node-resolve": "^16.0.0",
  58. "@rollup/plugin-terser": "^0.4.0",
  59. "@rollup/plugin-typescript": "^12.1.0",
  60. "@types/chai": "^4.2.18",
  61. "@types/mocha": "^10.0.0",
  62. "@types/node": "^22.0.0",
  63. "chai": "^4.4.1",
  64. "mocha": "^11.0.1",
  65. "nyc": "^17.0.0",
  66. "rimraf": "^5.0.1",
  67. "rollup": "^4.1.0",
  68. "rollup-plugin-sourcemaps": "^0.6.1",
  69. "tldts-tests": "^6.1.86",
  70. "typescript": "^5.0.4"
  71. },
  72. "dependencies": {
  73. "tldts-core": "^6.1.86"
  74. },
  75. "keywords": [
  76. "tld",
  77. "sld",
  78. "domain",
  79. "subdomain",
  80. "subdomain",
  81. "hostname",
  82. "browser",
  83. "uri",
  84. "url",
  85. "domain name",
  86. "public suffix",
  87. "url parsing",
  88. "typescript"
  89. ],
  90. "gitHead": "94251baa0e4ee46df6fd06fcd3749fcdf9b14ebc"
  91. }