This repository has been archived by the owner on Oct 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
elm.json
55 lines (55 loc) · 1.94 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
47
48
49
50
51
52
53
54
55
{
"type": "package",
"name": "elm-in-elm/compiler",
"summary": "Elm compiler written in Elm",
"license": "BSD-3-Clause",
"version": "1.0.1",
"exposed-modules": [
"Elm.Compiler",
"Elm.Compiler.Error",
"Elm.Data.Binding",
"Elm.Data.Declaration",
"Elm.Data.Exposing",
"Elm.Data.FileContents",
"Elm.Data.FilePath",
"Elm.Data.Import",
"Elm.Data.Located",
"Elm.Data.Module",
"Elm.Data.ModuleName",
"Elm.Data.Project",
"Elm.Data.Type",
"Elm.Data.TypeAnnotation",
"Elm.Data.Type.ToString",
"Elm.Data.VarName",
"Elm.AST.Frontend",
"Elm.AST.Frontend.Unwrapped",
"Elm.AST.Canonical",
"Elm.AST.Canonical.Unwrapped",
"Elm.AST.Typed",
"Elm.AST.Typed.Unwrapped"
],
"elm-version": "0.19.0 <= v < 0.20.0",
"dependencies": {
"Janiczek/transform": "1.1.0 <= v < 2.0.0",
"dmy/elm-pratt-parser": "2.0.0 <= v < 3.0.0",
"elm/core": "1.0.2 <= v < 2.0.0",
"elm/json": "1.1.3 <= v < 2.0.0",
"elm/project-metadata-utils": "1.0.0 <= v < 2.0.0",
"elm-community/dict-extra": "2.4.0 <= v < 3.0.0",
"elm-community/graph": "6.0.0 <= v < 7.0.0",
"elm-community/list-extra": "8.7.0 <= v < 9.0.0",
"elm-community/maybe-extra": "5.2.0 <= v < 6.0.0",
"elm-community/result-extra": "2.4.0 <= v < 3.0.0",
"elm-community/string-extra": "4.0.1 <= v < 5.0.0",
"erlandsona/assoc-set": "1.0.0 <= v < 2.0.0",
"pzp1997/assoc-list": "1.0.0 <= v < 2.0.0",
"robinheghan/fnv1a": "1.0.0 <= v < 2.0.0",
"rtfeldman/elm-hex": "1.0.0 <= v < 2.0.0",
"turboMaCk/non-empty-list-alias": "1.1.0 <= v < 2.0.0"
},
"test-dependencies": {
"elm/random": "1.0.0 <= v < 2.0.0",
"elm-community/random-extra": "3.1.0 <= v < 4.0.0",
"elm-explorations/test": "2.0.1 <= v < 3.0.0"
}
}