-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
44 lines (39 loc) · 1005 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
defmodule MarkdownTest.MixProject do
use Mix.Project
def project do
[
app: :markdown_test,
version: "0.1.2",
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