Current section

Files

Jump to

mix.exs

defmodule MapSchemaValidator.MixProject do
use Mix.Project
def project do
[
app: :map_schema_validator,
version: "0.1.3",
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "map_schema_validator",
description: "Map/JSON format verifier, verify if keys/values exists.",
source_url: "https://github.com/nicolkill/map_schema_validator",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
package: package()
]
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.0.0", only: :dev, runtime: false}
]
end
defp package do
[
name: "map_schema_validator",
files: ~w(lib .formatter.exs mix.exs README*),
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/nicolkill/map_schema_validator"},
source_url: "https://github.com/nicolkill/map_schema_validator",
homepage_url: "https://github.com/nicolkill/map_schema_validator"
]
end
end