forked from mapbox/concaveman
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 831 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 831 Bytes
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
{
"name": "concaveman",
"version": "1.2.0",
"description": "Fast 2D concave hull algorithm in JavaScript (generates an outline of a point set)",
"main": "index.js",
"dependencies": {
"point-in-polygon": "^1.0.1",
"rbush": "^3.0.0",
"robust-predicates": "^2.0.4",
"tinyqueue": "^2.0.3"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-mourner": "^2.0.1",
"tape": "^5.0.0"
},
"scripts": {
"pretest": "eslint index.js test/*.js",
"test": "tape test/test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/concaveman.git"
},
"keywords": [
"concave",
"hull",
"algorithm",
"geometry",
"shape",
"outline"
],
"eslintConfig": {
"extends": "mourner"
},
"author": "Vladimir Agafonkin",
"license": "ISC"
}