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
|
cabal-version: >= 1.18
build-type: Simple
name: js-dgtable
version: 0.5.2
license: MIT
license-file: LICENSE
category: Javascript
author: Neil Mitchell <ndmitchell@gmail.com>
maintainer: Neil Mitchell <ndmitchell@gmail.com>
copyright: Neil Mitchell 2019
synopsis: Obtain minified jquery.dgtable code
description:
This package bundles the minified <https://github.com/danielgindi/jquery.dgtable jquery.dgtable> 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.dgtable version. The package is designed
to meet the redistribution requirements of downstream users (e.g. Debian).
homepage: https://github.com/ndmitchell/js-dgtable#readme
bug-reports: https://github.com/ndmitchell/js-dgtable/issues
tested-with: GHC==8.6.4, GHC==8.4.4, GHC==8.2.2, GHC==8.0.2, GHC==7.10.3
extra-source-files:
javascript/jquery.dgtable.js
extra-doc-files:
CHANGES.txt
README.md
data-dir: javascript
data-files:
jquery.dgtable.min.js
source-repository head
type: git
location: https://github.com/ndmitchell/js-dgtable.git
library
default-language: Haskell2010
hs-source-dirs: src
build-depends:
base == 4.*
exposed-modules:
Language.Javascript.DGTable
other-modules:
Paths_js_dgtable
test-suite js-dgtable-test
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: src/Test.hs
other-modules:
Paths_js_dgtable
build-depends:
base == 4.*,
js-dgtable
|