lish/lish.cabal

88 lines
2.6 KiB
Text
Raw Normal View History

2017-02-18 16:57:37 +00:00
name: lish
version: 0.1.0.0
-- synopsis:
description: LISP Shell written in Haskell
license: ISC
license-file: LICENSE
author: Yann Esposito
maintainer: yann.esposito@gmail.com
copyright: © 2017 Yann Esposito
homepage: https://github.com/yogsototh/lish
bug-reports: https://github.com/yogsototh/lish/issues
category: Test
build-type: Simple
stability: alpha (experimental)
cabal-version: >=1.10
extra-source-files:
README.md
stack.yaml
source-repository head
type: git
location: https://github.com/yogsototh/lish
library
default-language: Haskell2010
ghc-options: -Wall -Werror -O2
hs-source-dirs: src
exposed-modules: Lib
, Lish.Core
2017-02-20 22:26:21 +00:00
, Lish.Eval
2017-02-20 21:14:28 +00:00
, Lish.InternalCommands
, Lish.Parser
, Lish.Types
2017-02-18 16:57:37 +00:00
build-depends: base >= 4.8 && < 5
, containers
2017-02-18 16:57:37 +00:00
, haskeline
, parsec >= 3 && < 4
2017-02-20 07:54:28 +00:00
, pipes
2017-02-18 16:57:37 +00:00
, protolude
, process
2017-02-20 15:42:29 +00:00
, text
2017-02-18 16:57:37 +00:00
executable lish-exe
default-language: Haskell2010
ghc-options: -Wall -Werror -O2 -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: src-exe
main-is: Main.hs
build-depends: base >= 4.8 && < 5
, lish
test-suite lish-test
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -Wall -Werror -O2 -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: src-test
2017-02-27 07:54:54 +00:00
exposed-modules: Lish.Test.Parser
2017-02-18 16:57:37 +00:00
main-is: Main.hs
build-depends: base >= 4.8 && < 5
, tasty >= 0.11
, tasty-hunit >= 0.9
, tasty-smallcheck >= 0.8
, lish
test-suite lish-doctest
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -Wall -Werror -O2 -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: src-doctest
main-is: Main.hs
build-depends: base >= 4.8 && < 5
, doctest >=0.10
, Glob >= 0.7
, QuickCheck >= 2.5
, lish
benchmark lish-benchmark
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -Wall -Werror -O2 -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: src-benchmark
main-is: Main.hs
build-depends: base >= 4.8 && < 5
, criterion >= 1.1
, lish