mirror of
https://github.com/mourner/flatbush.git
synced 2025-12-08 17:36:26 +00:00
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"name": "flatbush",
|
|
"version": "1.3.1",
|
|
"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 @std/esm test.js",
|
|
"bench": "node -r @std/esm bench.js",
|
|
"build": "rollup index.js --o flatbush.js -f umd --name flatbush && uglifyjs flatbush.js -c -m -o flatbush.min.js",
|
|
"prepare": "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",
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
}
|
|
},
|
|
"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": {
|
|
"@std/esm": "^0.23.3",
|
|
"eslint": "^4.18.1",
|
|
"eslint-config-mourner": "^2.0.3",
|
|
"rbush": "^2.0.2",
|
|
"rollup": "^0.56.3",
|
|
"tape": "^4.9.0",
|
|
"uglify-js": "^3.3.12"
|
|
}
|
|
}
|