-
Notifications
You must be signed in to change notification settings - Fork 1
/
aeson-like.cabal
86 lines (78 loc) · 1.69 KB
/
aeson-like.cabal
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
cabal-version: 2.2
name: aeson-like
version: 0.1.0.0
synopsis: Easy API interop
description:
A collection of helpers that make working with typical JSON APIs simpler and
easier.
homepage: https://github.com/jmackie/aeson-like
bug-reports: https://github.com/jmackie/aeson-like/issues
license: BSD-3-Clause
license-file: LICENSE
author: Jordan Mackie
maintainer: jordan.mackie@habito.com
copyright: (c) 2019 Jordan Mackie
category: Network
extra-source-files:
README.md
tested-with:
GHC==8.6.4
source-repository head
type: git
location: git://github.com/jmackie/aeson-like.git
library
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: src
exposed-modules:
Data.Aeson.ObjectLike
Data.Aeson.EnumLike
Data.Aeson.SomethingLike
build-depends:
base ^>=4.12.0.0,
aeson,
hashable,
text,
unordered-containers,
test-suite unit
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules:
Data.Aeson.ObjectLike.Tests
Data.Aeson.EnumLike.Tests
build-depends:
base ^>=4.12.0.0,
aeson-like,
tasty,
tasty-hunit,
aeson,
bytestring,
doctest,
test-suite doc
default-language: Haskell2010
ghc-options: -Wall
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Doc.hs
build-depends:
base,
doctest,
test-suite readme
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: README.lhs
ghc-options:
-pgmL markdown-unlit -Wall
build-depends:
base,
aeson,
aeson-like,
text,
bytestring,
http-client,
http-client-tls,
build-tool-depends:
markdown-unlit:markdown-unlit