packages feed

glabrous-0.1.0.1: glabrous.cabal

name:                glabrous
version:             0.1.0.1
synopsis:            A template library
description:         A minimalistic, Mustache-like syntax, truly logic-less,
                     pure Text template library
homepage:            https://github.com/MichelBoucey/glabrous
license:             BSD3
license-file:        LICENSE
author:              Michel Boucey
maintainer:          michel.boucey@gmail.com
copyright:           2016 (c) Michel Boucey
category:            Text, Web
build-type:          Simple
cabal-version:       >=1.10

source-repository head
  type:     git
  location: https://github.com/MichelBoucey/glabrous

library
  hs-source-dirs:      src
  exposed-modules:     Text.Glabrous, Text.Glabrous.Types
  other-modules:       Text.Glabrous.Internal
  build-depends:       aeson >= 0.11
                     , aeson-pretty >= 0.7
                     , attoparsec >= 0.13
                     , base >= 4.7 && < 5
                     , bytestring >= 0.10.6
                     , either >= 4.4
                     , text >= 1.2
                     , unordered-containers >= 0.2
  default-language:    Haskell2010
  GHC-options:       -Wall

test-suite tests
  type:                exitcode-stdio-1.0
  hs-source-dirs:      tests
  main-is:             hspec.hs
  build-depends:       hspec >= 2.2.3
                     , base >= 4.7 && < 5
                     , directory >= 1.2
                     , either >= 4.4
                     , glabrous
                     , text >= 1.2
                     , unordered-containers >= 0.2
  default-language:    Haskell2010