-
Notifications
You must be signed in to change notification settings - Fork 0
/
elm-asset-gen.cabal
64 lines (59 loc) · 1.88 KB
/
elm-asset-gen.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
cabal-version: >=1.10
name: elm-asset-gen
version: 0.1.2
synopsis: Elm asset module generator
description: See https://github.com/tomstejskal/elm-asset-gen#readme
license: BSD3
license-file: LICENSE
author: Tom Stejskal
maintainer: tom@stejskal.me
category: Development
build-type: Simple
extra-source-files: CHANGELOG.md
source-repository head
type: git
location: https://github.com/tomstejskal/elm-asset-gen
Test-Suite test
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends: base >=4 && <5
, bytestring
, directory
, elm-asset-gen
, filepath
, mtl
, tasty
, tasty-golden
, tasty-hunit
, text
hs-source-dirs: test
default-language: Haskell2010
library
exposed-modules: Asset
, Elm
, JS
build-depends: base >=4 && <5
, bytestring
, directory
, filepath
, mtl
, text
hs-source-dirs: lib
ghc-options: -Wall
default-language: Haskell2010
executable elm-asset-gen
main-is: Main.hs
other-modules: Options
build-depends: base >=4 && <5
, bytestring
, directory
, elm-asset-gen
, filepath
, mtl
, optparse-applicative
, text
hs-source-dirs: src
ghc-options: -Wall
-threaded
-rtsopts
default-language: Haskell2010