packages feed

elm-init-0.1.0.1: elm-init.cabal

-- Initial elm-init.cabal generated by cabal init.  For further
-- documentation, see http://haskell.org/cabal/users-guide/

name:                elm-init
version:             0.1.0.1
synopsis:            Set up basic structure for an elm project
description:
  Initialize a new empty elm project with some basic scaffolding according to 'https://github.com/evancz/elm-architecture-tutorial'.
license:             MIT
license-file:        LICENSE
author:              justusadam
maintainer:          development@justusadam.com
-- copyright:
category:            Development
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10
extra-source-files:
  resources/elm-package.json,
  resources/Main.elm


executable elm-init
  main-is:             Main.hs
  -- other-modules:
  -- other-extensions:
  build-depends:
      base >=4.5 && <4.9,
      system-fileio >= 0.3,
      system-filepath >= 0.4,
      file-embed >= 0.0.8,
      bytestring >= 0.10,
      -- binary >= 0.7,
      json >= 0.9
  hs-source-dirs:      src
  default-language:    Haskell2010

source-repository head
  type:     git
  location: git://github.com/JustusAdam/elm-init.git