package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "rbush",
  3. "version": "3.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": "Vladimir Agafonkin",
  19. "license": "MIT",
  20. "main": "rbush.js",
  21. "module": "index.js",
  22. "browser": "rbush.min.js",
  23. "jsdelivr": "rbush.min.js",
  24. "unpkg": "rbush.min.js",
  25. "devDependencies": {
  26. "benchmark": "^2.1.4",
  27. "c8": "^5.0.1",
  28. "eslint": "^6.1.0",
  29. "eslint-config-mourner": "^3.0.0",
  30. "esm": "^3.2.25",
  31. "rollup": "^1.17.0",
  32. "rollup-plugin-buble": "^0.19.8",
  33. "rollup-plugin-node-resolve": "^5.2.0",
  34. "rollup-plugin-terser": "^5.1.1",
  35. "tape": "^4.11.0"
  36. },
  37. "scripts": {
  38. "pretest": "eslint index.js test/test.js bench/*.js",
  39. "test": "tape -r esm test/test.js",
  40. "perf": "node -r esm ./bench/perf.js",
  41. "cov": "c8 npm run test",
  42. "build": "rollup -c",
  43. "prepublishOnly": "npm run build"
  44. },
  45. "files": [
  46. "index.js",
  47. "rbush.js",
  48. "rbush.min.js"
  49. ],
  50. "eslintConfig": {
  51. "extends": "mourner"
  52. },
  53. "dependencies": {
  54. "quickselect": "^2.0.0"
  55. }
  56. }