-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
48 lines (44 loc) · 1.23 KB
/
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
defmodule Umwelt.MixProject do
use Mix.Project
def project do
[
app: :umwelt,
version: "0.2.0",
elixir: "~> 1.17",
compilers: [:leex, :yecc] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
deps: deps(),
dialyzer: [plt_add_apps: [:mix]],
name: "Umwelt",
description: "Umwelt is an Elixir parser for umwelt.dev",
package: package(),
homepage_url: "https://umwelt.dev/",
source_url: "https://github.com/sovetnik/umwelt"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:inets, :logger, :public_key, :ssl],
mod: {Umwelt.Client.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:certifi, "~> 2.5"},
{:jason, "~> 1.2"},
{:progress_bar, "~> 3.0"},
{:bypass, "~> 2.1", only: :test},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.29", only: :dev, runtime: false}
]
end
defp package do
[
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/sovetnik/umwelt"}
]
end
end