UNPKG

721 BJSONView Raw
1{
2 "name": "@timohausmann/quadtree-js",
3 "version": "1.2.6",
4 "description": "Another quadtree implementation for javascript",
5 "author": "Timo Hausmann",
6 "license": "MIT",
7 "main": "quadtree.js",
8 "types": "quadtree.d.ts",
9 "scripts": {
10 "build": "uglifyjs ./quadtree.js -o ./quadtree.min.js --compress --mangle --comments /github/ && cp quadtree.min.js ./docs/quadtree.min.js"
11 },
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/timohausmann/quadtree-js.git"
15 },
16 "bugs": {
17 "url": "https://github.com/timohausmann/quadtree-js/issues"
18 },
19 "keywords": [
20 "quadtree"
21 ],
22 "directories": {
23 "example": "examples"
24 },
25 "devDependencies": {
26 "uglify-js": "^3.9.4"
27 }
28}