packages feed

text-zipper-monad-0.2.0.0: text-zipper-monad.cabal

name:                text-zipper-monad
version:             0.2.0.0
synopsis:            Monadic interface to the text-zipper package
description:         Please see README.md
homepage:            https://github.com/kseo/text-zipper-monad#readme
license:             BSD3
license-file:        LICENSE
author:              Kwang Yul Seo
maintainer:          kwangyul.seo@gmail.com
copyright:           BSD3
category:            Text
build-type:          Simple
extra-source-files:  README.md
                   , CHANGELOG.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Data.Text.Zipper.Edit
  build-depends:       base >= 4.7 && < 5
                     , mtl >= 2.2 && < 2.3
                     , text-zipper >= 0.5 && < 0.6
  default-language:    Haskell2010

test-suite text-zipper-monad-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , hspec
                     , text-zipper
                     , text-zipper-monad
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/kseo/text-zipper-monad