forked from mourner/rbush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.37 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
57
58
59
{
"name": "rbush",
"version": "2.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/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": {
"benchmark": "^2.1.4",
"c8": "^4.1.4",
"eslint": "^4.13.1",
"eslint-config-mourner": "^2.0.3",
"esm": "^3.2.22",
"rollup": "^1.11.3",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-terser": "^4.0.4",
"tape": "^4.10.1"
},
"scripts": {
"pretest": "eslint index.js test/test.js ",
"test": "tape -r esm test/test.js",
"perf": "node -r esm ./bench/perf.js",
"cov": "c8 npm run test",
"build": "rollup -c",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"files": [
"index.js",
"rbush.js",
"rbush.min.js"
],
"eslintConfig": {
"extends": "mourner",
"parserOptions": {
"sourceType": "module"
}
},
"dependencies": {
"quickselect": "^2.0.0"
}
}