package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "_from": "rbush@^3.0.1",
  3. "_id": "rbush@3.0.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w==",
  6. "_location": "/rbush",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "rbush@^3.0.1",
  12. "name": "rbush",
  13. "escapedName": "rbush",
  14. "rawSpec": "^3.0.1",
  15. "saveSpec": null,
  16. "fetchSpec": "^3.0.1"
  17. },
  18. "_requiredBy": [
  19. "/concaveman",
  20. "/geojson-rbush"
  21. ],
  22. "_resolved": "https://registry.npmjs.org/rbush/-/rbush-3.0.1.tgz",
  23. "_shasum": "5fafa8a79b3b9afdfe5008403a720cc1de882ecf",
  24. "_spec": "rbush@^3.0.1",
  25. "_where": "F:\\project\\node_util\\node_modules\\geojson-rbush",
  26. "author": {
  27. "name": "Vladimir Agafonkin"
  28. },
  29. "browser": "rbush.min.js",
  30. "bugs": {
  31. "url": "https://github.com/mourner/rbush/issues"
  32. },
  33. "bundleDependencies": false,
  34. "dependencies": {
  35. "quickselect": "^2.0.0"
  36. },
  37. "deprecated": false,
  38. "description": "High-performance 2D spatial index for rectangles (based on R*-tree with bulk loading and bulk insertion algorithms)",
  39. "devDependencies": {
  40. "benchmark": "^2.1.4",
  41. "c8": "^5.0.1",
  42. "eslint": "^6.1.0",
  43. "eslint-config-mourner": "^3.0.0",
  44. "esm": "^3.2.25",
  45. "rollup": "^1.17.0",
  46. "rollup-plugin-buble": "^0.19.8",
  47. "rollup-plugin-node-resolve": "^5.2.0",
  48. "rollup-plugin-terser": "^5.1.1",
  49. "tape": "^4.11.0"
  50. },
  51. "eslintConfig": {
  52. "extends": "mourner"
  53. },
  54. "files": [
  55. "index.js",
  56. "rbush.js",
  57. "rbush.min.js"
  58. ],
  59. "homepage": "https://github.com/mourner/rbush",
  60. "jsdelivr": "rbush.min.js",
  61. "keywords": [
  62. "spatial",
  63. "tree",
  64. "search",
  65. "rectangle",
  66. "index",
  67. "math"
  68. ],
  69. "license": "MIT",
  70. "main": "rbush.js",
  71. "module": "index.js",
  72. "name": "rbush",
  73. "repository": {
  74. "type": "git",
  75. "url": "git://github.com/mourner/rbush.git"
  76. },
  77. "scripts": {
  78. "build": "rollup -c",
  79. "cov": "c8 npm run test",
  80. "perf": "node -r esm ./bench/perf.js",
  81. "prepublishOnly": "npm run build",
  82. "pretest": "eslint index.js test/test.js bench/*.js",
  83. "test": "tape -r esm test/test.js"
  84. },
  85. "unpkg": "rbush.min.js",
  86. "version": "3.0.1"
  87. }