schematic-0.1.5.0: schematic.cabal
-- Initial schematic.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: schematic
version: 0.1.5.0
synopsis: JSON-biased spec and validation tool
-- description:
license: BSD3
license-file: LICENSE
author: Denis Redozubov
maintainer: denis.redozubov@gmail.com
-- copyright:
category: Data
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
exposed-modules: Data.Schematic
, Data.Schematic.Instances
, Data.Schematic.Lens
, Data.Schematic.Migration
, Data.Schematic.Path
, Data.Schematic.Schema
, Data.Schematic.Validation
, Data.Schematic.Utils
ghc-options: -Wall
-- other-modules:
default-extensions: ConstraintKinds
, DataKinds
, DefaultSignatures
, DeriveFunctor
, DeriveFoldable
, DeriveGeneric
, DeriveDataTypeable
, FlexibleContexts
, FlexibleInstances
, FunctionalDependencies
, GADTs
, KindSignatures
, InstanceSigs
, LambdaCase
, MultiParamTypeClasses
, OverloadedLists
, OverloadedStrings
, PolyKinds
, QuasiQuotes
, PartialTypeSignatures
, RankNTypes
, RecordWildCards
, StandaloneDeriving
, ScopedTypeVariables
, TemplateHaskell
, TypeApplications
, TypeFamilies
, TypeFamilyDependencies
, TypeInType
, TypeOperators
, TypeSynonymInstances
, UndecidableInstances
build-depends: base >=4.9 && <4.10
, bytestring
, aeson >= 1
, regex-compat
, scientific
, singletons
, smallcheck
, smallcheck-series
, tagged
, text
, unordered-containers
, validationt >= 0.1.0.1
, vector
, vinyl
hs-source-dirs: src
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
default-language: Haskell2010
default-extensions: ConstraintKinds
, DataKinds
, DeriveFunctor
, DeriveFoldable
, DeriveGeneric
, DeriveDataTypeable
, FlexibleContexts
, FlexibleInstances
, FunctionalDependencies
, GADTs
, KindSignatures
, InstanceSigs
, MultiParamTypeClasses
, OverloadedLists
, OverloadedStrings
, PolyKinds
, QuasiQuotes
, PartialTypeSignatures
, RecordWildCards
, ScopedTypeVariables
, TemplateHaskell
, TypeApplications
, TypeFamilies
, TypeInType
, TypeOperators
, TypeSynonymInstances
build-depends: HUnit
, aeson >= 1
, base >=4.9 && <4.10
, bytestring
, hspec >= 2.2.0
, hspec-core
, hspec-discover
, hspec-smallcheck
, lens
, regex-compat
, schematic
, smallcheck
, smallcheck-series
, singletons
, tagged
, text
, unordered-containers
, validationt >= 0.1.0.1
, vinyl
other-modules: SchemaSpec
, LensSpec