forked from dillonkearns/elm-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelm.json
27 lines (27 loc) · 873 Bytes
/
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
{
"type": "package",
"name": "dillonkearns/elm-markdown",
"summary": "Pure Elm markdown parser with customizable rendering.",
"license": "BSD-3-Clause",
"version": "7.0.0",
"exposed-modules": [
"Markdown.Parser",
"Markdown.Renderer",
"Markdown.Block",
"Markdown.Html"
],
"elm-version": "0.19.0 <= v < 0.20.0",
"dependencies": {
"elm/core": "1.0.2 <= v < 2.0.0",
"elm/html": "1.0.0 <= v < 2.0.0",
"elm/parser": "1.1.0 <= v < 2.0.0",
"elm/regex": "1.0.0 <= v < 2.0.0",
"elm/url": "1.0.0 <= v < 2.0.0",
"rtfeldman/elm-hex": "1.0.0 <= v < 2.0.0"
},
"test-dependencies": {
"elm-explorations/benchmark": "1.0.1 <= v < 2.0.0",
"elm-explorations/markdown": "1.0.0 <= v < 2.0.0",
"elm-explorations/test": "1.2.2 <= v < 2.0.0"
}
}