packages feed

github-post-receive-1.2.0.1: github-post-receive.cabal

name:                github-post-receive
version:             1.2.0.1
synopsis:            GitHub webhooks library
description:         This is a library to construct github webhooks servers.
                     .
                     Currently, this library supports following events:
                     .
                     * push
                     .
                     * status
homepage:            https://github.com/amutake/github-post-receive
license:             BSD3
license-file:        LICENSE
author:              Shohei Yasutake
maintainer:          Shohei Yasutake <amutake.s@gmail.com>
copyright:           Copyright (C) 2013 Shohei Yasutake
category:            Web
build-type:          Simple
cabal-version:       >=1.10

source-repository head
  type:              git
  location:          git://github.com/amutake/github-post-receive.git

library
  exposed-modules:   Github.PostReceive
                   , Github.PostReceive.Types
                   , Github.PostReceive.Server
  hs-source-dirs:    src
  build-depends:     base ==4.*
                   , bytestring >=0.10
                   , text >=0.11
                   , containers
                   , aeson >=0.6.1
                   , email-validate >=1.0
                   , http-types >=0.8
                   , wai ==3.*
                   , warp >=3.0.1 && < 4
                   , wai-logger ==2.*
  ghc-options:       -Wall -fno-warn-orphans -fno-warn-unused-do-bind
  default-language:  Haskell2010