-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson-parser.cabal
42 lines (33 loc) · 928 Bytes
/
json-parser.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
cabal-version: 2.4
name: json-parser
version: 0.1.0.0
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
-- The license under which the package is released.
-- license:
author: Gustavo Mendes de Medeiros
maintainer: [email protected]
-- A copyright notice.
-- copyright:
-- category:
extra-source-files: CHANGELOG.md
library
hs-source-dirs: src
exposed-modules:
Parser
build-depends: base ^>=4.14.3.0
default-language: Haskell2010
test-suite json-parser
type: exitcode-stdio-1.0
main-is: Spec.hs
build-depends:
, base ^>=4.14.3.0
, json-parser
, tasty ^>= 1.4.2
, tasty-hunit ^>= 0.10.0.3
hs-source-dirs: test
default-language: Haskell2010