智慧水务管理系统 - 精河县供水工程综合管理平台

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "rbush",
  3. "version": "4.0.1",
  4. "description": "High-performance 2D spatial index for rectangles (based on R*-tree with bulk loading and bulk insertion algorithms)",
  5. "homepage": "https://github.com/mourner/rbush",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/mourner/rbush.git"
  9. },
  10. "keywords": [
  11. "spatial",
  12. "tree",
  13. "search",
  14. "rectangle",
  15. "index",
  16. "math"
  17. ],
  18. "author": "Volodymyr Agafonkin",
  19. "license": "MIT",
  20. "type": "module",
  21. "exports": "./index.js",
  22. "main": "index.js",
  23. "module": "index.js",
  24. "browser": "rbush.min.js",
  25. "jsdelivr": "rbush.min.js",
  26. "unpkg": "rbush.min.js",
  27. "devDependencies": {
  28. "@rollup/plugin-buble": "^1.0.3",
  29. "@rollup/plugin-node-resolve": "^15.2.3",
  30. "@rollup/plugin-terser": "^0.4.4",
  31. "benchmark": "^2.1.4",
  32. "eslint": "^9.9.0",
  33. "eslint-config-mourner": "^4.0.2",
  34. "rollup": "^4.21.0"
  35. },
  36. "scripts": {
  37. "pretest": "eslint index.js test/test.js bench/*.js",
  38. "test": "node --test",
  39. "perf": "node ./bench/perf.js",
  40. "cov": "node --test --experimental-test-coverage",
  41. "build": "rollup -c",
  42. "prepublishOnly": "npm run test && npm run build"
  43. },
  44. "files": [
  45. "index.js",
  46. "rbush.js",
  47. "rbush.min.js"
  48. ],
  49. "dependencies": {
  50. "quickselect": "^3.0.0"
  51. }
  52. }