-
Notifications
You must be signed in to change notification settings - Fork 146
/
elm-format.cabal
105 lines (100 loc) · 2.75 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
99
100
101
102
103
104
105
cabal-version: 2.2
-- This file has been generated from package.yaml by hpack version 0.35.2.
--
-- see: https://github.com/sol/hpack
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
author: Aaron VonderHaar
maintainer: gruen0aermel@gmail.com
copyright: See https://github.com/avh4/elm-format/blob/master/LICENSE
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: git://github.com/avh4/elm-format.git
executable elm-format
main-is: Main.hs
other-modules:
ElmFormat.Cli
ElmFormat.CliFlags
ElmFormat.Messages
ElmFormat.Version
Paths_elm_format
Build_elm_format
autogen-modules:
Paths_elm_format
Build_elm_format
hs-source-dirs:
src
generated
default-extensions:
DeriveFunctor
LambdaCase
OverloadedStrings
ScopedTypeVariables
ghc-options: -threaded -with-rtsopts=-N -O2 -Wall -Werror=unused-packages -Wno-name-shadowing
build-depends:
aeson >=2.1.0.0 && <2.2
, ansi-wl-pprint >=0.6.9 && <0.7
, avh4-lib
, base >=4.15.0.0 && <5
, bytestring >=0.11.3.0 && <0.12
, elm-format-lib
, optparse-applicative >=0.17.0.0 && <0.18
, relude >=1.1.0.0 && <1.3
, text >=2.0 && <3
default-language: Haskell2010
test-suite elm-format-tests
type: exitcode-stdio-1.0
main-is: Test.hs
other-modules:
Integration.CliTest
Integration.LiteralTest
Test.ElmSourceGenerators
Test.Generators
Test.Property
ElmFormat.Cli
ElmFormat.CliFlags
ElmFormat.Messages
ElmFormat.Version
Build_elm_format
Paths_elm_format
autogen-modules:
Paths_elm_format
hs-source-dirs:
tests
src
generated
default-extensions:
DeriveFunctor
LambdaCase
OverloadedStrings
ScopedTypeVariables
ghc-options: -threaded -with-rtsopts=-N -O2 -Wall -Werror=unused-packages -Wno-name-shadowing
build-depends:
QuickCheck >=2.12.6.1 && <3
, aeson >=2.1.0.0 && <2.2
, ansi-wl-pprint >=0.6.9 && <0.7
, avh4-lib
, base >=4.15.0.0 && <5
, bytestring >=0.11.3.0 && <0.12
, elm-format-lib
, elm-format-test-lib
, hspec >=2.7.4 && <3
, optparse-applicative >=0.17.0.0 && <0.18
, quickcheck-io >=0.2.0 && <0.3
, relude >=1.1.0.0 && <1.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
, text >=2.0 && <3
default-language: Haskell2010