packages feed

herringbone-0.1.0: herringbone.cabal

name:                herringbone
version:             0.1.0
synopsis:            A library for compiling and serving static web assets.
description:         A library for compiling and serving static web assets. For more information, please see <https://github.com/hdgarrood/herringbone>.
license:             MIT
license-file:        LICENSE
author:              Harry Garrood
maintainer:          harry@garrood.me
category:            Web
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:
    README.md

source-repository head
  type:     git
  location: https://github.com/hdgarrood/herringbone

library
  ghc-options:          -Wall
  exposed-modules:      Web.Herringbone,
                        Web.Herringbone.Preprocessor.StdIO
                        Web.Herringbone.Preprocessor.Sass
                        Web.Herringbone.Preprocessor.CoffeeScript
                        Web.Herringbone.Internal.Types
                        Web.Herringbone.Internal.Configuration
                        Web.Herringbone.Internal.GetBuildMapping
                        Web.Herringbone.Internal.BuildAsset
                        Web.Herringbone.Internal.FindAsset
                        Web.Herringbone.Internal.Utils
  build-depends:        base >=4.5 && <5,
                        text,
                        bytestring,
                        containers,
                        transformers,
                        mtl,
                        system-filepath,
                        system-fileio,
                        process,
                        process-listlike,
                        directory,
                        unix-compat,
                        http-types,
                        time,
                        old-locale
  default-extensions:   OverloadedStrings,
                        TypeSynonymInstances,
                        FlexibleInstances,
                        RankNTypes,
                        ViewPatterns,
                        GeneralizedNewtypeDeriving
  default-language:     Haskell2010