name:                bower-json
version:             0.3.0.0
synopsis:            bower.json from Haskell
license:             MIT
license-file:        LICENSE
author:              Harry Garrood
maintainer:          harry@garrood.me
homepage:            https://github.com/hdgarrood/bower-json
category:            Web
build-type:          Simple
cabal-version:       >=1.10

description:
  This package provides a data type and FromJSON instance for bower.json
  package description files.

source-repository head
  type:     git
  location: https://github.com/hdgarrood/bower-json

library
  exposed-modules:   Web.BowerJson
  build-depends:     base >=4 && <5
                   , aeson >=0.6.1.0
                   , unordered-containers
                   , text
                   , bytestring

  ghc-options:       -Wall
  hs-source-dirs:    src
  default-language:  Haskell2010

test-suite tests
    type:            exitcode-stdio-1.0
    main-is:         Main.hs
    hs-source-dirs:  test
    build-depends:   base >=4 && <5
                   , bower-json -any
                   , aeson -any
                   , bytestring -any
                   , tasty -any
                   , tasty-hunit -any
  ghc-options:       -Wall
  default-language:  Haskell2010