-
Notifications
You must be signed in to change notification settings - Fork 1
/
nrs-parser.cabal
87 lines (78 loc) · 2.24 KB
/
nrs-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
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
81
82
83
84
85
86
87
cabal-version: 2.2
name: nrs-parser
version: 0.1.0.0
synopsis: Scraper and parser for the Nevada Revised Statutes
description: Please see README.md
homepage: https://github.com/public-law/nevada-revised-statutes-parser#readme
author: Robb Shecter
maintainer: [email protected]
copyright: All rights reserved
category: Web
build-type: Simple
extra-source-files: README.md
common options
default-extensions: NoImplicitPrelude, UnicodeSyntax, DeriveGeneric, DuplicateRecordFields, FlexibleContexts, GeneralizedNewtypeDeriving, MultiWayIf, OverloadedStrings, QuasiQuotes
default-language: Haskell2010
ghc-options: -rtsopts -Werror -Wall -Wimplicit-prelude -Wincomplete-uni-patterns -Wincomplete-record-updates -Wcompat -Wredundant-constraints -Wno-type-defaults
common deps
build-depends:
base >= 4.7 && < 5,
aeson,
aeson-pretty,
attoparsec,
base-unicode-symbols,
basic-prelude,
bytestring,
directory,
filepath,
hspec,
interpolatedstring-perl6,
parsers,
process,
split,
string-conversions,
tagsoup,
text,
time,
unordered-containers
other-modules:
ChapterFile,
Config,
DateUtil,
FileUtil,
IndexFile,
HtmlUtil,
Models.Chapter,
Models.NRS,
Models.Section,
Models.SubChapter,
Models.SubSubChapter,
Models.Title,
Models.Tree,
NRSParser,
Parsing,
SectionParser,
SimpleChapterFile,
TextUtil,
TreeParser,
Util,
Year
test-suite nrs-parser-test
import: deps, options
type: exitcode-stdio-1.0
hs-source-dirs: src, test
main-is: Spec.hs
other-modules: ChapterFileSpec
, IndexFileSpec
, FileUtilSpec
, Models.SectionSpec
, SectionParserSpec
, SimpleChapterSpec
, TextUtilSpec
executable nrs-parser-exe
import: deps, options
hs-source-dirs: src, app
main-is: Main.hs
source-repository head
type: git
location: https://github.com/public-law/nevada-revised-statutes-parser