forked from bitemyapp/fp-course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
92 lines (83 loc) · 2.04 KB
/
package.yaml
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
88
89
90
91
92
name: course
version: 0.1.5
synopsis: Source code for a functional programming course
description: Source code for a course in functional programming using Haskell
category: Education
author: ! 'Tony Morris <[email protected]>
Mark Hibberd <[email protected]>
Ben Sinclair <[email protected]>
James Earl Douglas <[email protected]>
Eric Torreborre <[email protected]>'
maintainer: Chris Allen <[email protected]>
copyright: ! 'Copyright (C) 2010-2013 Tony Morris
Copyright (C) 2012-2015 National ICT Australia Limited
Copyright (C) 2012 James Earl Douglas
Copyright (C) 2012 Ben Sinclair
Copyright (C) 2016-2017 Data61'
license: BSD3
license-file: etc/LICENCE
homepage: https://github.com/bitemyapp/fp-course
git: [email protected]:bitemyapp/fp-course.git
bug-reports: https://github.com/bitemyapp/fp-course/issues
tested-with: GHC==8.0.2
extra-source-files:
- etc/CONTRIBUTORS
- CHANGELOG.md
ghc-options: -Wall
library:
source-dirs: src
default-extensions:
- NoImplicitPrelude
- ScopedTypeVariables
- InstanceSigs
ghc-options:
- -fwarn-incomplete-uni-patterns
- -fno-warn-unused-binds
- -fno-warn-unused-do-bind
- -fno-warn-unused-imports
- -fno-warn-type-defaults
- -ferror-spans
exposed-modules:
- Course
- Course.Anagrams
- Course.Applicative
- Course.Cheque
- Course.Comonad
- Course.Compose
- Course.Core
- Course.ExactlyOne
- Course.Extend
- Course.FastAnagrams
- Course.FileIO
- Course.Functor
- Course.Interactive
- Course.JsonParser
- Course.JsonValue
- Course.List
- Course.ListZipper
- Course.Monad
- Course.MonadTutorial
- Course.MoreParser
- Course.Optional
- Course.Parser
- Course.Person
- Course.State
- Course.StateT
- Course.Traversable
- Course.Validation
dependencies:
- base <5 && >=4
- containers >=0.4.0.0
- array >=0.4
tests:
course-tests:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
dependencies:
- base <5 && >=3
- course
- hspec
- hspec-discover
- QuickCheck >=2.9