-
Notifications
You must be signed in to change notification settings - Fork 7
/
arion.cabal
60 lines (56 loc) · 1.87 KB
/
arion.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
name: arion
version: 0.1.0.8
synopsis: Watcher and runner for Hspec
description: Watcher and runner for Hspec
license: MIT
license-file: LICENSE
author: Karun Ramakrishnan
maintainer: [email protected]
homepage: http://github.com/karun012/arion
category: Testing
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/karun012/arion
executable arion
main-is: Main.hs
build-depends: base >=4.6 && <5,
fsnotify >=0.1.0.3,
filemanip,
system-filepath,
containers,
regex-posix,
split,
text,
safe,
process >=1.2.0.0,
directory,
transformers
other-modules: Arion.Runner,
Arion.Types,
Arion.EventProcessor,
Arion.Help,
Arion.Utilities
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -threaded
test-suite test
default-language: Haskell2010
HS-Source-Dirs: test, src
build-depends: base >=4.6 && <5,
hspec,
fsnotify >=0.1.0.3,
filemanip,
time,
system-filepath,
containers,
regex-posix,
split,
text,
safe,
process >=1.2.0.0,
directory
type: exitcode-stdio-1.0
ghc-options: -threaded
main-is: Spec.hs