| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | {  "name": "geojson-rbush",  "version": "3.2.0",  "description": "GeoJSON implementation of RBush",  "main": "index",  "types": "index.d.ts",  "files": [    "index.js",    "index.d.ts"  ],  "scripts": {    "pretest": "tsc types.ts",    "test": "node test.js --coverage",    "bench": "node bench.js",    "docs": "documentation readme index.js --section=API"  },  "keywords": [    "geojson",    "index",    "tree",    "spatial",    "rbush"  ],  "author": "Denis Carriere <@DenisCarriere>",  "contributors": [    "Vladimir Agafonkin <@mourner>",    "Denis Carriere <@DenisCarriere>",    "Jordan Rousseau <@jvrousseau>"  ],  "license": "MIT",  "devDependencies": {    "@turf/bbox-polygon": "*",    "@turf/random": "*",    "@types/node": "*",    "benchmark": "*",    "documentation": "*",    "load-json-file": "*",    "tap": "*",    "tape": "*",    "typescript": "*",    "write-json-file": "*"  },  "dependencies": {    "@turf/bbox": "*",    "@turf/helpers": "6.x",    "@turf/meta": "6.x",    "@types/geojson": "7946.0.8",    "rbush": "^3.0.1"  }}
 |