Packages

Translates a string of words to a select number of lingos. Right now the only lingo available is Pirate, more to come shortly!

Current section

Files

Jump to
Raw

mix.exs

defmodule TalkLikeAX.MixProject do
use Mix.Project
def project do
[
app: :talk_like_a_x,
version: "0.0.2",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
name: "Talk Like A (x)",
source_url: "https://github.com/CodingZeal/talk_like_a_x"
]
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},
{:yaml_elixir, "~> 2.5"},
{:credo, "~> 1.4", only: [:dev, :test], runtime: false},
{:mix_test_watch, "~> 1.0", only: :dev, runtime: false},
{:deep_merge, "~> 1.0"}
]
end
defp description() do
"Translates a string of words to a select number of lingos. Right now the only lingo available is Pirate, more to come shortly!"
end
defp package() do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/CodingZeal/talk_like_a_x"}
]
end
end