package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "rbush",
  3. "version": "2.0.2",
  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": "index.js",
  21. "jsdelivr": "rbush.js",
  22. "unpkg": "rbush.js",
  23. "devDependencies": {
  24. "benchmark": "^2.1.4",
  25. "browserify": "^14.5.0",
  26. "eslint": "^4.13.1",
  27. "eslint-config-mourner": "^2.0.3",
  28. "faucet": "0.0.1",
  29. "istanbul": "~0.4.5",
  30. "tape": "^4.8.0",
  31. "uglify-js": "^3.2.2"
  32. },
  33. "scripts": {
  34. "test": "eslint index.js test/test.js && node test/test.js | faucet",
  35. "perf": "node ./bench/perf.js",
  36. "cov": "istanbul cover test/test.js -x test/test.js",
  37. "build": "browserify index.js -s rbush -o rbush.js",
  38. "build-min": "browserify index.js -s rbush | uglifyjs -c warnings=false -m > rbush.min.js",
  39. "prepare": "npm run build && npm run build-min"
  40. },
  41. "files": [
  42. "rbush.js",
  43. "rbush.min.js"
  44. ],
  45. "eslintConfig": {
  46. "extends": "mourner",
  47. "rules": {
  48. "new-cap": 0,
  49. "consistent-return": 0
  50. }
  51. },
  52. "dependencies": {
  53. "quickselect": "^1.0.1"
  54. }
  55. }