forked from jxxcarlson/elm-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
elm.json
35 lines (35 loc) · 1.29 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
{
"type": "package",
"name": "jxxcarlson/elm-markdown",
"summary": "Experimental markdown parser, handles math, has hooks for editor sync",
"license": "BSD-3-Clause",
"version": "10.0.1",
"exposed-modules": [
"Markdown.Render",
"Markdown.Option",
"Markdown.Parse",
"Markdown.LaTeX",
"Markdown.Data"
],
"elm-version": "0.19.0 <= v < 0.20.0",
"dependencies": {
"Garados007/elm-svg-parser": "1.0.0 <= v < 2.0.0",
"Janiczek/elm-bidict": "2.0.1 <= v < 3.0.0",
"Punie/elm-parser-extras": "1.0.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.1.3 <= v < 2.0.0",
"elm/parser": "1.1.0 <= v < 2.0.0",
"elm/regex": "1.0.0 <= v < 2.0.0",
"elm-community/list-extra": "8.2.2 <= v < 9.0.0",
"elm-community/maybe-extra": "5.0.0 <= v < 6.0.0",
"elm-community/string-extra": "4.0.1 <= v < 5.0.0",
"jxxcarlson/htree": "2.0.1 <= v < 3.0.0",
"pablohirafuji/elm-syntax-highlight": "3.4.0 <= v < 4.0.0",
"zwilias/elm-html-string": "2.0.2 <= v < 3.0.0",
"zwilias/elm-rosetree": "1.5.0 <= v < 2.0.0"
},
"test-dependencies": {
"elm-explorations/test": "1.2.2 <= v < 2.0.0"
}
}