-
Notifications
You must be signed in to change notification settings - Fork 0
/
jespresso.cabal
74 lines (68 loc) · 2.92 KB
/
jespresso.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
-- Initial jespresso.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: jespresso
version: 1.2.0
synopsis: Extract all JavaScript from an HTML page and consolidate it in one script.
description: Allows extraction and consolidation of JavaScript code in an HTML page so that it behaves like the original. Consolidation is a process of transforming an HTML page into an equivalent, but containing JavaScript code only in one inlined script tag. Note that the package versions follow Semantic Versioning model (semver.org).
license: BSD3
license-file: LICENSE
author: Andrey Chudnov
maintainer: Andrey Chudnov <[email protected]>
Homepage: http://github.com/achudnov/jespresso
Bug-reports: http://github.com/achudnov/jespresso/issues
copyright: (c) 2012-2015 Stevens Institute of Technology, (c) 2016 Andrey Chudnov
category: Web
stability: Experimental
tested-with: GHC==7.8.4, GHC==7.10.2
build-type: Simple
cabal-version: >=1.10
extra-source-files: test-data/cases/*.html, test-data/expects/*.html
Source-repository head
type: git
location: git://github.com/achudnov/jespresso.git
Source-repository this
type: git
location: git://github.com/achudnov/jespresso.git
tag: 1.2.0
library
build-depends: base >= 4.2.0 && < 5
, hxt >= 9.2.0 && < 10
, hxt-tagsoup >= 9.1.1 && < 10
, arrows >= 0.4 && < 0.5
, HTTP >= 4000.2.0 && < 5000
, language-ecmascript >= 5 && < 6
, random >= 1 && < 2
, bytestring >= 0.9 && < 0.11
, http-encodings >= 0.9.1 && < 1.0
, network == 2.6.*
, network-uri == 2.6.*
, data-default-class >= 0.0.1 && < 0.2
, data-default-instances-base >= 0.0.1 && < 0.2
exposed-modules: Text.Html.Consolidate
Network.Browser.Simple
hs-source-dirs: src
default-language: Haskell2010
executable jespresso
main-is: Main.hs
build-depends: base >=4.2.0 && < 5
, jespresso
, cmdargs >= 0.9 && < 0.11
, HTTP >= 4000.2.0 && < 5000
, network
, network-uri
default-language: Haskell2010
Test-Suite unittest
Hs-Source-Dirs: test
Type: exitcode-stdio-1.0
Main-Is: UnitTest.hs
Build-Depends: base >= 4 && < 5
, jespresso
, tasty >= 0.4 && < 0.12
, tasty-golden == 2.3.*
, directory >= 1.2 && < 1.3
, filepath >= 1.1 && < 1.5
, hxt >= 9.2.0 && < 10
, arrows >= 0.4 && < 0.5
, transformers >= 0.3 && < 0.5
, Diff >= 0.3.0
Default-Language: Haskell2010