-
Notifications
You must be signed in to change notification settings - Fork 26
/
elm.json
78 lines (78 loc) · 2.18 KB
/
elm.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"type": "package",
"name": "ianmackenzie/elm-geometry",
"summary": "2D/3D geometric data types and operations",
"license": "MPL-2.0",
"version": "4.0.0",
"exposed-modules": [
"Arc2d",
"Arc3d",
"ArcLength",
"Axis2d",
"Axis3d",
"Block3d",
"BoundingBox2d",
"BoundingBox3d",
"Circle2d",
"Circle3d",
"Cone3d",
"CubicSpline2d",
"CubicSpline3d",
"Cylinder3d",
"DelaunayTriangulation2d",
"Direction2d",
"Direction3d",
"Ellipse2d",
"Ellipse3d",
"Ellipsoid3d",
"EllipticalArc2d",
"EllipticalArc3d",
"Frame2d",
"Frame3d",
"LineSegment2d",
"LineSegment3d",
"Plane3d",
"Point2d",
"Point3d",
"Polygon2d",
"Polyline2d",
"Polyline3d",
"QuadraticSpline2d",
"QuadraticSpline3d",
"RationalCubicSpline2d",
"RationalCubicSpline3d",
"RationalQuadraticSpline2d",
"RationalQuadraticSpline3d",
"Rectangle2d",
"Rectangle3d",
"SketchPlane3d",
"Sphere3d",
"SweptAngle",
"Triangle2d",
"Triangle3d",
"Vector2d",
"Vector3d",
"VectorBoundingBox2d",
"VectorBoundingBox3d",
"VoronoiDiagram2d",
"Spline2d",
"Spline3d"
],
"elm-version": "0.19.0 <= v < 0.20.0",
"dependencies": {
"elm/core": "1.0.0 <= v < 2.0.0",
"elm/random": "1.0.0 <= v < 2.0.0",
"ianmackenzie/elm-1d-parameter": "1.0.1 <= v < 2.0.0",
"ianmackenzie/elm-float-extra": "1.1.0 <= v < 2.0.0",
"ianmackenzie/elm-interval": "3.1.0 <= v < 4.0.0",
"ianmackenzie/elm-triangular-mesh": "1.1.0 <= v < 2.0.0",
"ianmackenzie/elm-units": "2.9.0 <= v < 3.0.0",
"ianmackenzie/elm-units-interval": "3.2.0 <= v < 4.0.0"
},
"test-dependencies": {
"elm-community/list-extra": "8.0.0 <= v < 9.0.0",
"elm-community/random-extra": "3.2.0 <= v < 4.0.0",
"elm-explorations/test": "2.1.1 <= v < 3.0.0",
"ianmackenzie/elm-random-test": "1.0.0 <= v < 2.0.0"
}
}