-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 890 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 890 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
39
40
41
42
{
"name": "concaveman",
"version": "2.0.0",
"description": "Fast 2D concave hull algorithm in JavaScript (generates an outline of a point set)",
"type": "module",
"main": "index.js",
"exports": "./index.js",
"dependencies": {
"point-in-polygon": "^1.1.0",
"rbush": "^4.0.1",
"robust-predicates": "^3.0.2",
"tinyqueue": "^3.0.0"
},
"devDependencies": {
"eslint": "^9.31.0",
"eslint-config-mourner": "^4.0.2"
},
"scripts": {
"pretest": "eslint index.js test/*.js",
"test": "node test/test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/concaveman.git"
},
"keywords": [
"concave",
"hull",
"algorithm",
"geometry",
"shape",
"outline"
],
"eslintConfig": {
"extends": "mourner"
},
"files": [
"index.js"
],
"author": "Vladimir Agafonkin",
"license": "ISC"
}