-
Notifications
You must be signed in to change notification settings - Fork 2
/
elm.json
32 lines (32 loc) · 1.11 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
{
"type": "package",
"source-directories": [
"src"
],
"name": "mrdimosthenis/turtle-graphics",
"summary": "This package lets us command a relative cursor (turtle) to draw vector graphics",
"license": "MIT",
"version": "1.0.1",
"exposed-modules": [
"TurtleGraphics"
],
"elm-version": "0.19.0 <= v < 0.20.0",
"dependencies": {
"avh4/elm-color": "1.0.0 <= v < 2.0.0",
"elm/core": "1.0.2 <= v < 2.0.0",
"elm/html": "1.0.0 <= v < 2.0.0",
"elm-community/typed-svg": "5.0.1 <= v < 6.0.0",
"ianmackenzie/elm-geometry": "1.2.1 <= v < 2.0.0",
"elm/json": "1.1.2 <= v < 2.0.0",
"elm/random": "1.0.0 <= v < 2.0.0",
"elm/time": "1.0.0 <= v < 2.0.0",
"elm/url": "1.0.0 <= v < 2.0.0",
"elm/virtual-dom": "1.0.2 <= v < 2.0.0",
"ianmackenzie/elm-float-extra": "1.0.1 <= v < 2.0.0",
"ianmackenzie/elm-interval": "1.0.1 <= v < 2.0.0",
"ianmackenzie/elm-triangular-mesh": "1.0.2 <= v < 2.0.0"
},
"test-dependencies": {
"elm-explorations/test": "1.2.1 <= v < 2.0.0"
}
}