packages feed

jsonxlsx-0.1.0.0: jsonxlsx.cabal

name:                jsonxlsx
version:             0.1.0.0
synopsis:            json to xlsx converter
description:         json to xlsx converter
license:             MIT
license-file:        LICENSE
author:              Daniel Choi
maintainer:          librarymaintainer@mackeycorp.com
-- copyright:           
category:            Text
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

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

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