packages feed

aeson-tiled-0.0.0.1: aeson-tiled.cabal

name:                aeson-tiled
version:             0.0.0.1
synopsis:            Aeson instances for the Tiled map editor.
description:         The mighty Tiled 2d map editor is an open source
                     app for creating tile based level maps. This package provides
                     types and aeson instances to read Tiled json files.
homepage:            https://github.com/schell/aeson-tiled#readme
license:             BSD3
license-file:        LICENSE
author:              Schell Scivally
maintainer:          schell@takt.com
copyright:           Copyright: (c) 2017 Schell Scivally
category:            Game
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Data.Aeson.Tiled
  build-depends:       base >= 4.7 && < 5
                     , bytestring >= 0.10
                     , aeson >= 1.1
                     , containers >= 0.5
                     , text >= 1.2
                     , vector >= 0.12
  default-language:    Haskell2010

executable aeson-tiled-exe
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base
                     , aeson-tiled
  default-language:    Haskell2010

test-suite aeson-tiled-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , aeson >= 1.1
                     , aeson-tiled
                     , hspec
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/schell/aeson-tiled