packages feed

text-zipper-0.13: text-zipper.cabal

name:                text-zipper
version:             0.13
synopsis:            A text editor zipper library
description:         This library provides a zipper and API for editing text.
license:             BSD3
license-file:        LICENSE
author:              Jonathan Daugherty <cygnus@foobox.com>
maintainer:          cygnus@foobox.com
copyright:           (c) 2015 Jonathan Daugherty
category:            Text
build-type:          Simple
cabal-version:       >=1.10
data-files:          CHANGELOG.md
homepage:            https://github.com/jtdaugherty/text-zipper/
bug-reports:         https://github.com/jtdaugherty/text-zipper/issues

Source-Repository head
  type:     git
  location: git://github.com/jtdaugherty/text-zipper.git

library
  exposed-modules:
    Data.Text.Zipper
    Data.Text.Zipper.Generic
    Data.Text.Zipper.Generic.Words

  other-modules:
    Data.Text.Zipper.Vector

  build-depends:       base < 5,
                       text,
                       vector,
                       deepseq
  ghc-options:         -Wall
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite text-zipper-tests
  type:                exitcode-stdio-1.0
  hs-source-dirs:      tests
  main-is:             Main.hs
  other-modules:       WordsSpec
  default-language:    Haskell2010
  build-depends:       base,
                       text,
                       hspec,
                       QuickCheck,
                       text-zipper