-
Notifications
You must be signed in to change notification settings - Fork 11
/
dfm-to-json.cabal
72 lines (67 loc) · 1.72 KB
/
dfm-to-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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: e9d30c587cce073d8978f95ba182e0b22f729d599ef9a3b6f68c4becd3ef6892
name: dfm-to-json
version: 1.0.0.0
description: Please see the README on GitHub at <https://github.com/jean-lopes/dfm-to-json#readme>
homepage: https://github.com/jean-lopes/dfm-to-json#readme
bug-reports: https://github.com/jean-lopes/dfm-to-json/issues
author: Jean Carlo Giambastiani Lopes
maintainer: author[0] `dot` author[3] `at` hotmail `dot` com `dot` br
copyright: 2019 Jean Carlo Giambastiani Lopes
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/jean-lopes/dfm-to-json
library
exposed-modules:
AST
Parser
other-modules:
Paths_dfm_to_json
hs-source-dirs:
src
build-depends:
aeson
, aeson-pretty
, base >=4.7 && <5
, bytestring
, directory
, filepath
, megaparsec
, mtl
, optparse-simple
, parser-combinators
, pipes
, text
default-language: Haskell2010
executable dfm-to-json
main-is: Main.hs
other-modules:
Paths_dfm_to_json
hs-source-dirs:
app
ghc-options: -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates -O2 -threaded -rtsopts -with-rtsopts=-N
build-depends:
aeson
, aeson-pretty
, base >=4.7 && <5
, bytestring
, dfm-to-json
, directory
, filepath
, megaparsec
, mtl
, optparse-simple
, parser-combinators
, pipes
, text
default-language: Haskell2010