forked from cuedo/github-webhooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-webhooks.cabal
More file actions
69 lines (64 loc) · 1.99 KB
/
github-webhooks.cabal
File metadata and controls
69 lines (64 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
-- This file has been generated from package.yaml by hpack version 0.21.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 5615459135d4ff74ceec05176fb1708f3f5c7b50dd4184b4d462e62af6bbdb17
name: github-webhooks
version: 0.9.0
synopsis: Aeson instances for GitHub Webhook payloads.
description: Complete instances for decoding GitHub Webhook payloads (using @aeson@). See the README at <https://github.com/onrock-eng/github-webhooks#readme> for examples.
category: GitHub
homepage: https://github.com/onrock-eng/github-webhooks#readme
bug-reports: https://github.com/onrock-eng/github-webhooks/issues
author: Kyle Van Berendonck <kyle.vanberendonck@onrock.engineering>
maintainer: Kyle Van Berendonck <foss@onrock.engineering>
copyright: (c) 2017-2018 OnRock Engineering
license: MIT
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
CHANGELOG.md
package.yaml
stack.yaml
source-repository head
type: git
location: https://github.com/onrock-eng/github-webhooks
library
hs-source-dirs:
src
default-extensions: DeriveDataTypeable DeriveGeneric OverloadedStrings
ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates
build-depends:
aeson
, base ==4.*
, deepseq
, deepseq-generics
, text
, time
, vector
exposed-modules:
GitHub.Data.Webhooks.Events
GitHub.Data.Webhooks.Payload
other-modules:
Paths_github_webhooks
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
spec
default-extensions: DeriveDataTypeable DeriveGeneric OverloadedStrings ScopedTypeVariables
ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates
build-depends:
aeson
, base ==4.*
, bytestring
, github-webhooks
, hspec ==2.*
, text
, vector
other-modules:
DecodeEventsSpec
Paths_github_webhooks
default-language: Haskell2010