File: js-jquery.cabal

package info (click to toggle)
haskell-js-jquery 3.3.1-6
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 436 kB
  • sloc: javascript: 6,690; haskell: 37; makefile: 7
file content (55 lines) | stat: -rw-r--r-- 1,670 bytes parent folder | download | duplicates (4)
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
cabal-version:      >= 1.18
build-type:         Simple
name:               js-jquery
version:            3.3.1
license:            MIT
license-file:       LICENSE
category:           Javascript
author:             Neil Mitchell <ndmitchell@gmail.com>
maintainer:         Neil Mitchell <ndmitchell@gmail.com>
copyright:          Neil Mitchell 2014-2018
synopsis:           Obtain minified jQuery code
description:
    This package bundles the minified <http://jquery.com/ jQuery> code into a Haskell package,
    so it can be depended upon by Cabal packages. The first three components of
    the version number match the upstream jQuery version. The package is designed
    to meet the redistribution requirements of downstream users (e.g. Debian).
homepage:           https://github.com/ndmitchell/js-jquery#readme
bug-reports:        https://github.com/ndmitchell/js-jquery/issues
tested-with:        GHC==8.2.2, GHC==8.0.2, GHC==7.10.3, GHC==7.8.4, GHC==7.6.3, GHC==7.4.2
extra-source-files:
    javascript/jquery-3.3.1.js
extra-doc-files:
    CHANGES.txt
    README.md

data-dir: javascript
data-files:
    jquery-3.3.1.min.js

source-repository head
    type:     git
    location: https://github.com/ndmitchell/js-jquery.git

library
    default-language: Haskell2010
    hs-source-dirs:   src
    build-depends:
        base == 4.*

    exposed-modules:
        Language.Javascript.JQuery

    other-modules:
        Paths_js_jquery

test-suite js-jquery-test
    default-language: Haskell2010
    type: exitcode-stdio-1.0
    main-is: src/Test.hs
    other-modules:
        Paths_js_jquery
    build-depends:
        base == 4.*,
        js-jquery,
        HTTP