name: genvalidity-aeson
version: 0.1.0.0
cabal-version: >=1.10
build-type: Simple
license: MIT
license-file: LICENSE
copyright: Copyright: (c) 2017 Tom Sydney Kerckhove
maintainer: syd.kerckhove@gmail.com
homepage: https://github.com/NorfairKing/validity#readme
synopsis: GenValidity support for aeson
description:
    Please see README.md
category: Testing
author: Tom Sydney Kerckhove

source-repository head
    type: git
    location: https://github.com/NorfairKing/validity

library
    exposed-modules:
        Data.GenValidity.Aeson
    build-depends:
        base <5,
        QuickCheck -any,
        genvalidity >=0.4 && <0.5,
        validity >=0.4 && <0.5,
        validity-aeson >=0.1 && <0.2,
        genvalidity-text >=0.4 && <0.5,
        genvalidity-vector >=0.1 && <0.2,
        genvalidity-unordered-containers >=0.1 && <0.2,
        genvalidity-scientific >=0.1 && <0.2,
        aeson -any
    default-language: Haskell2010
    hs-source-dirs: src

test-suite genvalidity-aeson-test
    type: exitcode-stdio-1.0
    main-is: Spec.hs
    build-depends:
        base >=4.9 && <=5,
        genvalidity -any,
        genvalidity-hspec -any,
        genvalidity-aeson -any,
        hspec >=2.2 && <2.5,
        aeson -any
    default-language: Haskell2010
    hs-source-dirs: test/
    other-modules:
        Test.Validity.AesonSpec
    ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall