packages feed

glazier-react-0.2.0.0: glazier-react.cabal

name:                glazier-react
version:             0.2.0.0
synopsis:            ReactJS binding using Glazier and Pipes.Fluid
description:         ReactJS binding using Glazier and Pipes.Fluid, which is
                     more functional and composable than Elm/Flux.
homepage:            https://github.com/louispan/glazier-react#readme
license:             BSD3
license-file:        LICENSE
author:              Louis Pan
maintainer:          louis@pan.me
copyright:           2017 Louis Pan
category:            Web, FRP
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  js-sources:          jsbits/react.js
                       jsbits/registry.js
  exposed-modules:     Glazier.React.Command
                       Glazier.React.Command.Run
                       Glazier.React.Component
                       Glazier.React.Element
                       Glazier.React.Event
                       Glazier.React.Maker
                       Glazier.React.Maker.Run
                       Glazier.React.Markup
                       Glazier.React.ReactDOM
                       Glazier.React.Widget
  build-depends:       base >= 4.7 && < 5
                     , containers >= 0.5 && < 0.6
                     , deepseq >= 1.4 && < 1.5
                     , disposable >= 0.2 && < 1
                     , dlist >= 0.8 && < 0.9
                     , free >= 4.12 && < 5
                     , glazier >= 0.10 && < 1
                     , javascript-extras >= 0.2 && < 1
                     , lens >= 4 && < 5
                     , mmorph >= 1 && < 2
                     , mtl >= 2 && < 3
                     , pipes-concurrency >= 2 && < 3
                     , profunctors >= 5 && < 6
                     , semigroupoids >= 5 && < 6
                     , stm >= 2.4 && < 3
                     , text >= 1.2 && < 1.3
                     , transformers >= 0.4 && < 0.6
                     , unordered-containers >= 0.2.7 && < 0.3
  default-language:    Haskell2010
  default-extensions:  ApplicativeDo
  ghc-options:         -Wall
  if impl(ghcjs)
    build-depends: ghcjs-base
  if !impl(ghcjs)
    build-depends: ghcjs-base-stub >= 0.1.0.1 && < 1

source-repository head
  type:     git
  location: https://github.com/louispan/glazier-react