cabal-version: 1.12

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

name:           elminator
version:        0.0.0.0
synopsis:       Generate ELM types/encoders/decoders from Haskell types.
description:    Please see the README on GitHub at <https://github.com/sras/elminator#readme>
category:       Code Generation, Elm
author:         Sandeep.C.R
maintainer:     sandeep@sras.me
copyright:      2019 Sandeep.C.R
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/sras/elminator.git

library
  exposed-modules:
      Elminator
  other-modules:
      Elminator.Generics.Simple
      Elminator.ELM.CodeGen
      Elminator.Lib
      Elminator.Elm19
  hs-source-dirs:
      src
  ghc-options: -Wall
  build-depends:
      aeson
    , base >=4.7 && <5
    , containers
    , mtl
    , template-haskell
    , text
  default-language: Haskell2010

test-suite elminator-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_elminator
  hs-source-dirs:
      test
  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      aeson
    , base >=4.7 && <5
    , containers
    , elminator
    , mtl
    , template-haskell
    , text
  default-language: Haskell2010