mirror of
https://github.com/mourner/flatbush.git
synced 2025-12-08 17:36:26 +00:00
61 lines
1.3 KiB
JSON
61 lines
1.3 KiB
JSON
{
|
|
"name": "flatbush",
|
|
"version": "2.0.4",
|
|
"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",
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-var": "error",
|
|
"prefer-const": "error"
|
|
}
|
|
},
|
|
"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": "^4.19.0",
|
|
"eslint-config-mourner": "^2.0.3",
|
|
"esm": "^3.0.8",
|
|
"rbush": "^2.0.2",
|
|
"rollup": "^0.57.1",
|
|
"rollup-plugin-buble": "^0.19.2",
|
|
"rollup-plugin-uglify": "^3.0.0",
|
|
"tape": "^4.9.0"
|
|
}
|
|
}
|