packages feed

aeson-picker-0.1.0.2: aeson-picker.cabal

name:           aeson-picker
version:        0.1.0.2
synopsis:       Tiny library to get fields from JSON format
description:    Tiny library to get fields from JSON format
homepage:       https://github.com/ozzzzz/aeson-picker#readme
bug-reports:    https://github.com/ozzzzz/aeson-picker/issues
author:         Bogdan Neterebskii
maintainer:     bog2dan1@gmail.com
copyright:      (c) 2018, Bogdan Neterebskii
stability:      experimental
category:       Text, Web, JSON
license:        BSD3
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10

extra-source-files:
    CHANGELOG.md
    README.md

source-repository head
  type: git
  location: https://github.com/ozzzzz/aeson-picker

library
  hs-source-dirs:   src
  exposed-modules:  Data.Aeson.Picker
  build-depends:    base >=4.7 && <5
                  , aeson >= 1.2 && < 1.3
                  , lens >= 4.15 && < 5
                  , lens-aeson >= 1.0 && < 1.1
                  , text >= 1.2 && < 1.3
  default-language: Haskell2010

test-suite aeson-picker-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  hs-source-dirs:  test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:   base >=4.7 && <5
                 , aeson-picker
                 , hspec >= 2.4 && < 2.5
                 , text
  default-language: Haskell2010