-
Notifications
You must be signed in to change notification settings - Fork 1
/
boilerplate.cabal
37 lines (34 loc) · 1.23 KB
/
boilerplate.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
name: boilerplate
version: 0.1.0.0
synopsis: Project boilerplate.
description: Project boilerplate.
license: Apache-2.0
license-file: LICENSE
author: Rob Howard
maintainer: [email protected]
build-type: Simple
cabal-version: >=1.10
library
default-language: Haskell2010
ghc-options: -Wall -fwarn-implicit-prelude -fwarn-missing-import-lists
hs-source-dirs: src
exposed-modules: Boilerplate
build-depends: base >= 4.7 && < 4.8
test-suite specs
default-language: Haskell2010
type: exitcode-stdio-1.0
ghc-options: -Wall
hs-source-dirs: test
main-is: Spec.hs
build-depends: base >= 4.7 && < 4.8
, boilerplate
, hspec >= 1.8 && < 3
test-suite props
default-language: Haskell2010
type: exitcode-stdio-1.0
ghc-options: -Wall
hs-source-dirs: test
main-is: Properties.hs
build-depends: base >= 4.7 && < 4.8
, boilerplate
, QuickCheck == 2.*