packages feed

js-chart-2.9.4: js-chart.cabal

cabal-version:      >=1.18
build-type:         Simple
name:               js-chart
version:            2.9.4
license:            MIT
license-file:       LICENSE
category:           Javascript
author:             Jonas Carpay <jonascarpay@gmail.com>
maintainer:         Jonas Carpay <jonascarpay@gmail.com>
copyright:
  Jonas Carpay 2020, Neil Mitchell 2014-2020, Chart.js contributors 2020

synopsis:           Obtain minified chart.js code
description:
  This package bundles the minified <http://www.chartjs.org/ chart.js> 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 chart.js version.
  The package is designed to meet the redistribution requirements of downstream users (e.g. Debian).
  This package is a fork of <https://hackage.haskell.org/package/js-flot js-flot> using chart.js instead of flot.

homepage:           https://github.com/jonascarpay/js-chart#readme
bug-reports:        https://github.com/jonascarpay/js-chart/issues
tested-with:        GHC==8.10, GHC==8.8, GHC==8.6, GHC==8.4, GHC==8.2, GHC==8.0
extra-source-files: javascript/chart.js-2.9.4.tgz
extra-doc-files:
  CHANGES.txt
  README.md

data-dir:           javascript
data-files:
  Chart.bundle.min.js
  Chart.min.js
  Chart.min.css

source-repository head
  type:     git
  location: https://github.com/jonascarpay/js-chart.git

library
  default-language: Haskell2010
  hs-source-dirs:   src
  build-depends:    base ==4.*
  exposed-modules:  Language.Javascript.Chart
  other-modules:    Paths_js_chart

test-suite js-chart-test
  default-language: Haskell2010
  type:             exitcode-stdio-1.0
  main-is:          src/Test.hs
  other-modules:    Paths_js_chart
  build-depends:
      base      >=4 && <5
    , js-chart