package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "geojson-rbush",
  3. "version": "3.2.0",
  4. "description": "GeoJSON implementation of RBush",
  5. "main": "index",
  6. "types": "index.d.ts",
  7. "files": [
  8. "index.js",
  9. "index.d.ts"
  10. ],
  11. "scripts": {
  12. "pretest": "tsc types.ts",
  13. "test": "node test.js --coverage",
  14. "bench": "node bench.js",
  15. "docs": "documentation readme index.js --section=API"
  16. },
  17. "keywords": [
  18. "geojson",
  19. "index",
  20. "tree",
  21. "spatial",
  22. "rbush"
  23. ],
  24. "author": "Denis Carriere <@DenisCarriere>",
  25. "contributors": [
  26. "Vladimir Agafonkin <@mourner>",
  27. "Denis Carriere <@DenisCarriere>",
  28. "Jordan Rousseau <@jvrousseau>"
  29. ],
  30. "license": "MIT",
  31. "devDependencies": {
  32. "@turf/bbox-polygon": "*",
  33. "@turf/random": "*",
  34. "@types/node": "*",
  35. "benchmark": "*",
  36. "documentation": "*",
  37. "load-json-file": "*",
  38. "tap": "*",
  39. "tape": "*",
  40. "typescript": "*",
  41. "write-json-file": "*"
  42. },
  43. "dependencies": {
  44. "@turf/bbox": "*",
  45. "@turf/helpers": "6.x",
  46. "@turf/meta": "6.x",
  47. "@types/geojson": "7946.0.8",
  48. "rbush": "^3.0.1"
  49. }
  50. }