-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
61 lines (61 loc) · 1.34 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
{
"name": "cdt2d",
"version": "1.0.0",
"description": "Constrained Delaunay Triangulation in 2D",
"main": "cdt2d.js",
"dependencies": {
"binary-search-bounds": "^2.0.3",
"robust-in-sphere": "^1.1.3",
"robust-orientation": "^1.1.3"
},
"devDependencies": {
"canvas-fit": "^1.4.0",
"cell-orientation": "^1.0.1",
"convex-hull": "^1.0.3",
"delaunay-triangulate": "^1.1.6",
"flip-orientation": "^1.0.1",
"gauss-random": "^1.0.1",
"mouse-change": "^1.2.1",
"robust-segment-intersect": "^1.0.1",
"robust-triangle-triangle-2d-intersect": "^1.0.0",
"segment2": "^0.3.2",
"signum": "^1.0.0",
"simplicial-complex-boundary": "^1.0.1",
"tape": "^4.0.0",
"uniq": "^1.0.1",
"vec2": "^1.6.0"
},
"scripts": {
"test": "tape test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mikolalysenko/cdt2d.git"
},
"keywords": [
"constrained",
"delaunay",
"triangulation",
"polygon",
"planar",
"graph",
"vertex",
"geometry",
"cdt",
"2d",
"triangle",
"edge",
"point",
"robust",
"exact",
"constraint",
"hole",
"loop"
],
"author": "Mikola Lysenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikolalysenko/cdt2d/issues"
},
"homepage": "https://github.com/mikolalysenko/cdt2d"
}