forked from elm/compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathElm.cabal
155 lines (142 loc) · 5.25 KB
/
Elm.cabal
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
Name: Elm
Version: 0.8.0.3
Synopsis: The Elm language module.
Description: Elm aims to make client-side web-development more pleasant.
It is a statically/strongly typed, functional reactive
language to HTML, CSS, and JS. This package provides a
library for Elm compilation in Haskell and a compiler
executable.
Homepage: http://elm-lang.org
License: BSD3
License-file: LICENSE
Author: Evan Czaplicki
Maintainer: info@elm-lang.org
Copyright: Copyright: (c) 2011-2012 Evan Czaplicki
Category: Compiler, Language
Build-type: Custom
Extra-source-files: changelog.txt
Data-dir: dist/data
Data-files: elm-runtime.js docs.json
Cabal-version: >=1.8
source-repository head
type: git
location: git://github.com/evancz/Elm.git
Library
exposed-modules: Language.Elm,
Language.Elm.Quasi
Hs-Source-Dirs: compiler, compiler/Gen, compiler/Model, compiler/Transform
other-modules: Ast,
Located,
CompileToJS,
Cases,
Substitute,
ExtractNoscript,
GenerateHtml,
Guid,
Libraries,
LoadLibraries,
Optimize,
Initialize,
Rename,
Parse.Binops,
Parse.Expr,
Parse.Foreign,
Parse.Library,
Parse.Modules,
Parse.Parser,
Parse.Patterns,
Parse.Types,
Types.Alias,
Types.Types,
Types.Constrain,
Types.Hints,
Types.Solver,
Types.Substitutions,
Types.Unify,
Paths_Elm
Build-depends: base >=4.2 && <5,
containers >= 0.3,
uniplate >= 1.6,
transformers >= 0.2,
mtl >= 2,
deepseq,
parsec >= 3.1.1,
blaze-html == 0.5.* || == 0.6.*,
blaze-markup == 0.5.1.*,
text,
shakespeare >= 1,
template-haskell,
pandoc >= 1.10,
bytestring,
hjsmin,
indents,
filepath,
json,
directory
Executable elm
Main-is: Compiler.hs
Hs-Source-Dirs: compiler, compiler/Gen, compiler/Model, compiler/Transform
extensions: CPP
cpp-options: -DELM_COMPILEDATADIR="dist/data"
other-modules: Ast,
Located,
CompileToJS,
Cases,
Substitute,
ExtractNoscript,
GenerateHtml,
Guid,
Libraries,
LoadLibraries,
Optimize,
Initialize,
Rename,
Parse.Binops,
Parse.Expr,
Parse.Foreign,
Parse.Library,
Parse.Modules,
Parse.Parser,
Parse.Patterns,
Parse.Types,
Types.Alias,
Types.Types,
Types.Constrain,
Types.Hints,
Types.Solver,
Types.Substitutions,
Types.Unify,
Paths_Elm
Build-depends: base >=4.2 && <5,
containers >= 0.3,
uniplate >= 1.6,
transformers >= 0.2,
mtl >= 2,
deepseq,
parsec >= 3.1.1,
blaze-html == 0.5.* || == 0.6.*,
blaze-markup == 0.5.1.*,
cmdargs,
pandoc >= 1.10,
bytestring,
hjsmin,
indents,
filepath,
json,
directory
Executable elm-doc
Main-is: Docs.hs
Hs-Source-Dirs: compiler, compiler/Model, compiler/Transform
other-modules: Ast,
Located,
Parse.Library,
Parse.Modules,
Rename
Build-depends: base >=4.2 && <5,
containers >= 0.3,
transformers >= 0.2,
mtl >= 2,
parsec >= 3.1.1,
pandoc >= 1.10,
cmdargs,
indents