elm/Elm.cabal

193 lines
6.8 KiB
Text
Raw Normal View History

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.9
source-repository head
type: git
location: git://github.com/evancz/Elm.git
Library
exposed-modules: Language.Elm,
Language.Elm.Quasi
2013-06-14 05:59:14 +00:00
Hs-Source-Dirs: compiler
other-modules: Unique,
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.Rename,
SourceSyntax.Type,
2013-06-14 05:59:14 +00:00
Generate.JavaScript,
Generate.Noscript,
Generate.Html,
Generate.Cases,
Transform.Substitute,
Transform.Optimize,
Metadata.Libraries,
Metadata.LoadLibraries,
Initialize,
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,
2012-11-23 04:21:23 +00:00
Parse.Parser,
2013-06-14 05:59:14 +00:00
Parse.Pattern,
Parse.Type,
Type.Constrain.Declaration,
Type.Constrain.Expression,
Type.Constrain.Literal,
Type.Constrain.Pattern,
Type.Environment,
Type.Fragment,
Type.Solve,
Type.State,
Type.Type,
Type.Unify,
2012-10-03 06:47:46 +00:00
Paths_Elm
2013-07-10 22:31:56 +00:00
Build-depends: base >=4.2 && <5,
blaze-html == 0.5.* || == 0.6.*,
blaze-markup == 0.5.1.*,
bytestring,
cmdargs,
containers >= 0.3,
deepseq,
directory,
filepath,
hjsmin,
indents,
json,
mtl >= 2,
pandoc >= 1.10,
parsec >= 3.1.1,
pretty,
2013-06-27 16:53:47 +00:00
shakespeare,
text,
template-haskell,
transformers >= 0.2,
union-find,
uniplate
Executable elm
Main-is: Compiler.hs
2013-06-14 05:59:14 +00:00
Hs-Source-Dirs: compiler
other-modules: Unique,
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.Rename,
SourceSyntax.Type,
2013-06-14 05:59:14 +00:00
Generate.JavaScript,
Generate.Noscript,
Generate.Html,
Generate.Cases,
Transform.Substitute,
Transform.Optimize,
Metadata.Libraries,
Metadata.LoadLibraries,
Initialize,
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,
2012-11-23 04:21:23 +00:00
Parse.Parser,
2013-06-14 05:59:14 +00:00
Parse.Pattern,
Parse.Type,
Type.Constrain.Declaration,
Type.Constrain.Expression,
Type.Constrain.Literal,
Type.Constrain.Pattern,
Type.Environment,
Type.Fragment,
Type.Solve,
Type.State,
Type.Type,
Type.Unify,
2012-10-03 06:47:46 +00:00
Paths_Elm
2013-07-10 22:31:56 +00:00
Build-depends: base >=4.2 && <5,
blaze-html == 0.5.* || == 0.6.*,
blaze-markup == 0.5.1.*,
bytestring,
cmdargs,
containers >= 0.3,
deepseq,
directory,
filepath,
hjsmin,
indents,
json,
mtl >= 2,
pandoc >= 1.10,
parsec >= 3.1.1,
pretty,
transformers >= 0.2,
union-find,
uniplate
Executable elm-doc
Main-is: Docs.hs
2013-06-14 05:59:14 +00:00
Hs-Source-Dirs: compiler
other-modules: SourceSyntax.Helpers,
SourceSyntax.Location,
SourceSyntax.Literal,
SourceSyntax.Pattern,
SourceSyntax.Expression,
SourceSyntax.Declaration,
SourceSyntax.Module,
SourceSyntax.Rename
Parse.Helpers,
Parse.Module
Build-depends: base >=4.2 && <5,
containers >= 0.3,
transformers >= 0.2,
mtl >= 2,
parsec >= 3.1.1,
pandoc >= 1.10,
pretty,
cmdargs,
2013-06-14 06:02:05 +00:00
filepath,
indents
Test-Suite test-elm
Type: exitcode-stdio-1.0
Hs-Source-Dirs: tests
Main-is: Everything.hs
build-depends: base