2019-12-30 12:16:05 +01:00
|
|
|
cabal-version: >=1.10
|
|
|
|
-- Initial package description 'SJW.cabal' generated by 'cabal init'. For
|
|
|
|
-- further documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
|
|
|
|
name: SJW
|
2020-05-21 18:03:12 +02:00
|
|
|
version: 0.1.2.1
|
2019-12-30 12:16:05 +01:00
|
|
|
synopsis: The Simple Javascript Wrench is a very simple tool to pack several JS «modules» into a single script.
|
|
|
|
-- description:
|
|
|
|
homepage: https://git.marvid.fr/Tissevert/SJW
|
|
|
|
-- bug-reports:
|
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Tissevert
|
|
|
|
maintainer: tissevert+devel@marvid.fr
|
|
|
|
-- copyright:
|
|
|
|
category: Web
|
|
|
|
build-type: Simple
|
|
|
|
extra-source-files: CHANGELOG.md
|
|
|
|
|
2020-05-17 16:30:56 +02:00
|
|
|
library
|
|
|
|
exposed-modules: SJW
|
|
|
|
other-modules: SJW.Compiler
|
|
|
|
, SJW.Dependencies
|
|
|
|
, SJW.Module
|
|
|
|
, SJW.Module.File
|
|
|
|
, SJW.Module.Imports
|
|
|
|
, SJW.Source
|
2019-12-30 12:16:05 +01:00
|
|
|
build-depends: attoparsec
|
2020-09-10 15:18:04 +02:00
|
|
|
, base >=4.9 && <4.15
|
2019-12-30 12:16:05 +01:00
|
|
|
, containers
|
|
|
|
, directory
|
|
|
|
, filepath
|
|
|
|
, mtl
|
|
|
|
, text
|
2019-12-30 13:06:54 +01:00
|
|
|
, unix
|
2019-12-30 12:16:05 +01:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
2020-01-01 17:14:10 +01:00
|
|
|
ghc-options: -Wall
|
2020-05-17 16:30:56 +02:00
|
|
|
|
|
|
|
executable sjw
|
|
|
|
main-is: src/Main.hs
|
|
|
|
other-modules: Paths_SJW
|
|
|
|
-- other-extensions:
|
|
|
|
build-depends: attoparsec
|
2020-09-10 15:18:04 +02:00
|
|
|
, base >=4.9 && <4.15
|
2020-05-17 16:30:56 +02:00
|
|
|
, optparse-applicative
|
|
|
|
, SJW
|
|
|
|
, text
|
|
|
|
default-language: Haskell2010
|
|
|
|
ghc-options: -Wall
|