-
Notifications
You must be signed in to change notification settings - Fork 0
/
json-mask.cabal
57 lines (50 loc) · 1.13 KB
/
json-mask.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
cabal-version: 3.0
name: json-mask
version: 0.1.0.0
license: MIT
license-file: LICENSE
author: Josh Miller
maintainer: [email protected]
category: Web
synopsis: "Filter JSON without changing structure"
description:
"A simple library for filtering JSON using syntax inspired by Google's
Partial Response pattern. Field masks remove unnecessary values without
changing the structure of the JSON resource."
build-type: Simple
extra-doc-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: [email protected]:velveteer/json-mask.git
common warnings
ghc-options: -Wall
library
import: warnings
default-extensions:
LambdaCase
OverloadedStrings
exposed-modules: JSONMask
build-depends:
aeson >=2.1,
attoparsec >=0.14.4,
base >=4.17.2.1,
lens >=5.2.3,
lens-aeson >=1.2.3,
text >=2.0,
hs-source-dirs: src
default-language: GHC2021
test-suite json-mask-test
import: warnings
default-language: GHC2021
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
aeson,
base,
json-mask,
tasty ^>=1.5,
tasty-hunit ^>=0.10.1,
text,