Packages

A library to assist with standardizing error results

Current section

Files

Jump to
railcar mix.exs
Raw

mix.exs

defmodule Railcar.MixProject do
use Mix.Project
def project do
[
app: :railcar,
version: "0.1.0",
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
description: "A library to assist with standardizing error results",
package: package(),
preferred_cli_env: [
"test.watch": :test
],
deps: deps()
]
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/cheerfulstoic/railcar"}
]
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.0", only: :dev, runtime: false},
{:mix_test_watch, "~> 1.0", only: [:dev, :test], runtime: false}
]
end
end