defmodule ExHyperspace.MixProject do use Mix.Project def project do [ app: :ex_hyperspace, version: "0.0.1", elixir: "~> 1.13", start_permanent: Mix.env() == :prod, deps: deps(), package: package(), description: description() ] end def application do [ extra_applications: [:logger] ] end defp deps do [ {:httpoison, "~> 1.0"}, {:jason, "~> 1.1"}, {:mapail, "~> 1.0.2"}, {:ex_doc, ">= 0.0.0", only: :dev}, {:dialyxir, "~> 1.0", only: [:dev], runtime: false}, {:mix_test_watch, "~> 1.0", only: :dev, runtime: false}, {:exvcr, "~> 0.10", only: [:dev, :test]}, {:ex_unit_notifier, "~> 1.0", only: :test}, {:mock, "~> 0.3", only: :test}, {:with_env, "~> 0.1", only: :test} ] end defp description do "Hyperspace API client for Elixir" end defp package do %{ licenses: ["MIT"], maintainers: ["Alex Kwiatkowski"], links: %{"GitHub" => "https://github.com/fremantle-industries/ex_hyperspace"} } end end