-
Notifications
You must be signed in to change notification settings - Fork 0
/
json-fmt.cabal
74 lines (65 loc) · 1.58 KB
/
json-fmt.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
cabal-version: 3.0
name: json-fmt
version: 0.1.0.0
synopsis: A comma-leading style formatter for JSON
description:
json-fmt is a comma-leading style JSON formatter inspired by Haskell comma-leading style.
bug-reports: https://github.com/Futarimiti/json-fmt/issues
author: Futar
maintainer: Futarimiti@163.com
category: JSON
build-type: Simple
extra-doc-files: README.md
data-dir: resources
common warnings
ghc-options: -Wall -Wmonomorphism-restriction
common extensions
default-extensions:
DeriveAnyClass
LambdaCase
PatternSynonyms
RecordWildCards
StrictData
TypeFamilies
ViewPatterns
executable json-fmt
import: warnings, extensions
main-is: Main.hs
other-modules:
Action
Config
Options
Read
build-depends:
, base ^>=4.17.2.1
, bytestring
, data-default
, directory
, json-fmt
, monad-logger
, mtl
, optparse-applicative
, text
hs-source-dirs: app
default-language: GHC2021
library
import: warnings, extensions
exposed-modules: Text.JSON.Pretty.CommaFirst
other-modules:
Text.JSON.Pretty.CommaFirst.Array
Text.JSON.Pretty.CommaFirst.Config
Text.JSON.Pretty.CommaFirst.Object
Text.JSON.Pretty.CommaFirst.Util
hs-source-dirs: lib
build-depends:
, aeson
, base ^>=4.17.2.1
, bytestring
, data-default
, json
, lens
, mtl
, prettyprinter
, prettyprinter-combinators
, transformers
default-language: GHC2021