js-quadtree
Version:
A simple quadtree implementation for javascript (nodejs or browser with module bundler).
44 lines (43 loc) • 1.14 kB
JSON
{
"name": "js-quadtree",
"version": "3.3.6",
"description": "A simple quadtree implementation for javascript (nodejs or browser with module bundler).",
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": "dist/index.js",
"scripts": {
"build": "rollup -c",
"lint": "eslint ./src/**",
"test": "jest",
"prepare": "npm run build"
},
"files": [
"/dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/CorentinTh/quadtree-js"
},
"keywords": [
"quadtree",
"qt",
"quadtree.js",
"quadtree javascript"
],
"author": "Corentin Th <corentin.thomasset74+npm@gmail.com> (https://github.com/CorentinTh)",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^4.1.2",
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"jest": "^25.5.4",
"rollup": "^2.47.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.26.0",
"ts-jest": "^25.5.1",
"typescript": "^3.9.9"
},
"dependencies": {}
}