{
  "name": "rbush",
  "version": "1.4.3",
  "description": "High-performance 2D spatial index for rectangles (based on R*-tree with bulk loading and bulk insertion algorithms)",
  "homepage": "https://github.com/mourner/rbush",
  "repository": {
    "type": "git",
    "url": "git://github.com/mourner/rbush.git"
  },
  "keywords": [
    "spatial",
    "tree",
    "search",
    "rectangle",
    "index",
    "math"
  ],
  "author": "Vladimir Agafonkin",
  "license": "MIT",
  "main": "rbush.js",
  "devDependencies": {
    "benchmark": "^2.1.0",
    "eslint": "^2.10.2",
    "eslint-config-mourner": "^2.0.1",
    "faucet": "0.0.1",
    "istanbul": "~0.4.3",
    "rtree": "~1.4.2",
    "tape": "^4.5.1"
  },
  "scripts": {
    "test": "eslint rbush.js test/test.js && node test/test.js | faucet",
    "perf": "node ./debug/perf.js",
    "cov": "istanbul cover test/test.js -x test/test.js"
  },
  "eslintConfig": {
    "extends": "mourner",
    "rules": {
      "indent": 0,
      "strict": 0,
      "new-cap": 0,
      "consistent-return": 0
    },
    "env": {
      "amd": true
    }
  }
}
