flatbush/package.json
Vladimir Agafonkin f501aea975 use spec reporter
2023-03-21 11:40:28 +02:00

52 lines
1.1 KiB
JSON

{
"name": "flatbush",
"version": "4.0.0",
"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 --test-reporter spec 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": "^15.0.1",
"eslint": "^8.26.0",
"eslint-config-mourner": "^3.0.0",
"rbush": "^3.0.1",
"rbush-knn": "^3.0.1",
"rollup": "^3.2.3"
}
}