packages feed

ghcjs-perch-0.3.2: ghcjs-perch.cabal

name:                ghcjs-perch

-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             0.3.2

synopsis:            GHCJS version of Perch library.

description:         This package makes the creation of DOM elements easy
                     with a syntax similar to other Haskell HTML generators
                     such as `blaze-html`, using monoids and monads.

license:             MIT

license-file:        LICENSE

author:              Arthur S. Fayzrakhmanov

maintainer:          heraldhoi@gmail.com

copyright:           Copyright © 2015 Arthut S. Fayzrakhmanov. All rights reserved.

category:            Web

build-type:          Simple

-- Extra files to be distributed with the package, such as examples or a
-- README.
-- extra-source-files:

-- Constraint on the version of Cabal needed to build this package.
cabal-version:       >=1.10


library
  exposed-modules: GHCJS.Perch

  other-modules: Internal.API
                 Internal.FFI
                 Internal.Perch
                 Internal.Type

  -- LANGUAGE extensions used by modules in this package.
  -- other-extensions:

  build-depends:       base         >= 4.7     && < 4.9,
                       transformers >= 0.4.2.0 && < 0.5

  hs-source-dirs:      src

  default-language:    Haskell2010

  ghc-options: -Wall -fno-warn-unused-do-bind

  if impl(ghcjs >= 0.1)
     build-depends:       ghcjs-base