package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "address",
  3. "version": "1.2.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": "git-contributor"
  17. },
  18. "dependencies": {},
  19. "devDependencies": {
  20. "@types/node": "^12.7.2",
  21. "beautify-benchmark": "*",
  22. "benchmark": "*",
  23. "git-contributor": "^1.1.0",
  24. "istanbul": "*",
  25. "matcha": "*",
  26. "mm": "*",
  27. "mocha": "*",
  28. "pedding": "*",
  29. "runscript": "^1.4.0",
  30. "should": "*",
  31. "typescript": "^3.5.3"
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "git://github.com/node-modules/address.git"
  36. },
  37. "keywords": [
  38. "address",
  39. "ip",
  40. "ipv4",
  41. "mac"
  42. ],
  43. "engines": {
  44. "node": ">= 10.0.0"
  45. },
  46. "author": "fengmk2 <fengmk2@gmail.com>",
  47. "license": "MIT"
  48. }