lish/package.yaml

71 lines
1.4 KiB
YAML
Raw Normal View History

2017-03-15 22:11:03 +00:00
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
2017-04-06 08:21:53 +00:00
ghc-options: -Wall -O2
2017-03-15 22:11:03 +00:00
dependencies:
- base >= 4.8 && < 5
- containers
- data-fix
- haskeline
- parsec >= 3 && < 4
- pipes
- protolude
2017-04-11 21:49:19 +00:00
- pretty
- pretty-show
2017-03-15 22:11:03 +00:00
- process
- text
library:
source-dirs: src
executables:
lish:
2017-04-06 08:21:53 +00:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N
2017-03-15 22:11:03 +00:00
main: Main.hs
source-dirs: src-exe
dependencies:
- lish
tests:
lish-test:
source-dirs: src-test
main: Main.hs
2017-04-06 08:21:53 +00:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N
2017-03-15 22:11:03 +00:00
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
2017-04-06 08:21:53 +00:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N
2017-03-15 22:11:03 +00:00
dependencies:
- lish
- base >= 4.8 && < 5
- doctest >=0.10
- Glob >= 0.7
- QuickCheck >= 2.5
lish-benchmark:
source-dirs: src-benchmark
main: Main.hs
2017-04-06 08:21:53 +00:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N
2017-03-15 22:11:03 +00:00
dependencies:
- lish
- base >= 4.8 && < 5
- criterion >= 1.1