Packages

Module for calculating the delta between 2 laptimes and display it in a readable format

Current section

Files

Jump to
hotlap mix.exs
Raw

mix.exs

defmodule Hotlap.MixProject do
use Mix.Project
def project do
[
app: :hotlap,
version: "1.0.0",
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
preferred_cli_env: [
coveralls: :test,
"coveralls.html": :test,
"coveralls.json": :test,
],
test_coverage: [tool: ExCoveralls],
deps: deps(),
name: "Hotlap",
source_url: "https://github.com/pr0grammr/hotlap",
homepage_url: "https://github.com/pr0grammr/hotlap",
package: package(),
description: description()
]
end
defp package() do
[
name: "hotlap",
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/pr0grammr/hotlap"}
]
end
defp description() do
"Module for calculating the delta between 2 laptimes and display it in a readable format"
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
[
{:ex_doc, "~> 0.21", only: :dev, runtime: false},
{:excoveralls, "~> 0.5.7", only: :test}
]
end
end