packages feed

translate-cli-1.0.0.0: translate-cli.cabal

name:                translate-cli
version:             1.0.0.0
synopsis:            Translation cli tool
description:         Translation cli tool
homepage:            https://github.com/andys8/translate-cli#readme
license:             MIT
license-file:        LICENSE
author:              andys8
maintainer:          as@99n.de
copyright:           2017
category:            Cli
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Lib
                     , Model
  build-depends:       base >= 4.7 && < 5
                     , wreq
                     , lens
                     , text
                     , aeson
                     , aeson-lens
  default-language:    Haskell2010

executable translate
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -dynamic -rtsopts -with-rtsopts=-N
  build-depends:       base
                     , translate-cli
                     , turtle
                     , text
  default-language:    Haskell2010

test-suite translate-cli-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , translate-cli
                     , HUnit
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/andys8/translate-cli