package.json 857 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "ipaddr.js",
  3. "description": "A library for manipulating IPv4 and IPv6 addresses in JavaScript.",
  4. "version": "2.0.1",
  5. "author": "whitequark <whitequark@whitequark.org>",
  6. "directories": {
  7. "lib": "./lib"
  8. },
  9. "dependencies": {},
  10. "devDependencies": {
  11. "eslint": "*",
  12. "mocha": "*",
  13. "uglify-es": "*"
  14. },
  15. "scripts": {
  16. "lint": "npx eslint lib test",
  17. "lintfix": "npx eslint --fix lib test",
  18. "build": "npx uglifyjs --compress --mangle --wrap=window -o ipaddr.min.js lib/ipaddr.js",
  19. "test": "npx _mocha"
  20. },
  21. "files": [
  22. "lib/",
  23. "LICENSE",
  24. "ipaddr.min.js"
  25. ],
  26. "keywords": [
  27. "ip",
  28. "ipv4",
  29. "ipv6"
  30. ],
  31. "repository": "git://github.com/whitequark/ipaddr.js",
  32. "main": "./lib/ipaddr.js",
  33. "engines": {
  34. "node": ">= 10"
  35. },
  36. "license": "MIT",
  37. "types": "./lib/ipaddr.js.d.ts"
  38. }