package.json 560 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "ip",
  3. "version": "1.1.8",
  4. "author": "Fedor Indutny <fedor@indutny.com>",
  5. "homepage": "https://github.com/indutny/node-ip",
  6. "repository": {
  7. "type": "git",
  8. "url": "http://github.com/indutny/node-ip.git"
  9. },
  10. "files": [
  11. "lib",
  12. "README.md"
  13. ],
  14. "main": "lib/ip",
  15. "devDependencies": {
  16. "eslint": "^8.15.0",
  17. "mocha": "^10.0.0"
  18. },
  19. "scripts": {
  20. "lint": "eslint lib/*.js test/*.js",
  21. "test": "npm run lint && mocha --reporter spec test/*-test.js",
  22. "fix": "npm run lint -- --fix"
  23. },
  24. "license": "MIT"
  25. }