package.json 851 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "ipaddr.js",
  3. "description": "A library for manipulating IPv4 and IPv6 addresses in JavaScript.",
  4. "type": "commonjs",
  5. "version": "2.5.0",
  6. "author": "whitequark <whitequark@whitequark.org>",
  7. "directories": {
  8. "lib": "./lib"
  9. },
  10. "devDependencies": {
  11. "@eslint/js": "^10.0.1",
  12. "eslint": "^10.3.0",
  13. "globals": "^17.6.0"
  14. },
  15. "scripts": {
  16. "lint": "npx eslint lib",
  17. "lintfix": "npx eslint --fix lib test",
  18. "test": "node --test",
  19. "test:coverage": "node --test --experimental-test-coverage"
  20. },
  21. "files": [
  22. "lib"
  23. ],
  24. "keywords": [
  25. "ip",
  26. "ipv4",
  27. "ipv6"
  28. ],
  29. "repository": {
  30. "type": "git",
  31. "url": "git+https://github.com/whitequark/ipaddr.js.git"
  32. },
  33. "main": "./lib/ipaddr.js",
  34. "engines": {
  35. "node": ">= 10"
  36. },
  37. "license": "MIT",
  38. "types": "./lib/ipaddr.d.ts"
  39. }