aeson-yak-0.1.0.0: aeson-yak.cabal
-- Initial aeson-yak.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: aeson-yak
version: 0.1.0.0
synopsis: Handle JSON that may or may not be a list, or exist
description:
According to the standard promoted by Schema.org, the following are all
legally the same object:
\{ field: [data1, data2] }
\{ field: data }
\{ }
This library provides an intermediary data type and supporting functions to
help aeson parse and output JSON conforming to this frustrating standard.
homepage: https://github.com/tejon/aeson-yak
license: MIT
license-file: LICENSE
author: Theodore Lief Gannon
maintainer: tanuki@gmail.com
copyright: Copyright (c) Theodore Lief Gannon, 2015
category: Data
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/tejon/aeson-yak
library
exposed-modules: Data.Aeson.Yak
-- other-modules:
-- other-extensions:
build-depends: base >=4.8 && <4.9
, aeson >= 0.4 && < 0.11
hs-source-dirs: src
default-language: Haskell2010