Current section

Files

Jump to
perch mix.exs
Raw

mix.exs

defmodule Perch.MixProject do
use Mix.Project
def project do
[
app: :perch,
version: "0.2.2",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "A perchance parser and interpreter",
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp package() do
[
name: "perch",
files: ~w(lib mix.exs README*),
licenses: ["CC-BY-4.0"],
links: %{"GitHub" => "https://github.com/igrowbeards/perch"}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4", runtime: false},
{:ex_doc, "~> 0.34", only: :dev, runtime: false, warn_if_outdated: true},
{:mix_test_watch, "~> 1.4", only: [:dev, :test], runtime: false}
]
end
end