elm/Elm.cabal

235 lines
8.6 KiB
Text
Raw Normal View History

Name: Elm
2013-10-24 16:33:26 +00:00
Version: 0.10.0.2
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
2013-09-13 19:09:10 +00:00
Copyright: Copyright: (c) 2011-2013 Evan Czaplicki
Category: Compiler, Language
Build-type: Custom
Extra-source-files: changelog.txt
Data-dir: data
Data-files: elm-runtime.js interfaces.data docs.json
Cabal-version: >=1.9
source-repository head
type: git
location: git://github.com/evancz/Elm.git
2013-07-31 16:31:48 +00:00
Library
exposed-modules: Elm.Internal.Dependencies,
Elm.Internal.Documentation,
Elm.Internal.Name,
Elm.Internal.Paths,
Elm.Internal.Utils,
Elm.Internal.Version
2013-07-31 16:31:48 +00:00
Hs-Source-Dirs: compiler
other-modules: SourceSyntax.Declaration,
2013-07-31 16:31:48 +00:00
SourceSyntax.Expression,
SourceSyntax.Everything,
SourceSyntax.Helpers,
SourceSyntax.Literal,
SourceSyntax.Location,
SourceSyntax.Module,
SourceSyntax.Pattern,
SourceSyntax.PrettyPrint,
2013-07-31 16:31:48 +00:00
SourceSyntax.Type,
Generate.JavaScript,
Generate.Noscript,
Generate.Markdown,
2013-07-31 16:31:48 +00:00
Generate.Html,
Generate.Cases,
Transform.Canonicalize,
Transform.Check,
2013-07-31 16:31:48 +00:00
Transform.SortDefinitions,
Transform.Substitute,
Transform.Optimize,
Metadata.Prelude,
InterfaceSerialization,
2013-07-31 16:31:48 +00:00
Parse.Binop,
Parse.Declaration,
Parse.Expression,
Parse.Helpers,
Parse.Literal,
Parse.Module,
Parse.Parse,
Parse.Pattern,
Parse.Type,
Type.Alias,
2013-07-31 16:31:48 +00:00
Type.Constrain.Declaration,
Type.Constrain.Expression,
Type.Constrain.Literal,
Type.Constrain.Pattern,
Type.Environment,
Type.ExtraChecks,
2013-07-31 16:31:48 +00:00
Type.Fragment,
Type.Inference,
Type.PrettyPrint,
2013-07-31 16:31:48 +00:00
Type.Solve,
Type.State,
Type.Type,
Type.Unify,
Build.Dependencies,
Build.File,
Build.Flags,
Build.Print,
Build.Source,
Build.Utils,
2013-07-31 16:31:48 +00:00
Paths_Elm
Build-depends: aeson,
base >=4.2 && <5,
binary >= 0.6.4.0,
2013-07-31 16:31:48 +00:00
blaze-html == 0.5.* || == 0.6.*,
blaze-markup,
2013-07-31 16:31:48 +00:00
bytestring,
cmdargs,
containers >= 0.3,
directory,
filepath,
indents,
language-ecmascript >=0.15 && < 1.0,
2013-07-31 16:31:48 +00:00
mtl >= 2,
pandoc >= 1.10,
parsec >= 3.1.1,
pretty,
text,
2013-07-31 16:31:48 +00:00
transformers >= 0.2,
union-find,
2013-12-16 11:03:04 +00:00
unordered-containers
Executable elm
Main-is: Compiler.hs
ghc-options: -threaded -O2
2013-06-14 05:59:14 +00:00
Hs-Source-Dirs: compiler
other-modules: SourceSyntax.Declaration,
SourceSyntax.Expression,
SourceSyntax.Everything,
2013-06-14 05:59:14 +00:00
SourceSyntax.Helpers,
SourceSyntax.Literal,
SourceSyntax.Location,
2013-06-14 05:59:14 +00:00
SourceSyntax.Module,
SourceSyntax.Pattern,
SourceSyntax.PrettyPrint,
SourceSyntax.Type,
2013-06-14 05:59:14 +00:00
Generate.JavaScript,
Generate.Noscript,
Generate.Markdown,
2013-06-14 05:59:14 +00:00
Generate.Html,
Generate.Cases,
Transform.Canonicalize,
Transform.Check,
2013-07-31 16:31:48 +00:00
Transform.SortDefinitions,
2013-06-14 05:59:14 +00:00
Transform.Substitute,
Transform.Optimize,
Metadata.Prelude,
InterfaceSerialization,
2013-06-14 05:59:14 +00:00
Parse.Binop,
Parse.Declaration,
2013-06-14 05:59:14 +00:00
Parse.Expression,
Parse.Helpers,
Parse.Literal,
2013-06-14 05:59:14 +00:00
Parse.Module,
2013-07-16 19:38:20 +00:00
Parse.Parse,
2013-06-14 05:59:14 +00:00
Parse.Pattern,
Parse.Type,
Type.Alias,
Type.Constrain.Declaration,
Type.Constrain.Expression,
Type.Constrain.Literal,
Type.Constrain.Pattern,
Type.Environment,
Type.ExtraChecks,
Type.Fragment,
Type.Inference,
Type.PrettyPrint,
Type.Solve,
Type.State,
Type.Type,
Type.Unify,
Build.Dependencies,
Build.File,
Build.Flags,
Build.Print,
Build.Source,
Build.Utils,
2012-10-03 06:47:46 +00:00
Paths_Elm
Build-depends: aeson,
base >=4.2 && <5,
binary >= 0.6.4.0,
blaze-html == 0.5.* || == 0.6.*,
blaze-markup == 0.5.1.*,
bytestring,
cmdargs,
containers >= 0.3,
directory,
filepath,
indents,
language-ecmascript >=0.15 && < 1.0,
mtl >= 2,
pandoc >= 1.10,
parsec >= 3.1.1,
pretty,
text,
transformers >= 0.2,
union-find,
2013-12-16 11:03:04 +00:00
unordered-containers
2013-09-05 00:40:29 +00:00
Executable elm-doc
Main-is: Docs.hs
Hs-Source-Dirs: compiler
other-modules: SourceSyntax.Declaration,
SourceSyntax.Everything,
SourceSyntax.Expression,
SourceSyntax.Helpers,
SourceSyntax.Literal,
SourceSyntax.Location,
SourceSyntax.Module,
SourceSyntax.Pattern,
SourceSyntax.PrettyPrint,
SourceSyntax.Type,
Parse.Binop,
Parse.Declaration,
Parse.Expression,
Parse.Helpers,
Parse.Literal,
Parse.Module,
Parse.Pattern,
Parse.Type
Build-depends: aeson,
aeson-pretty,
2013-09-05 00:40:29 +00:00
base >=4.2 && <5,
binary >= 0.6.4.0,
2013-09-05 00:40:29 +00:00
bytestring,
cmdargs,
containers >= 0.3,
directory,
filepath,
indents,
mtl >= 2,
pandoc >= 1.10,
parsec >= 3.1.1,
pretty,
text
2013-09-05 00:40:29 +00:00
2013-07-31 16:31:48 +00:00
Test-Suite test-elm
Type: exitcode-stdio-1.0
Hs-Source-Dirs: tests
2013-08-14 01:38:01 +00:00
Main-is: Main.hs
build-depends: base, directory, HTF