-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.yaml
71 lines (64 loc) · 1.56 KB
/
package.yaml
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
70
71
name: github-webhooks
version: 0.17.0
category: GitHub
license: MIT
extra-source-files:
- package.yaml
- stack.yaml
- stack-*.yaml
- CHANGELOG.md
- fixtures/*.json
synopsis: Aeson instances for GitHub webhook payloads.
copyright: (c) 2017-2023 CUEDO CONTROLS P/L
author:
- Kyle Van Berendonck <kyle.vanberendonck@cuedo.com.au>
- Christian Sakai <christianmsakai@gmail.com>
- Thomas DuBuisson <thomas.dubuisson@gmail.com>
- Rob Berry
- Domen Kozar <domen@dev.si>
- Alistair Burrowes
- Matthew Bauer
- Julien Debon
- Robert Hensing
maintainer: Kyle Van Berendonck <foss@cuedo.com.au>
github: cuedo/github-webhooks
description:
Complete instances for decoding GitHub Webhook payloads (using @aeson@).
See the README at <https://github.com/cuedo/github-webhooks#readme> for examples.
Sponsored by <https://cuedo.com.au>.
flags:
ci:
description: A stricter build designed for continuous integration.
default: false
manual: true
when:
- condition: flag(ci)
ghc-options: -Wall -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates -ddump-to-file -ddump-hi
default-extensions:
- DeriveDataTypeable
- DeriveGeneric
- OverloadedStrings
dependencies:
- base == 4.*
- aeson
- bytestring
- text
- vector
library:
source-dirs: src
dependencies:
- base16-bytestring
- cryptonite
- deepseq
- deepseq-generics
- memory
- time
tests:
spec:
source-dirs: spec
main: Spec.hs
dependencies:
- github-webhooks
- hspec == 2.*
default-extensions:
- ScopedTypeVariables