Current section
Files
Jump to
Current section
Files
two_factor_in_a_can
mix.exs
mix.exs
defmodule TwoFactorInACan.MixProject do
use Mix.Project
def project do
[
app: :two_factor_in_a_can,
version: "0.2.0",
elixir: "~> 1.14",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
name: "TwoFactorInACan",
source_url: "https://github.com/mbramson/two_factor_in_a_can",
homepage_url: "http://github.com/mbramson/two_factor_in_a_can",
docs: [
main: "getting-started",
extras: [
"docs/Getting Started.md",
"docs/Roadmap.md"
]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp description() do
"""
TwoFactorInACan provides easy to use functions for implementing two factor
authentication.
"""
end
defp package() do
[
files: ["lib", "mix.exs", "README.md", "LICENSE.md"],
maintainers: ["Mathew Bramson"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/mbramson/two_factor_in_a_can"}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.5", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 0.5", only: [:dev], runtime: false},
{:ex_doc, "~> 0.20", only: :dev, runtime: false},
{:mix_test_watch, "~> 1.2", only: :dev, runtime: false},
{:pot, "~> 1.0", only: :test},
{:stream_data, "~> 0.1", only: :test}
]
end
end