Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Cocoon.MixProject do
use Mix.Project
def project do
[
app: :cocoon,
version: "0.1.0",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
deps: deps(),
dialyzer: dialyzer(),
package: package()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
#
# dev
#
{ :dialyxir, "~> 1.0-rc", only: :dev, runtime: false },
{ :ex_doc, ">= 0.0.0", only: :dev, runtime: false }
]
end
defp dialyzer do
[
plt_core_path: "./_build/#{Mix.env()}"
]
end
defp package do
%{
description: "Pure Elixir library for transforming data",
maintainers: ["Kurt Friedrich", "Anthony Smith"],
licenses: ["MIT"],
links: %{
GitHub: "https://github.com/malomohq/cocoon-elixir",
"Made by Malomo - Post-purchase experiences that customers love": "https://gomalomo.com"
}
}
end
end