defmodule Ethereumex.Mixfile do use Mix.Project def project do [app: :ethereumex, version: "0.2.0", elixir: "~> 1.5", description: "Elixir JSON-RPC client for the Ethereum blockchain", package: [ maintainers: ["Ayrat Badykov"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/ayrat555/ethereumex"} ], build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, deps: deps()] end def application do [extra_applications: [:logger], mod: {Ethereumex, []}] end defp deps do [{:httpoison, "~> 0.11.1"}, {:poison, "~> 3.1.0"}, {:credo, "~> 0.8", only: [:dev, :test], runtime: false}, {:ex_doc, "~> 0.14", only: :dev, runtime: false}, {:dialyxir, "~> 0.5", only: [:dev], runtime: false}] end end