forked from mapbox/dobbyscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 783 Bytes
/
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
{
"name": "dobbyscan",
"version": "1.0.0",
"description": "A very fast density based clustering library for geographic points",
"homepage": "https://github.com/mapbox/dobbyscan",
"keywords": [
"clustering",
"spatial",
"geographic",
"algorithm",
"dbscan",
"density"
],
"author": "Vladimir Agafonkin",
"repository": {
"type": "git",
"url": "git://github.com/mapbox/dobbyscan.git"
},
"scripts": {
"pretest": "eslint index.js",
"test": "tape test.js"
},
"dependencies": {
"geokdbush": "^1.1.0",
"kdbush": "^1.0.1"
},
"devDependencies": {
"all-the-cities": "^2.0.1",
"eslint": "^4.16.0",
"eslint-config-mourner": "^2.0.3",
"tape": "^4.8.0"
},
"eslintConfig": {
"extends": "mourner"
}
}