packages feed

haskmon-0.2.2.0: haskmon.cabal

name: haskmon
version: 0.2.2.0
cabal-version: >=1.10
build-type: Simple
license: MIT
license-file: LICENSE
maintainer: P.J.Rodriguez.T@gmail.com
synopsis: A haskell wrapper for PokeAPI.co (www.pokeapi.co)
description:
    This is a haskell wrapper for the RESTful api www.pokeapi.co.
    It defines most of the types and functions in the API.
category: Web, Game
author: Pedro Rodriguez

source-repository head
    type: git
    location: https://github.com/pjrt/Haskmon.git

library
    exposed-modules:
        Haskmon
        Haskmon.Client
        Haskmon.Resource
        Haskmon.Types
        Haskmon.Types.Internals
    build-depends:
        base >=4.8 && <4.9,
        http-streams ==0.8.*,
        bytestring >=0.10.0.2 && <0.11,
        io-streams ==1.3.*,
        aeson >=0.8 && <0.10,
        time ==1.5.*,
        vector >=0.10 && <0.12,
        containers >=0.5.5.1 && <0.6
    default-language: Haskell2010
    hs-source-dirs: src
    other-modules:
        Haskmon.Types.Game
        Haskmon.Types.Move
        Haskmon.Types.Type
        Haskmon.Types.Sprite
        Haskmon.Types.Ability
        Haskmon.Types.Pokemon
        Haskmon.Types.MetaData
        Haskmon.Types.EggGroup
        Haskmon.Types.Description
        Haskmon.Types.Evolutions
    ghc-options: -Wall