-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 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
{
"name": "geojson-rbush",
"version": "3.2.0",
"description": "GeoJSON implementation of RBush",
"main": "index",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"pretest": "tsc types.ts",
"test": "node test.js --coverage",
"bench": "node bench.js",
"docs": "documentation readme index.js --section=API"
},
"keywords": [
"geojson",
"index",
"tree",
"spatial",
"rbush"
],
"author": "Denis Carriere <@DenisCarriere>",
"contributors": [
"Vladimir Agafonkin <@mourner>",
"Denis Carriere <@DenisCarriere>",
"Jordan Rousseau <@jvrousseau>"
],
"license": "MIT",
"devDependencies": {
"@turf/bbox-polygon": "*",
"@turf/random": "*",
"@types/node": "*",
"benchmark": "*",
"documentation": "*",
"load-json-file": "*",
"tap": "*",
"tape": "*",
"typescript": "*",
"write-json-file": "*"
},
"dependencies": {
"@turf/bbox": "*",
"@turf/helpers": "6.x",
"@turf/meta": "6.x",
"@types/geojson": "7946.0.8",
"rbush": "^3.0.1"
}
}