package.json 601 B

1234567891011121314151617181920212223
  1. {
  2. "name": "ipaddr.js",
  3. "description": "A library for manipulating IPv4 and IPv6 addresses in JavaScript.",
  4. "version": "1.4.0",
  5. "author": "whitequark <whitequark@whitequark.org>",
  6. "directories": {
  7. "lib": "./lib"
  8. },
  9. "dependencies": {},
  10. "devDependencies": {
  11. "coffee-script": "~1.12.6",
  12. "uglify-js": "~3.0.19",
  13. "nodeunit": ">=0.8.2 <0.8.7"
  14. },
  15. "scripts": {
  16. "test": "cake build test"
  17. },
  18. "keywords": ["ip", "ipv4", "ipv6"],
  19. "repository": "git://github.com/whitequark/ipaddr.js",
  20. "main": "./lib/ipaddr",
  21. "engines": { "node": ">= 0.10" },
  22. "license": "MIT"
  23. }