package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "ip-address",
  3. "description": "A library for parsing IPv4 and IPv6 IP addresses in node and the browser.",
  4. "keywords": [
  5. "ipv6",
  6. "ipv4",
  7. "browser",
  8. "validation"
  9. ],
  10. "version": "10.1.0",
  11. "author": "Beau Gunderson <beau@beaugunderson.com> (https://beaugunderson.com/)",
  12. "license": "MIT",
  13. "main": "dist/ip-address.js",
  14. "types": "dist/ip-address.d.ts",
  15. "scripts": {
  16. "docs": "documentation build --github --output docs --format html ./ip-address.js",
  17. "build": "rm -rf dist; mkdir dist; tsc",
  18. "prepack": "npm run build",
  19. "release": "release-it",
  20. "test-ci": "nyc mocha",
  21. "test": "mocha",
  22. "watch": "mocha --watch"
  23. },
  24. "nyc": {
  25. "extension": [
  26. ".ts"
  27. ],
  28. "exclude": [
  29. "**/*.d.ts",
  30. ".eslintrc.js",
  31. "coverage/",
  32. "dist/",
  33. "test/",
  34. "tmp/"
  35. ],
  36. "reporter": [
  37. "html",
  38. "lcov",
  39. "text"
  40. ],
  41. "all": true
  42. },
  43. "engines": {
  44. "node": ">= 12"
  45. },
  46. "files": [
  47. "src",
  48. "dist"
  49. ],
  50. "repository": {
  51. "type": "git",
  52. "url": "git://github.com/beaugunderson/ip-address.git"
  53. },
  54. "devDependencies": {
  55. "@types/chai": "^5.0.0",
  56. "@types/mocha": "^10.0.8",
  57. "@typescript-eslint/eslint-plugin": "^8.8.0",
  58. "@typescript-eslint/parser": "^8.8.0",
  59. "chai": "^5.1.1",
  60. "documentation": "^14.0.3",
  61. "eslint": "^8.50.0",
  62. "eslint_d": "^14.0.4",
  63. "eslint-config-airbnb": "^19.0.4",
  64. "eslint-config-prettier": "^9.1.0",
  65. "eslint-plugin-filenames": "^1.3.2",
  66. "eslint-plugin-import": "^2.30.0",
  67. "eslint-plugin-jsx-a11y": "^6.10.0",
  68. "eslint-plugin-prettier": "^5.2.1",
  69. "eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
  70. "mocha": "^10.7.3",
  71. "nyc": "^17.1.0",
  72. "prettier": "^3.3.3",
  73. "release-it": "^17.6.0",
  74. "source-map-support": "^0.5.21",
  75. "tsx": "^4.19.1",
  76. "typescript": "<5.6.0"
  77. }
  78. }