This repository has been archived by the owner on Mar 3, 2023. It is now read-only.
forked from avh4/elm-format
-
Notifications
You must be signed in to change notification settings - Fork 0
/
elm-format.cabal
98 lines (77 loc) · 2.12 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
98
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:
AST.Json
Build_elm_format
ElmFormat.Cli
ElmFormat.CliFlags
ElmFormat.Messages
ElmFormat.Version
build-depends:
ansi-wl-pprint >= 0.6.8.2 && < 0.7,
base >= 4.12.0.0 && < 5,
containers >= 0.6.0.1 && < 0.7,
json >= 0.10 && < 0.11,
optparse-applicative >= 0.15.1.0 && < 0.16,
relude >= 0.7 && < 0.8,
text >= 1.2.3.1 && < 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.3.3 && < 0.4,
cmark >= 0.6 && < 0.7,
parsec >= 3.1.13.0 && < 4,
elm-format-test-lib