defmodule PhoenixGenWebpack.Mixfile do use Mix.Project def project do [app: :phoenix_gen_webpack, version: "0.2.0", elixir: "~> 1.0", deps: deps, package: package, source_url: "https://github.com/BrewhouseTeam/phoenix_gen_webpack", description: "Inelegantly replace Brunch with Webpack"] end def application do [applications: []] end defp deps do [{:phoenix, "~> 1.0.3"}] end defp package do [files: ~w(lib mix.exs README.md), contributors: ["Gabe Scholz"], licenses: ["MIT"], links: %{"github" => "https://github.com/BrewhouseTeam/phoenix_gen_webpack"}, build_tools: []] end end