-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
51 lines (46 loc) · 1023 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
45
46
47
48
49
50
51
defmodule Vttyl.MixProject do
use Mix.Project
@version "0.5.0"
@repo_url "https://github.com/grain-team/vttyl"
def project do
[
app: :vttyl,
version: @version,
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
source_url: @repo_url,
homepage_url: @repo_url,
name: "Vttyl",
description: "A dead simple vtt parser.",
docs: [
main: "readme",
source_ref: "v#{@version}",
source_url: @repo_url,
extras: ["README.md"]
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp package do
[
maintainers: ["Matt Lewis", "Ryan Johnson"],
licenses: ["MIT"],
links: %{
"GitHub" => @repo_url,
"Made by Grain" => "https://grain.co"
}
]
end
defp deps do
[
{:ex_doc, "~> 0.20", only: :dev},
{:dialyxir, "~> 1.0.0-rc.6", only: [:dev, :test], runtime: false}
]
end
end