forked from mourner/rbush
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "rbush-full",
"version": "3.0.2",
"description": "High-performance 2D spatial index for rectangles (based on R*-tree with bulk loading and bulk insertion algorithms)",
"homepage": "https://github.com/thisredone/rbush",
"repository": {
"type": "git",
"url": "git://github.com/thisredone/rbush.git"
},
"keywords": [
"spatial",
"tree",
"search",
"aabb",
"index",
"raycast",
"collison"
],
"author": "Vladimir Agafonkin",
"license": "MIT",
"main": "index.coffee",
"devDependencies": {
"@rollup/plugin-buble": "^0.21.1",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"coffeescript": "^2.5.1",
"pry": "^0.8.7",
"rollup": "^2.2.0",
"rollup-plugin-terser": "^5.3.0"
},
"scripts": {
"build": "coffee --bare -c index.coffee && rollup -c",
"prepublishOnly": "npm run build"
},
"files": [
"index.coffee",
"rbush.js",
"rbush.min.js"
],
"dependencies": {
"box-intersect": "github:thisredone/box-intersect"
}
}