Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Zexbox.MixProject do
use Mix.Project
def project do
[
app: :zexbox,
version: "1.3.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.6", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.3", only: [:dev, :test], runtime: false},
{:doctor, "~> 0.21.0", only: [:dev, :test]},
{:ex_doc, "~> 0.16", 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.2.1"}
]
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