Current section
Files
Jump to
Current section
Files
mix.exs
defmodule JsonPtr.MixProject do
use Mix.Project
def project do
[
app: :json_ptr,
version: "1.3.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
package: [
description: "JSONPointer tools",
licenses: ["MIT"],
files: ~w(lib mix.exs README* LICENSE* VERSIONS*),
links: %{"GitHub" => "https://github.com/E-xyza/json_ptr"}
],
deps: deps(),
source_url: "https://github.com/E-xyza/json_ptr/",
docs: [main: "JsonPtr"]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:jason, "~> 1.4.0", optional: true},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4", only: :dev}
]
end
end