package.json 780 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "author": "Olivier Poitrey <rs@dailymotion.com>",
  3. "name": "netmask",
  4. "description": "Parse and lookup IP network blocks",
  5. "version": "1.0.6",
  6. "homepage": "https://github.com/rs/node-netmask",
  7. "bugs": "https://github.com/rs/node-netmask/issues",
  8. "license": "MIT",
  9. "repository":
  10. {
  11. "type": "git",
  12. "url": "git://github.com/rs/node-netmask.git"
  13. },
  14. "keywords": ["net", "mask", "ip", "network", "cidr", "netmask", "subnet", "ipcalc"],
  15. "main": "./lib/netmask",
  16. "scripts":
  17. {
  18. "prepublish": "coffee -c lib/*.coffee",
  19. "test": "vows --spec test/*"
  20. },
  21. "engines":
  22. {
  23. "node": ">= 0.4.0"
  24. },
  25. "devDependencies":
  26. {
  27. "coffee-script": ">=1.2.0",
  28. "vows": "*"
  29. }
  30. }