-
Notifications
You must be signed in to change notification settings - Fork 45
/
elm.json
43 lines (43 loc) · 1.33 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
{
"type": "package",
"name": "terezka/line-charts",
"summary": "A library for plotting lines charts in SVG.",
"license": "BSD-3-Clause",
"version": "2.0.2",
"exposed-modules": [
"LineChart",
"LineChart.Area",
"LineChart.Axis",
"LineChart.Axis.Intersection",
"LineChart.Axis.Line",
"LineChart.Axis.Range",
"LineChart.Axis.Tick",
"LineChart.Axis.Ticks",
"LineChart.Axis.Title",
"LineChart.Axis.Values",
"LineChart.Colors",
"LineChart.Container",
"LineChart.Coordinate",
"LineChart.Dots",
"LineChart.Events",
"LineChart.Grid",
"LineChart.Interpolation",
"LineChart.Junk",
"LineChart.Legends",
"LineChart.Line"
],
"elm-version": "0.19.0 <= v < 0.20.0",
"dependencies": {
"avh4/elm-color": "1.0.0 <= v < 2.0.0",
"debois/elm-dom": "1.3.0 <= v < 2.0.0",
"elm/core": "1.0.0 <= v < 2.0.0",
"elm/html": "1.0.0 <= v < 2.0.0",
"elm/json": "1.0.0 <= v < 2.0.0",
"elm/svg": "1.0.0 <= v < 2.0.0",
"elm/time": "1.0.0 <= v < 2.0.0",
"justinmimbs/time-extra": "1.1.0 <= v < 2.0.0",
"myrho/elm-round": "1.0.4 <= v < 2.0.0",
"ryan-haskell/date-format": "1.0.0 <= v < 2.0.0"
},
"test-dependencies": {}
}