packages feed

herringbone-0.0.2: herringbone.cabal

name:                herringbone
version:             0.0.2
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

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

test-suite herringbone-tests
  type:                 exitcode-stdio-1.0
  main-is:              Spec.hs
  hs-source-dirs:       test .
  ghc-options:          -Wall
  build-depends:        base >=4.6 && <4.7,
                        wai  >= 2.0 && <3,
                        wai-app-static,
                        text,
                        bytestring,
                        containers,
                        system-filepath,
                        system-fileio,
                        directory,
                        unix-compat,
                        http-types,
                        time,
                        old-locale,
                        hspec,
                        HUnit,
                        warp
  default-extensions:   OverloadedStrings,
                        TypeSynonymInstances,
                        FlexibleInstances,
                        RankNTypes
  default-language:     Haskell2010

library
  ghc-options:          -Wall
  exposed-modules:      Web.Herringbone
  other-modules:        Web.Herringbone.Types
                        Web.Herringbone.Configuration
                        Web.Herringbone.LocateAssets
                        Web.Herringbone.BuildAsset
                        Web.Herringbone.FindAsset
                        Web.Herringbone.Adapter.Wai
  build-depends:        base >=4.6 && <4.7,
                        wai  >= 2.0 && <3,
                        wai-app-static,
                        text,
                        bytestring,
                        containers,
                        system-filepath,
                        system-fileio,
                        directory,
                        unix-compat,
                        http-types,
                        time,
                        old-locale
  default-extensions:   OverloadedStrings,
                        TypeSynonymInstances,
                        FlexibleInstances,
                        RankNTypes
  default-language:     Haskell2010