Current section

Files

Jump to
warpath mix.exs
Raw

mix.exs

defmodule Warpath.MixProject do
use Mix.Project
@description "A implementation of Jsonpath expression for Elixir."
@version "0.2.0"
def project do
[
app: :warpath,
name: "Warpath",
description: @description,
version: @version,
elixir: "~> 1.6",
package: package(),
start_permanent: Mix.env() == :prod,
deps: deps(),
source_url: "https://github.com/cleidiano/warpath",
docs: [main: "Warpath"]
]
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
[
{:jason, "~> 1.2"},
{:credo, "~> 1.3.0", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.21", only: :dev, runtime: false},
{:yaml_elixir, "~> 2.4", only: :test}
]
end
defp package do
%{
maintainers: ["Cleidiano Oliviera"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/cleidiano/warpath"
}
}
end
end