forked from mourner/rbush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.35 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "rbush",
"version": "3.0.1",
"description": "High-performance 2D spatial index for rectangles (based on R*-tree with bulk loading and bulk insertion algorithms)",
"homepage": "https://github.com/mourner/rbush",
"repository": {
"type": "git",
"url": "git://github.com/mourner/rbush.git"
},
"keywords": [
"spatial",
"tree",
"search",
"rectangle",
"index",
"math"
],
"author": "Vladimir Agafonkin",
"license": "MIT",
"main": "rbush.js",
"module": "index.js",
"browser": "rbush.min.js",
"jsdelivr": "rbush.min.js",
"unpkg": "rbush.min.js",
"devDependencies": {
"@rollup/plugin-buble": "^0.21.1",
"@rollup/plugin-node-resolve": "^7.1.1",
"benchmark": "^2.1.4",
"c8": "^7.1.0",
"eslint": "^6.8.0",
"eslint-config-mourner": "^3.0.0",
"esm": "^3.2.25",
"rollup": "^2.2.0",
"rollup-plugin-terser": "^5.3.0",
"tape": "^4.13.2"
},
"scripts": {
"pretest": "eslint index.js test/test.js bench/*.js",
"test": "tape -r esm test/test.js",
"perf": "node -r esm ./bench/perf.js",
"cov": "c8 npm run test",
"build": "rollup -c",
"prepublishOnly": "npm run test && npm run build"
},
"files": [
"index.js",
"rbush.js",
"rbush.min.js"
],
"eslintConfig": {
"extends": "mourner"
},
"dependencies": {
"quickselect": "^2.0.0"
}
}