Current section

Files

Jump to
Raw

mix.exs

defmodule Excessibility.MixProject do
use Mix.Project
def project do
[
app: :excessibility,
version: "0.5.6",
elixir: "~> 1.12",
start_permanent: false,
description: description(),
package: package(),
deps: deps()
]
end
defp description do
"""
Library to aid in testing your application for WCAG compliance automatically using Pa11y and Wallaby.
"""
end
defp package do
[
files: ["lib", "assets", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Andrew Moore"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/lessthanseventy/excessibility"}
]
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
[
{:chromic_pdf, ">= 1.14.0"},
{:credo, "~> 1.5", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.18", only: :dev, runtime: false},
{:floki, ">= 0.30.0"},
{:igniter, ">= 0.7.0", runtime: false},
{:mix_test_interactive, "~> 5.0", only: :dev, runtime: false},
{:mox, "~> 1.1", only: :test},
{:phoenix, ">= 1.5.0"},
{:phoenix_live_view, ">= 0.17.0"},
{:styler, "~> 0.9", only: [:dev, :test], runtime: false},
{:wallaby, ">= 0.25.0"}
]
end
end