-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-previews.cabal
More file actions
63 lines (57 loc) · 1.9 KB
/
github-previews.cabal
File metadata and controls
63 lines (57 loc) · 1.9 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
name: github-previews
version: 0.1.0.0
synopsis: Library for GitHub API previews
description:
A library for <https://developer.github.com/v3/previews/ API previews> from
GitHub's REST API v3. A word of caution: GitHub have stated that API previews
are not stable and may change without notice during the review period.
.
This is intended to supplement the
<http://hackage.haskell.org/package/github github> library and should follow
the standards set there wherever possible. As the API previews are promoted
to the official GitHub API they should be moved to the github library.
homepage: https://github.com/robbiemcmichael/github-previews
license: BSD3
license-file: LICENSE
author: Robbie McMichael
maintainer: Robbie McMichael
copyright: 2019 Robbie McMichael
category: Network
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
default-language: Haskell2010
hs-source-dirs: src
build-depends:
base >= 4.7
, aeson >= 1.4.0.0
, bytestring >= 0.10.4.0
, github >= 0.24 && < 0.25
, http-client >= 0.5.12
, tagged >= 0.8.5
, text >= 1.2.0.6
default-extensions:
DataKinds
DeriveDataTypeable
DeriveGeneric
OverloadedStrings
ScopedTypeVariables
other-extensions:
RecordWildCards
FlexibleInstances
MultiParamTypeClasses
exposed-modules:
GitHub.Previews
GitHub.Previews.Auth
GitHub.Previews.Data
GitHub.Previews.Data.Apps
GitHub.Previews.Data.CheckRuns
GitHub.Previews.Data.CheckSuites
GitHub.Previews.Data.Request
GitHub.Previews.Data.Webhooks
GitHub.Previews.Endpoints.Apps
GitHub.Previews.Endpoints.Checks.CheckRuns
source-repository head
type: git
location: https://github.com/robbiemcmichael/github-previews