-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
60 lines (55 loc) · 1.55 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
49
50
51
52
53
54
55
56
57
58
59
60
defmodule Zexbox.MixProject do
use Mix.Project
def project do
[
app: :zexbox,
version: "1.4.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
dialyzer: [plt_add_apps: [:mix, :ex_unit]],
description: description(),
package: package(),
deps: deps(),
name: "Zexbox",
source_url: "https://github.com/Intellection/zexbox",
test_coverage: [
ignore_modules: [
Mix.Tasks.Bump,
Zexbox.Metrics.Connection
]
]
]
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
[
{:credo, "~> 1.7.10", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4.5", only: [:dev, :test], runtime: false},
{:doctor, "~> 0.22.0", only: [:dev, :test]},
{:ex_doc, "~> 0.35.1", only: :dev, runtime: false},
{:instream, "~> 2.2"},
{:ldclient, "~> 3.0.0", hex: :launchdarkly_server_sdk},
{:mix_audit, "~> 2.0", only: [:dev, :test], runtime: false},
{:mock, "~> 0.3.0", only: :test},
{:sobelow, "~> 0.8", only: [:dev, :test]},
{:telemetry, "~> 1.3"}
]
end
defp description() do
"Logging, Metrics and Feature Flagging in Elixir."
end
defp package() do
[
name: "zexbox",
files: ~w(lib .formatter.exs mix.exs README* LICENSE*),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/Intellection/zexbox"}
]
end
end