packages feed

werewolf-0.4.4.0: werewolf.cabal

name:           werewolf
version:        0.4.4.0

author:         Henry J. Wylde
maintainer:     public@hjwylde.com
homepage:       https://github.com/hjwylde/werewolf

synopsis:       A game engine for running werewolf in a chat client
description:    This engine is based off of Werewolves of Millers Hollow
                (http://www.games-wiki.org/wiki/Werewolves_of_Millers_Hollow/).
                See https://github.com/hjwylde/werewolf for help on writing chat interfaces.

license:        BSD3
license-file:   LICENSE

cabal-version:  >= 1.10
category:       Game
build-type:     Simple

extra-source-files: CHANGELOG.md README.md

source-repository head
    type:       git
    location:   git@github.com:hjwylde/werewolf

executable werewolf
    main-is:        Main.hs
    hs-source-dirs: app/
    ghc-options:    -threaded -with-rtsopts=-N
    other-modules:
        Werewolf.Commands.End,
        Werewolf.Commands.Heal,
        Werewolf.Commands.Help,
        Werewolf.Commands.Interpret,
        Werewolf.Commands.Pass,
        Werewolf.Commands.Ping,
        Werewolf.Commands.Poison,
        Werewolf.Commands.Protect,
        Werewolf.Commands.Quit,
        Werewolf.Commands.See,
        Werewolf.Commands.Start,
        Werewolf.Commands.Status,
        Werewolf.Commands.Vote,
        Werewolf.Options,
        Werewolf.Version,
        Paths_werewolf

    default-language: Haskell2010
    other-extensions:
        OverloadedStrings
    build-depends:
        aeson >= 0.8 && < 0.11,
        base >= 4.8 && < 5,
        directory == 1.2.*,
        extra == 1.4.*,
        filepath == 1.4.*,
        lens >= 4.12 && < 4.14,
        mtl == 2.2.*,
        optparse-applicative >= 0.11 && < 0.13,
        text == 1.2.*,
        transformers == 0.4.*,
        werewolf

library
    hs-source-dirs: src/
    exposed-modules:
        Game.Werewolf.Command,
        Game.Werewolf.Engine,
        Game.Werewolf.Game,
        Game.Werewolf.Player,
        Game.Werewolf.Response,
        Game.Werewolf.Role

    default-language: Haskell2010
    other-extensions:
        CPP,
        DeriveGeneric,
        FlexibleContexts,
        MultiParamTypeClasses,
        OverloadedStrings,
        RankNTypes,
        TemplateHaskell
    build-depends:
        aeson >= 0.8 && < 0.11,
        base >= 4.8 && < 5,
        containers == 0.5.*,
        directory == 1.2.*,
        extra == 1.4.*,
        filepath == 1.4.*,
        lens >= 4.12 && < 4.14,
        MonadRandom == 0.4.*,
        mtl == 2.2.*,
        random-shuffle,
        text == 1.2.*,
        transformers == 0.4.*

test-suite werewolf-test
    type:           exitcode-stdio-1.0
    main-is:        Main.hs
    hs-source-dirs: test/app/, test/src/
    ghc-options:    -threaded -with-rtsopts=-N
    other-modules:
        Game.Werewolf.Test.Arbitrary
        Game.Werewolf.Test.Command
        Game.Werewolf.Test.Engine
        Game.Werewolf.Test.Game
        Game.Werewolf.Test.Player
        Game.Werewolf.Test.Util

    default-language: Haskell2010
    other-extensions:
        OverloadedStrings
    build-depends:
        base >= 4.8 && < 5,
        containers == 0.5.*,
        extra == 1.4.*,
        lens >= 4.12 && < 4.14,
        mtl == 2.2.*,
        QuickCheck == 2.8.*,
        tasty >= 0.10 && < 0.12,
        tasty-quickcheck == 0.8.*,
        text == 1.2.*,
        werewolf