This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
forked from mourner/rbush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.58 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "rbush",
"version": "1.4.0",
"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",
"keywords": [
"spatial",
"tree",
"search",
"rectangle",
"index",
"math"
],
"author": "Vladimir Agafonkin",
"repository": {
"type": "git",
"url": "git://github.com/mourner/rbush.git"
},
"main": "rbush.js",
"devDependencies": {
"benchmark": "^1.0.0",
"eslint": "^0.19.0",
"faucet": "0.0.1",
"istanbul": "~0.3.13",
"rtree": "~1.4.2",
"tape": "^4.0.0"
},
"scripts": {
"test": "eslint rbush.js test/test.js && node test/test.js | faucet",
"perf": "node ./debug/perf.js",
"cov": "istanbul cover test/test.js -x test/test.js"
},
"eslintConfig": {
"rules": {
"no-use-before-define": [
2,
"nofunc"
],
"camelcase": 2,
"space-after-function-name": 2,
"space-in-parens": 2,
"space-before-blocks": 2,
"space-after-keywords": 2,
"comma-style": 2,
"no-lonely-if": 2,
"no-else-return": 2,
"no-empty": 2,
"no-new": 2,
"key-spacing": 2,
"space-in-brackets": 2,
"quotes": [
2,
"single"
],
"no-multi-spaces": 0,
"new-cap": 0,
"no-new-func": 0,
"curly": 0,
"no-underscore-dangle": 0,
"no-constant-condition": 0,
"no-shadow": 0
},
"env": {
"node": true,
"browser": true
},
"globals": {
"define": false
}
}
}