Current section

Files

Jump to
Raw

mix.exs

defmodule MaruEntity.Mixfile do
use Mix.Project
def project do
[
app: :maru_entity,
version: "0.2.3",
elixir: "~> 1.3",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "Parallelizable serializer inspired by grape-entity.",
source_url: "https://github.com/elixir-maru/maru_entity",
package: package(),
test_coverage: [tool: ExCoveralls],
docs: [
extras: ["README.md"],
main: "readme"
]
]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:ex_doc, "~> 0.26", only: :docs},
{:excoveralls, "~> 0.14", only: :test},
{:dialyxir, "~> 1.1", only: :test, runtime: false}
]
end
defp package do
%{
maintainers: ["Xiangrong Hao", "Teodor Pripoae"],
licenses: ["WTFPL"],
links: %{"Github" => "https://github.com/elixir-maru/maru_entity"}
}
end
end