package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "address",
  3. "version": "1.1.0",
  4. "description": "Get current machine IP, MAC and DNS servers.",
  5. "main": "lib/address.js",
  6. "types": "lib/address.d.ts",
  7. "files": [
  8. "lib"
  9. ],
  10. "scripts": {
  11. "test": "mocha --check-leaks -R spec -t 5000 test/*.test.js",
  12. "test-cov": "istanbul cover node_modules/.bin/_mocha -- --check-leaks -t 5000 test/*.test.js",
  13. "test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- --check-leaks -t 5000 test/*.test.js",
  14. "benchmark": "matcha",
  15. "autod": "autod -w --prefix '^'",
  16. "contributors": "contributors -f plain -o AUTHORS"
  17. },
  18. "dependencies": {},
  19. "devDependencies": {
  20. "contributors": "*",
  21. "istanbul": "*",
  22. "matcha": "*",
  23. "mm": "*",
  24. "mocha": "*",
  25. "pedding": "*",
  26. "should": "*",
  27. "benchmark": "*",
  28. "beautify-benchmark": "*"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "git://github.com/node-modules/address.git"
  33. },
  34. "keywords": [
  35. "address",
  36. "ip",
  37. "ipv4",
  38. "mac"
  39. ],
  40. "engines": {
  41. "node": ">= 0.12.0"
  42. },
  43. "author": "fengmk2 <fengmk2@gmail.com>",
  44. "license": "MIT"
  45. }