Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Accent.Mixfile do
use Mix.Project
def project do
[
app: :accent,
name: "Accent",
description: "Plug for converting JSON API keys to different cases",
version: "0.2.1",
elixir: "~> 1.3",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
lockfile: lockfile(),
package: package(),
preferred_cli_env: [
coveralls: :test,
"coveralls.html": :test,
"coveralls.travis": :test
],
test_coverage: [tool: ExCoveralls]
]
end
def application do
[applications: [:logger, :plug]]
end
defp deps do
[
{:jason, "~> 1.0", optional: true},
{:plug, "~> 1.3"},
{:poison, ">= 3.1.0 and < 5.0.0", optional: true},
# dev
{:ex_doc, ">= 0.0.0", only: [:dev]},
# test
{:excoveralls, "~> 0.10", only: [:test]}
]
end
defp lockfile do
cond do
Version.match?(System.version(), ">= 1.3.0 and < 1.4.0") ->
"mix_1_3.lock"
Version.match?(System.version(), ">= 1.4.0 and < 1.6.0") ->
"mix_1_4.lock"
true ->
"mix.lock"
end
end
defp package do
%{
maintainers: ["Anthony Smith"],
licenses: ["MIT"],
links: %{
GitHub: "https://github.com/sticksnleaves/accent"
}
}
end
end