Current section
Files
Jump to
Current section
Files
markdown_test
mix.exs
mix.exs
defmodule MarkdownTest.MixProject do
use Mix.Project
def project do
[
app: :markdown_test,
version: "0.1.0",
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
]
end
defp description, do: "Test the Elixir code in your markdown files."
defp package do
[
name: "markdown_test",
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/MainShayne233/markdown_test"}
]
end
def application do
[]
end
defp deps do
[
{:mix_test_watch, "~> 0.9.0", only: :dev, runtime: false},
{:excoveralls, "~> 0.12.0", only: [:dev, :test], runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end