purescript-0.5.6.3: purescript.cabal
name: purescript
version: 0.5.6.3
cabal-version: >=1.8
build-type: Custom
license: MIT
license-file: LICENSE
copyright: (c) 2013-14 Phil Freeman, (c) 2014 Gary Burgess, and other contributors
maintainer: Phil Freeman <paf31@cantab.net>
stability: experimental
synopsis: PureScript Programming Language Compiler
description: A small strongly, statically typed programming language with expressive types, inspired by Haskell and compiling to Javascript.
category: Language
Homepage: http://www.purescript.org/
author: Phil Freeman <paf31@cantab.net>,
Gary Burgess <gary.burgess@gmail.com>,
Hardy Jones <jones3.hardy@gmail.com>
data-files: prelude/prelude.purs
data-dir: ""
extra-source-files: examples/passing/*.purs
, examples/failing/*.purs
source-repository head
type: git
location: https://github.com/purescript/purescript.git
library
build-depends: base >=4 && <5, cmdtheline == 0.2.*, containers -any, unordered-containers -any,
directory >= 1.2, filepath -any, mtl >= 2.1.0 && < 2.3.0, parsec -any,
transformers >= 0.3 && < 0.5, utf8-string -any,
pattern-arrows >= 0.0.2 && < 0.1,
monad-unify >= 0.2.2 && < 0.3,
xdg-basedir -any, time -any
if (!os(windows))
build-depends: unix -any
exposed-modules: Language.PureScript
Language.PureScript.Constants
Language.PureScript.Options
Language.PureScript.Declarations
Language.PureScript.Environment
Language.PureScript.Errors
Language.PureScript.Kinds
Language.PureScript.Names
Language.PureScript.Supply
Language.PureScript.Types
Language.PureScript.Traversals
Language.PureScript.TypeClassDictionaries
Language.PureScript.DeadCodeElimination
Language.PureScript.Sugar
Language.PureScript.ModuleDependencies
Language.PureScript.Sugar.CaseDeclarations
Language.PureScript.Sugar.DoNotation
Language.PureScript.Sugar.TypeDeclarations
Language.PureScript.Sugar.BindingGroups
Language.PureScript.Sugar.Operators
Language.PureScript.Sugar.TypeClasses
Language.PureScript.Sugar.Names
Language.PureScript.CodeGen
Language.PureScript.CodeGen.Common
Language.PureScript.CodeGen.Externs
Language.PureScript.CodeGen.JS
Language.PureScript.CodeGen.JS.AST
Language.PureScript.Optimizer
Language.PureScript.Optimizer.Common
Language.PureScript.Optimizer.MagicDo
Language.PureScript.Optimizer.TCO
Language.PureScript.Optimizer.Inliner
Language.PureScript.Optimizer.Unused
Language.PureScript.Optimizer.Blocks
Language.PureScript.Parser
Language.PureScript.Parser.Common
Language.PureScript.Parser.Declarations
Language.PureScript.Parser.Kinds
Language.PureScript.Parser.State
Language.PureScript.Parser.Types
Language.PureScript.Pretty
Language.PureScript.Pretty.Common
Language.PureScript.Pretty.JS
Language.PureScript.Pretty.Kinds
Language.PureScript.Pretty.Types
Language.PureScript.Pretty.Values
Language.PureScript.Renamer
Language.PureScript.TypeChecker
Language.PureScript.TypeChecker.Kinds
Language.PureScript.TypeChecker.Monad
Language.PureScript.TypeChecker.Synonyms
Language.PureScript.TypeChecker.Types
exposed: True
buildable: True
hs-source-dirs: src
other-modules: Paths_purescript
ghc-options: -Wall -O2
executable psc
build-depends: base >=4 && <5, cmdtheline -any, containers -any,
directory -any, filepath -any, mtl -any, parsec -any,
purescript -any, transformers -any, utf8-string -any
main-is: Main.hs
buildable: True
hs-source-dirs: psc
other-modules:
ghc-options: -Wall -O2 -fno-warn-unused-do-bind
executable psc-make
build-depends: base >=4 && <5, cmdtheline -any, containers -any,
directory -any, filepath -any, mtl -any, parsec -any,
purescript -any, transformers -any, utf8-string -any
main-is: Main.hs
buildable: True
hs-source-dirs: psc-make
other-modules:
ghc-options: -Wall -O2 -fno-warn-unused-do-bind
executable psci
build-depends: base >=4 && <5, containers -any, directory -any, filepath -any,
mtl -any, parsec -any, haskeline >= 0.7.0.0, purescript -any,
transformers -any, utf8-string -any, process -any,
xdg-basedir -any, cmdtheline -any
main-is: Main.hs
buildable: True
hs-source-dirs: psci
other-modules: Commands
Parser
ghc-options: -Wall -O2
executable docgen
build-depends: base >=4 && <5, cmdtheline -any, purescript -any, utf8-string -any,
process -any, mtl -any
main-is: Main.hs
buildable: True
hs-source-dirs: docgen
other-modules:
ghc-options: -Wall -O2
executable hierarchy
build-depends: base >=4 && <5, cmdtheline -any, purescript -any, utf8-string -any,
process -any, mtl -any, parsec -any, filepath -any, directory -any
main-is: Main.hs
buildable: True
hs-source-dirs: hierarchy
other-modules:
ghc-options: -Wall -O2
test-suite tests
build-depends: base >=4 && <5, containers -any, directory -any,
filepath -any, mtl -any, parsec -any, purescript -any,
transformers -any, utf8-string -any, process -any
type: exitcode-stdio-1.0
main-is: Main.hs
buildable: True
hs-source-dirs: tests