lish/package.yaml
Yann Esposito (Yogsototh) 05ad021c99
tests and benchmarks cleanup
2019-09-07 14:13:04 +02:00

71 lines
1.4 KiB
YAML

name: lish
version: 0.1.0.0
synopsis: LISP flavoured shell
description: See README.md at <https://github.com/yogsototh/lish#readme>
maintainer: Yann Esposito <yann.esposito@gmail.com>
license: PublicDomain
github: yogsototh/lish
category: Development
extra-source-files:
- README.md
- stack.yaml
ghc-options: -Wall -O2
dependencies:
- base >= 4.8 && < 5
- containers
- data-fix
- haskeline
- parsec >= 3 && < 4
- pipes
- protolude
- pretty
- pretty-show
- process
- text
library:
source-dirs: src
executables:
lish:
ghc-options: -threaded -rtsopts -with-rtsopts=-N
main: Main.hs
source-dirs: src-exe
dependencies:
- lish
tests:
lish-test:
source-dirs: src-test
main: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
dependencies:
- lish
- base >= 4.8 && < 5
- tasty >= 0.11
- tasty-hunit >= 0.9
- tasty-smallcheck >= 0.8
- protolude
- data-fix
lish-doctest:
source-dirs: src-doctest
main: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
dependencies:
- lish
- base >= 4.8 && < 5
- doctest >=0.10
- Glob >= 0.7
- QuickCheck >= 2.5
benchmarks:
lish-benchmark:
source-dirs: src-benchmark
main: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
dependencies:
- lish
- base >= 4.8 && < 5
- criterion >= 1.1