packages feed

quickcheck-property-monad-0.1: quickcheck-property-monad.cabal

name:          quickcheck-property-monad
version:       0.1
license:       BSD3
cabal-version: >= 1.10
license-file:  LICENSE
author:        Benno Fünfstück
maintainer:    Benno Fünfstück <benno.fuenfstueck@gmail.com>
stability:     experimental
homepage:      http://github.com/bennofs/quickcheck-property-monad/
bug-reports:   http://github.com/bennofs/quickcheck-property-monad/issues
copyright:     Copyright (C) 2013 Benno Fünfstück
synopsis:      quickcheck-property-monad
description:   quickcheck-property-monad
build-type:    Custom
category:      Testing

extra-source-files:
  .ghci
  .gitignore
  .travis.yml
  .vim.custom
  README.md

source-repository head
  type: git
  location: https://github.com/bennofs/quickcheck-property-monad.git

library
  hs-source-dirs: src
  default-language: Haskell2010
  ghc-options: -Wall
  build-depends:
      base >= 4.4 && < 5
    , either
    , transformers
    , QuickCheck
  exposed-modules:
      Test.QuickCheck.Property.Monad

test-suite doctests
  type:    exitcode-stdio-1.0
  main-is: doctests.hs
  default-language: Haskell2010
  build-depends:
      base
    , directory >= 1.0
    , doctest >= 0.9.1
    , filepath
  ghc-options: -Wall -threaded
  if impl(ghc<7.6.1)
    ghc-options: -Werror
  hs-source-dirs: tests