-
Notifications
You must be signed in to change notification settings - Fork 0
/
hjudge.cabal
27 lines (25 loc) · 943 Bytes
/
hjudge.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
name: hjudge
version: 0.1.0.0
author: Felix Van der Jeugt
maintainer: felix.vanderjeugt@ugent.be
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: lib
exposed-modules: HUnitJudge, QuickCheckJudge
build-depends: base >= 4.7 && < 5
, QuickCheck >= 2.10 && < 2.15
, HUnit >= 1.5 && < 1.7
, MissingH >= 1.4 && < 1.5
, aeson >= 1.4 && < 1.6
, text >= 1.2 && < 1.3
default-language: Haskell2010
executable jsonlinter
hs-source-dirs: src
main-is: JSONLinter.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, hlint >= 2.1 && < 3.3
, aeson >= 1.4 && < 1.6
, text >= 1.2 && < 1.3
default-language: Haskell2010