-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-joiner-json.cabal
80 lines (68 loc) · 1.91 KB
/
config-joiner-json.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
name: config-joiner-json
version: 0.0.1.0
synopsis: A library and binary for managing multiple JSON config files.
-- description:
homepage: https://github.com/jhmcstanton/config-joiner-json#readme
license: BSD3
license-file: LICENSE
author: Jim McStanton
maintainer: [email protected]
copyright: 2018 Jim McStanton
category:
Configuration,
JSON
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
library
ghc-options: -Wall -Werror
hs-source-dirs: lib
default-language: Haskell2010
exposed-modules:
Config.JSON
Config.JSON.Bytes
Config.JSON.Join
Config.JSON.IO
Config.JSON.Types
build-depends:
aeson,
base >= 4.7 && < 5,
bytestring,
hashable,
unordered-containers
default-extensions:
DataKinds
NoImplicitPrelude
executable config-joiner-json
hs-source-dirs: src
ghc-options: -Wall -Werror
main-is: Main.hs
default-language: Haskell2010
build-depends:
base >= 4.7 && < 5,
config-joiner-json,
directory,
filepath,
optparse-applicative
other-modules:
Config.JSON.Options.Parse
default-extensions:
NoImplicitPrelude
test-suite test-config-joiner-json
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: TestSuite.hs
ghc-options: -Wall -Werror -threaded
default-language: Haskell2010
other-modules:
Config.JSON.TestTypes
Config.JSON.Types.Tests
build-depends:
base,
bytestring,
config-joiner-json,
tasty,
tasty-hunit,
unordered-containers
default-extensions:
NoImplicitPrelude