flatbush/package.json
Vladimir Agafonkin bcab4dd210
Switch to ESM-only entry point, drop transpiling and IE (#40)
* switch to ESM-only entry point

* readme updates

* clearer language

* try bigger API headings

* bring back smaller headings

* tiny cleanup

* replace broken bundlephobia badge with a static one

* adjust badge color

* readd rollup bundle for browser CDNs

* update cdn links

* cleanup
2022-03-29 23:11:48 +03:00

53 lines
1.1 KiB
JSON

{
"name": "flatbush",
"version": "3.3.1",
"description": "Fast static spatial index for rectangles",
"author": "Vladimir Agafonkin",
"license": "ISC",
"type": "module",
"main": "flatbush.js",
"module": "index.js",
"exports": "./index.js",
"sideEffects": false,
"scripts": {
"pretest": "eslint index.js test.js bench.js",
"test": "node test.js",
"build": "rollup index.js -o flatbush.js -n Flatbush -f umd -p node-resolve",
"prepublishOnly": "npm run build"
},
"files": [
"index.js",
"flatbush.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mourner/flatbush.git"
},
"eslintConfig": {
"extends": "mourner"
},
"keywords": [
"geometry",
"spatial",
"tree",
"index",
"rectangle",
"search"
],
"engines": {
"node": ">= 12.17.0"
},
"dependencies": {
"flatqueue": "^2.0.3"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"eslint": "^8.12.0",
"eslint-config-mourner": "^3.0.0",
"rbush": "^3.0.1",
"rbush-knn": "^3.0.1",
"rollup": "^2.70.1",
"tape": "^5.5.2"
}
}