Current section

Files

Jump to
Raw

mix.exs

defmodule HtmlEntities.Mixfile do
use Mix.Project
def project do
[
app: :html_entities,
version: "0.2.2",
name: "HtmlEntities",
source_url: "https://github.com/martinsvalin/html_entities",
elixir: "~> 1.0",
description: description,
package: package,
deps: deps
]
end
defp description do
"""
Decode HTML entities in a string.
"""
end
defp package do
[
maintainers: ["Martin Svalin", "Dávid Kovács"],
files: ["lib", "mix.exs", "README*", "LICENSE*"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/martinsvalin/html_entities"}
]
end
defp deps do
[
{:earmark, "~> 0.1", only: :dev},
{:ex_doc, "~> 0.7", only: :dev}
]
end
def application do
[applications: []]
end
end