-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.yaml
81 lines (73 loc) · 1.54 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
name: steeloverseer
version: 2.1.0.1
license: BSD3
license-file: LICENSE
maintainer: peterbecich@gmail.com
stability: stable
github: schell/steeloverseer
synopsis: A file watcher and development tool.
description: >
A command line tool that responds to filesystem events.
Allows the user to automatically execute commands after
files are added or updated. Watches files using regular
expressions.
category: Development
author:
- Schell Scivally
- Mitchell Rosen
extra-source-files:
- README.md
ghc-options: -Wall
build-tool-depends:
hspec-discover
tested-with:
- GHC==9.2.2
default-extensions:
- BangPatterns
- DeriveDataTypeable
- DeriveFunctor
- FlexibleContexts
- InstanceSigs
- LambdaCase
- OverloadedStrings
- RecordWildCards
- ScopedTypeVariables
- ViewPatterns
dependencies:
- async >= 2.0
- base >= 4.0 && < 5.0
- bytestring >= 0.10
- exceptions
- fsnotify >= 0.3 && < 0.4
- managed >= 1.0.1
- regex-tdfa >= 1.2
- stm >= 2.4
- streaming >= 0.1.0 && < 0.3
- text >= 1.2
- yaml >= 0.8
library:
source-dirs: src
dependencies:
- aeson >= 0.8
- ansi-terminal >= 0.6.2
- process >= 1.6 && < 1.7
- unix
other-modules: []
executables:
sos:
main: Main.hs
source-dirs: app
dependencies:
- steeloverseer
- directory >= 1.2
- filepath >= 1.3
- optparse-applicative >= 0.11
other-modules: []
ghc-options: -threaded
tests:
spec:
main: Spec.hs
source-dirs: test
dependencies:
- steeloverseer
- hspec