-
Notifications
You must be signed in to change notification settings - Fork 9
/
elm.json
46 lines (46 loc) · 1.25 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
{
"type": "package",
"name": "krisajenkins/elm-exts",
"summary": "A collection of functions missing from the core.",
"license": "MIT",
"version": "28.0.0",
"exposed-modules": [
"Exts.Array",
"Exts.Basics",
"Exts.Delta",
"Exts.Dict",
"Exts.Float",
"Exts.Html.Attributes",
"Exts.Html.Bootstrap.Glyphicons",
"Exts.Html.Bootstrap",
"Exts.Html.Events",
"Exts.Html.Table",
"Exts.Html",
"Exts.Http",
"Exts.Int",
"Exts.Json.Decode",
"Exts.Json.Encode",
"Exts.LatLng",
"Exts.List",
"Exts.Maybe",
"Exts.Result",
"Exts.Set",
"Exts.String",
"Exts.Task",
"Exts.Tuple"
],
"elm-version": "0.19.0 <= v < 0.20.0",
"dependencies": {
"elm/core": "1.0.0 <= v < 2.0.0",
"elm/html": "1.0.0 <= v < 2.0.0",
"elm/http": "1.0.0 <= v < 2.0.0",
"elm/json": "1.0.0 <= v < 2.0.0",
"elm/regex": "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",
"etaque/elm-response": "3.1.0 <= v < 4.0.0"
},
"test-dependencies": {
"elm-explorations/test": "1.0.0 <= v < 2.0.0"
}
}