-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.yaml
80 lines (71 loc) · 1.24 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
spec-version: 0.36.0
name: sensei
version: 0.8.0
synopsis: Automatically run Hspec tests on file modifications
maintainer: Simon Hengel <sol@typeful.net>
license: MIT
github: hspec/sensei
category: Development
language: GHC2021
default-extensions:
- DuplicateRecordFields
- LambdaCase
- NoFieldSelectors
- OverloadedRecordDot
- OverloadedStrings
- RecordWildCards
- ViewPatterns
other-extensions:
- NoFieldSelectors
dependencies:
- base >= 4.11 && < 5
- pretty
- process
- fsnotify == 0.4.*
- time
- wai
- warp
- http-types
- stm
- text
- network
- ansi-terminal
- directory
- http-client >= 0.5.0
- bytestring >= 0.11
- filepath
- unix
- async
- containers
- transformers
- mtl
- aeson
- yaml
- casing
- temporary
ghc-options: -Wall -threaded
source-dirs:
- src
executables:
sensei:
source-dirs: driver
main: sensei.hs
sensei-web:
source-dirs: driver
main: sensei-web.hs
seito:
source-dirs: driver
main: seito.hs
tests:
spec:
main: Spec.hs
source-dirs:
- test
dependencies:
- hspec >= 2.9.0
- hspec-contrib >= 0.5.2
- QuickCheck
- hspec-wai
- mockery
cpp-options: -DTEST
build-tools: hspec-discover