forked from avh4/elm-format
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelm-format.cabal
97 lines (76 loc) · 2.11 KB
/
elm-format.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
cabal-version: 2.4
Name: elm-format
version: 0.8.5
Synopsis:
A source code formatter for Elm
Description:
A simple way to format your Elm code according to the official
style guide.
Homepage:
https://elm-lang.org
License: BSD-3-Clause
License-file: LICENSE
Author: Aaron VonderHaar
Maintainer: [email protected]
Copyright: See https://github.com/avh4/elm-format/blob/master/LICENSE
Category: Build Tool
build-type: Simple
Extra-source-files: README.md
source-repository head
type: git
location: git://github.com/avh4/elm-format.git
common common-options
default-language: Haskell2010
ghc-options:
-threaded -O2 -Wall -Wno-name-shadowing
default-extensions:
DeriveFunctor
LambdaCase
OverloadedStrings
ScopedTypeVariables
hs-source-dirs:
src
generated
other-modules:
Build_elm_format
ElmFormat.Cli
ElmFormat.CliFlags
ElmFormat.Messages
ElmFormat.Version
build-depends:
aeson >= 2.0.1.0 && < 2.1,
ansi-wl-pprint >= 0.6.9 && < 0.7,
base >= 4.15.0.0 && < 5,
bytestring >= 0.11.1.0 && < 0.12,
containers >= 0.6.5.1 && < 0.7,
optparse-applicative >= 0.16.1.0 && < 0.17,
relude >= 1.0.0.1 && < 1.1,
text >= 1.2.5.0 && < 2,
avh4-lib,
elm-format-lib
executable elm-format
import: common-options
main-is: Main.hs
test-Suite elm-format-tests
import: common-options
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Test.hs
other-modules:
CommonMarkTests
Integration.CliTest
Integration.LiteralTest
Test.ElmSourceGenerators
Test.Generators
Test.Property
build-depends:
mtl >= 2.2.2 && < 3,
tasty >= 1.2 && < 2,
tasty-hspec >= 1.1.5.1 && < 1.2,
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,
bimap >= 0.4.0 && < 0.5,
cmark >= 0.6 && < 0.7,
elm-format-test-lib