defmodule Witaixir.Mixfile do use Mix.Project def project do [ app: :witaixir, version: "0.0.1", elixir: "~> 1.4", name: "Witaixir", description: "Elixir wrapper for the wit.ai", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, source_url: "https://github.com/jonathanchrisp/witaixir", package: package(), deps: deps() ] end # Configuration for the OTP application # # Type "mix help compile.app" for more information def application do # Specify extra applications you'll use from Erlang/Elixir [extra_applications: [:logger]] end defp package() do [ licenses: ["MIT"], links: %{"GitHub" => "https://github.com/jonathanchrisp/witaixir"}, maintainers: ["Jonathan Chrisp"], ] end defp deps do [ {:bypass, "~> 0.8", only: :test}, {:dialyxir, "~> 0.5", only: [:dev], runtime: false}, {:ex_doc, ">= 0.0.0", only: :dev}, {:httpoison, "~> 0.12"}, {:poison, "~> 3.1"} ] end end