packages feed

front-0.0.0.1: front.cabal

-- Initial front.cabal generated by cabal init.  For further documentation,
--  see http://haskell.org/cabal/users-guide/

name:                front
version:             0.0.0.1
synopsis:            A reactive frontend web framework
description:         A reactive frontend web framework. See haskell-front.org for more details.
homepage:            haskell-front.org
license:             BSD3
license-file:        LICENSE
author:              Andrey Prokopenko
maintainer:          persiantiger@yandex.ru
-- copyright:
category:            Web
build-type:          Simple
extra-source-files:  ChangeLog.md, README.md
cabal-version:       >=1.10

source-repository head
  type: git
  location: https://github.com/swamp-agr/front.git  
                     
library
  exposed-modules:     Text.Blaze.Front
                     , Text.Blaze.Front.Svg
                     , Text.Blaze.Front.Internal
                     , Text.Blaze.Front.Html5
                     , Text.Blaze.Front.Svg.Attributes
                     , Text.Blaze.Front.Html5.Attributes
                     , Text.Blaze.Front.Event
                     , Text.Blaze.Front.Renderer
                     -- shared
                     , Bridge
  -- other-modules:
  other-extensions:    FlexibleInstances, TypeSynonymInstances, OverloadedStrings, GeneralizedNewtypeDeriving, Rank2Types, ExistentialQuantification, DeriveDataTypeable, MultiParamTypeClasses, DeriveFunctor, FunctionalDependencies, ScopedTypeVariables
  build-depends:       base >=4.11 && <4.12
                     , text >=1.2 && <1.3
                     , bytestring >=0.10 && <0.11
                     , blaze-markup >=0.8 && <0.10
                     , blaze-html >=0.9 && <0.10
                     , fay >= 0.24.0.2
  hs-source-dirs:      src, shared
  default-language:    Haskell2010