package.json 813 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "node-ip2region",
  3. "version": "2.0.0",
  4. "description": "official nodejs client of ip2region",
  5. "main": "index.js",
  6. "scripts": {
  7. "lint": "eslint ./index.js",
  8. "test": "mocha ./tests/function.test.js",
  9. "coverage": "nyc npm run test",
  10. "benchmark": "node ./tests/benchmark.js"
  11. },
  12. "author": "Wu Jian Ping",
  13. "license": "ISC",
  14. "devDependencies": {
  15. "@types/chai": "^4.3.1",
  16. "@types/node": "^18.0.6",
  17. "argparse": "^2.0.1",
  18. "benchmark": "^2.1.4",
  19. "chai": "^4.3.6",
  20. "eslint": "^8.20.0",
  21. "eslint-config-standard": "^17.0.0",
  22. "eslint-plugin-import": "^2.26.0",
  23. "eslint-plugin-n": "^15.2.4",
  24. "eslint-plugin-promise": "^6.0.0",
  25. "linebyline": "^1.3.0",
  26. "mocha": "^10.0.0",
  27. "nyc": "^15.1.0"
  28. },
  29. "engines": {
  30. "node": ">=8.0.0"
  31. }
  32. }