-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.yaml
82 lines (68 loc) · 1.72 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
name: elm-format
version: 0.8.7
synopsis: A source code formatter for Elm
description: |
A simple way to format your Elm code according to the official
style guide.
category: Build Tool
homepage: https://elm-lang.org
git: git://github.com/avh4/elm-format.git
license: BSD-3-Clause
license-file: LICENSE
author: Aaron VonderHaar
maintainer: [email protected]
copyright: See https://github.com/avh4/elm-format/blob/master/LICENSE
build-type: Simple
extra-source-files: README.md
language: Haskell2010
default-extensions:
- DeriveFunctor
- LambdaCase
- OverloadedStrings
- ScopedTypeVariables
ghc-options:
- -threaded
- -with-rtsopts=-N
- -O2
- -Wall
- -Werror=unused-packages
- -Wno-name-shadowing
dependencies:
aeson: ">= 2.1.0.0 && < 2.2"
ansi-wl-pprint: ">= 0.6.9 && < 0.7"
base: ">= 4.15.0.0 && < 5"
bytestring: ">= 0.11.3.0 && < 0.12"
optparse-applicative: ">= 0.17.0.0 && < 0.18"
relude: ">= 1.1.0.0 && < 1.3"
text: ">= 2.0 && < 3"
avh4-lib: {}
elm-format-lib: {}
executables:
elm-format:
main: Main.hs
source-dirs:
- src
- generated
generated-other-modules:
- Build_elm_format
tests:
elm-format-tests:
main: Test.hs
source-dirs:
- tests
- src
- generated
when:
- condition: false
other-modules:
- Main # exclude the executable's Main
- CommonMarkTests # currently broken
dependencies:
hspec: ">= 2.7.4 && < 3"
tasty: ">= 1.2 && < 2"
tasty-hspec: ">= 1.2.0.1 && < 1.3"
tasty-hunit: ">= 0.10.0.1 && < 0.11"
tasty-quickcheck: ">= 0.10.1 && < 0.11"
QuickCheck: ">= 2.12.6.1 && < 3"
quickcheck-io: ">= 0.2.0 && < 0.3"
elm-format-test-lib: {}