packages feed

jsonxlsx-0.1.0.1: jsonxlsx.cabal

name:                jsonxlsx
version:             0.1.0.1
synopsis:            json to xlsx converter
description:         json to xlsx converter
category:            Text
author:              Daniel Choi
maintainer:          Mackey RMS
bug-reports:         https://github.com/mackeyrms/jsonxlsx/issues
homepage:            https://github.com/mackeyrms/jsonxlsx#readme
build-type:          Simple
tested-with:         GHC == 8.0.2
cabal-version:       >=1.10
extra-source-files:  README.md
license:             MIT
license-file:        LICENSE
-- copyright:           

source-repository head
  type:     git
  location: https://github.com/mackeyrms/jsonxlsx

executable jsonxlsx
  main-is:             Main.hs
  build-depends:       base >=4.6 && < 5
                     , xlsx == 0.4.1
                     , containers
                     , old-time
                     , time
                     , bytestring
                     , aeson >= 0.8.0.1
                     , attoparsec
                     , unordered-containers
                     , string-qq
                     , optparse-applicative
                     , vector
                     , scientific >= 0.3.3
                     , HUnit
                     , text
  default-language:    Haskell2010