packages feed

elm-get-0.1.2: elm-get.cabal

Name:                elm-get
Version:             0.1.2
Synopsis:            Tool for sharing and using Elm libraries
Description:         elm-get lets you install, update, and publish Elm libraries

Homepage:            http://github.com/elm-lang/elm-get

License:             BSD3
License-file:        LICENSE

Author:              Evan Czaplicki
Maintainer:          info@elm-lang.org
Copyright:           Copyright: (c) 2013-2014 Evan Czaplicki

Category:            Language

Build-type:          Simple
Cabal-version:       >=1.9

source-repository head
  type:     git
  location: git://github.com/elm-lang/elm-get.git

Library
  ghc-options:         -threaded -O2 -W
  Hs-Source-Dirs:      src
  exposed-modules:     Utils.Commands,
                       Utils.Http,
                       Utils.Paths
  Build-depends:       aeson,
                       base >=4.2 && <5,
                       binary,
                       bytestring,
                       containers,
                       directory,
                       Elm >= 0.12.2,
                       filepath,
                       HTTP,
                       http-client >= 0.3,
                       http-client-tls,
                       http-types,
                       json,
                       mtl,
                       network,
                       optparse-applicative,
                       pretty,
                       process,
                       resourcet,
                       text,
                       vector

Executable elm-get
  ghc-options:         -threaded -O2 -W
  Hs-Source-Dirs:      src
  Main-is:             Get/Main.hs
  other-modules:       Get.Dependencies,
                       Get.Install,
                       Get.Library,
                       Get.Options,
                       Get.Publish,
                       Get.Registry,
                       Utils.Commands,
                       Utils.Http,
                       Utils.Paths
  Build-depends:       aeson,
                       aeson-pretty,
                       base >=4.2 && <5,
                       binary,
                       bytestring,
                       containers,
                       directory,
                       Elm >= 0.12.2,
                       filepath,
                       HTTP,
                       http-client >= 0.3,
                       http-client-tls,
                       http-types,
                       json,
                       mtl,
                       network,
                       optparse-applicative,
                       pretty,
                       process,
                       resourcet,
                       text,
                       vector