defmodule Meteor.MixProject do use Mix.Project def project do [ app: :meteor, version: "0.1.0", elixir: "~> 1.8", description: "Web app load testing (like a JMeter) in Elixir/Phoenix", package: [ maintainers: [ "piacere-ex" ], licenses: [ "Apache 2.0" ], links: %{ "GitHub" => "https://github.com/piacere-ex/meteor" }, ], start_permanent: Mix.env() == :prod, deps: deps() ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger] ] end # Run "mix help deps" to learn about dependencies. defp deps do [ { :ex_doc, "~> 0.0", only: :dev, runtime: false }, { :earmark, "~> 1.0", only: :dev }, { :power_assert, "~> 0.0", only: :test }, { :mix_test_watch, "~> 0.0", only: :dev, runtime: false }, { :dialyxir, "~> 0.0", only: :dev }, ] end end