-
Notifications
You must be signed in to change notification settings - Fork 0
/
adobe-swatch-exchange.cabal
43 lines (39 loc) · 1.77 KB
/
adobe-swatch-exchange.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
name: adobe-swatch-exchange
version: 0.2.1
synopsis: parse Adobe Swatch Exchange files and (optionally) output .css files with the colors
homepage: https://github.com/stepcut/ase2css
license: BSD3
license-file: LICENSE
author: Jeremy Shaw
maintainer: [email protected]
category: Web
build-type: Simple
cabal-version: >=1.8
library
exposed-modules: Data.AdobeSwatchExchange
Data.AdobeSwatchExchange.CSS
Data.AdobeSwatchExchange.LESS
build-depends: base >= 4.5 && < 5,
bytestring == 0.10.*,
data-binary-ieee754 == 0.4.*,
binary >= 0.5 && < 0.8,
language-css == 0.0.*,
mtl >= 2.0 && < 2.3,
pretty == 1.1.*
executable ase2css
main-is: ase2css.hs
build-depends: base >= 4.5 && < 5,
binary >= 0.5 && < 0.8,
bytestring == 0.10.*,
data-binary-ieee754 == 0.4.*,
language-css == 0.0.*,
mtl >= 2.0 && < 2.3,
pretty == 1.1.*
executable ase2less
main-is: ase2less.hs
build-depends: base >= 4.5 && < 5,
binary >= 0.5 && < 0.8,
bytestring == 0.10.*,
data-binary-ieee754 == 0.4.*,
mtl >= 2.0 && < 2.3,
pretty == 1.1.*