forked from cuedo/github-webhooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.yaml
More file actions
51 lines (45 loc) · 1.06 KB
/
package.yaml
File metadata and controls
51 lines (45 loc) · 1.06 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
name: github-webhooks
version: 0.9.0
category: GitHub
license: MIT
extra-source-files:
- package.yaml
- stack.yaml
- CHANGELOG.md
synopsis: Aeson instances for GitHub Webhook payloads.
copyright: (c) 2017-2018 OnRock Engineering
author: Kyle Van Berendonck <kyle.vanberendonck@onrock.engineering>
maintainer: Kyle Van Berendonck <foss@onrock.engineering>
github: onrock-eng/github-webhooks
description:
Complete instances for decoding GitHub Webhook payloads (using @aeson@).
See the README at <https://github.com/onrock-eng/github-webhooks#readme> for examples.
ghc-options:
- -Wall
- -Wincomplete-uni-patterns
- -Wincomplete-record-updates
default-extensions:
- DeriveDataTypeable
- DeriveGeneric
- OverloadedStrings
dependencies:
- base == 4.*
- aeson
- text
- vector
library:
source-dirs: src
dependencies:
- deepseq
- deepseq-generics
- time
tests:
spec:
source-dirs: spec
main: Spec.hs
dependencies:
- github-webhooks
- hspec == 2.*
- bytestring
default-extensions:
- ScopedTypeVariables