-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
65 lines (55 loc) · 1.32 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
name: dict-cc
version: 0.1.0
category: Web
synopsis: Command line client for https://dict.cc
description: |
A command line client for dict.cc which is based on scraping
the webpage (since no API is provided).
The key features are
* filtering based on word category (e.g. verb, noun)
* translations between different languages
* defining frequently used settings in a central config file
github: matt-snider/dict.cc
license: MIT
author: Matt Snider
maintainer: Matt Snider <[email protected]>
copyright: (c) 2018 Matt Snider
extra-source-files:
- README.md
ghc-options:
- -Wall
- -Wcompat
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wredundant-constraints
default-extensions:
- ConstraintKinds
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- GeneralizedNewtypeDeriving
- InstanceSigs
- LambdaCase
- MultiParamTypeClasses
- OverloadedStrings
dependencies:
- base >= 4.9 && < 5
executables:
dict-cc:
source-dirs: src/
main: Main.hs
dependencies:
- bytestring == 0.10.8.1
- directory == 1.3.0.0
- http-conduit >= 2.2.3.2
- HTTP >= 4000
- regex-posix == 0.95.2
- tagsoup == 0.14.1
- text == 1.2.2.2
- text-format == 0.3.1.1
- yaml == 0.8.23.3
tests:
unit:
source-dirs: test
main: Spec.hs
dependencies: []