mirror of
https://github.com/mourner/flatbush.git
synced 2025-12-08 17:36:26 +00:00
59 lines
1.3 KiB
JSON
59 lines
1.3 KiB
JSON
{
|
|
"name": "flatbush",
|
|
"version": "3.1.0",
|
|
"description": "Fast static spatial index for rectangles",
|
|
"main": "flatbush.js",
|
|
"module": "index.js",
|
|
"unpkg": "flatbush.min.js",
|
|
"jsdelivr": "flatbush.min.js",
|
|
"scripts": {
|
|
"pretest": "eslint index.js test.js bench.js",
|
|
"test": "node -r esm test.js",
|
|
"bench": "node -r esm bench.js",
|
|
"build": "rollup -c",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"flatbush.js",
|
|
"flatbush.min.js"
|
|
],
|
|
"@std/esm": "js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/mourner/flatbush.git"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "mourner"
|
|
},
|
|
"keywords": [
|
|
"geometry",
|
|
"spatial",
|
|
"tree",
|
|
"index",
|
|
"rectangle",
|
|
"search"
|
|
],
|
|
"author": "Vladimir Agafonkin",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/mourner/flatbush/issues"
|
|
},
|
|
"homepage": "https://github.com/mourner/flatbush#readme",
|
|
"devDependencies": {
|
|
"eslint": "^5.11.1",
|
|
"eslint-config-mourner": "^3.0.0",
|
|
"esm": "^3.0.84",
|
|
"rbush": "^2.0.2",
|
|
"rbush-knn": "^2.1.0",
|
|
"rollup": "^1.0.1",
|
|
"rollup-plugin-buble": "^0.19.6",
|
|
"rollup-plugin-node-resolve": "^4.0.0",
|
|
"rollup-plugin-terser": "^4.0.1",
|
|
"tape": "^4.9.2"
|
|
},
|
|
"dependencies": {
|
|
"flatqueue": "^1.1.0"
|
|
}
|
|
}
|