71 lines
2.2 KiB
Plaintext
71 lines
2.2 KiB
Plaintext
|
name: hjsmin
|
||
|
version: 0.2.0.4
|
||
|
x-revision: 2
|
||
|
license: BSD3
|
||
|
license-file: LICENSE
|
||
|
author: Alan Zimmerman <alan.zimm@gmail.com>
|
||
|
maintainer: Erik de Castro Lopo <erikd@mega-nerd.com>
|
||
|
synopsis: Haskell implementation of a javascript minifier
|
||
|
description:
|
||
|
Reduces size of javascript files by stripping out extraneous whitespace and
|
||
|
other syntactic elements, without changing the semantics.
|
||
|
category: Web
|
||
|
stability: unstable
|
||
|
cabal-version: >= 1.10
|
||
|
build-type: Simple
|
||
|
homepage: http://github.com/erikd/hjsmin
|
||
|
bug-reports: http://github.com/erikd/hjsmin/issues
|
||
|
|
||
|
Extra-source-files:
|
||
|
Readme.md
|
||
|
test/cli/core/runner
|
||
|
test/cli/empty-input/run
|
||
|
test/cli/minimal-input/run
|
||
|
|
||
|
|
||
|
library
|
||
|
default-language: Haskell2010
|
||
|
ghc-options: -Wall
|
||
|
hs-source-dirs: src
|
||
|
|
||
|
exposed-modules: Text.Jasmine
|
||
|
|
||
|
build-depends: base >= 4.8 && < 5
|
||
|
, bytestring >= 0.10 && < 0.12
|
||
|
, language-javascript >= 0.6 && < 0.8
|
||
|
, text == 1.2.*
|
||
|
|
||
|
|
||
|
executable hjsmin
|
||
|
default-language: Haskell2010
|
||
|
ghc-options: -Wall -threaded
|
||
|
hs-source-dirs: src main
|
||
|
main-is: hjsmin.hs
|
||
|
|
||
|
-- Need this here because the library and the executable have the same name.
|
||
|
other-modules: Text.Jasmine
|
||
|
|
||
|
build-depends: base >= 4.8 && < 5
|
||
|
, bytestring
|
||
|
, language-javascript
|
||
|
, optparse-applicative >= 0.7
|
||
|
, text
|
||
|
|
||
|
test-suite test-cli
|
||
|
type: exitcode-stdio-1.0
|
||
|
ghc-options: -Wall -fwarn-tabs
|
||
|
default-language: Haskell2010
|
||
|
hs-source-dirs: test
|
||
|
main-is: test-cli.hs
|
||
|
|
||
|
build-depends: base
|
||
|
, directory
|
||
|
, extra
|
||
|
, filepath
|
||
|
, process
|
||
|
, unix
|
||
|
|
||
|
source-repository head
|
||
|
type: git
|
||
|
location: https://github.com/erikd/hjsmin.git
|