packages feed

houseman-0.1.0: houseman.cabal

-- This file has been generated from package.yaml by hpack version 0.13.0.
--
-- see: https://github.com/sol/hpack

name:                houseman
version:             0.1.0
synopsis:            A Haskell implementation of Foreman
homepage:            https://github.com/fujimura/houseman#readme
bug-reports:         https://github.com/fujimura/houseman/issues
license:             MIT
license-file:        LICENSE
maintainer:          Daisuke Fujimura <me@fujmuradaisuke.com>
category:            Development
build-type:          Simple
cabal-version:       >= 1.10

source-repository head
  type: git
  location: https://github.com/fujimura/houseman

library
  hs-source-dirs:
      src
  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >= 4.7 && < 5
    , bytestring
    , text
    , unix
    , process
    , trifecta
    , parsers
    , time
    , optparse-generic >= 1.1.0
    , dotenv
    , directory
    , streaming-commons
    , mtl
    , io-streams
  exposed-modules:
      Houseman
      Houseman.Internal
      Houseman.Logger
      Houseman.Types
      Procfile.Parse
      Procfile.Types
  default-language: Haskell2010

executable houseman
  main-is: Main.hs
  hs-source-dirs:
      app
  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >= 4.7 && < 5
    , bytestring
    , text
    , unix
    , process
    , trifecta
    , parsers
    , time
    , optparse-generic >= 1.1.0
    , dotenv
    , directory
    , streaming-commons
    , mtl
    , io-streams
    , houseman
  default-language: Haskell2010

test-suite spec
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  hs-source-dirs:
      test
    , src
  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >= 4.7 && < 5
    , bytestring
    , text
    , unix
    , process
    , trifecta
    , parsers
    , time
    , optparse-generic >= 1.1.0
    , dotenv
    , directory
    , streaming-commons
    , mtl
    , io-streams
    , hspec == 2.*
    , temporary
    , silently
    , mockery >= 0.3
    , interpolate
    , QuickCheck
  other-modules:
      HousemanSpec
      Procfile.ParseSpec
      Houseman
      Houseman.Internal
      Houseman.Logger
      Houseman.Types
      Procfile.Parse
      Procfile.Types
  default-language: Haskell2010