Current section
Files
Jump to
Current section
Files
odgn_concat_json
mix.exs
mix.exs
defmodule ConcatJson.MixProject do
use Mix.Project
@version "0.1.0"
def project do
[
app: :odgn_concat_json,
name: "ODGN Concat JSON",
version: @version,
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
dialyzer: dialyzer(),
description: description(),
package: package(),
docs: docs()
]
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.0", only: [:dev, :test]},
{:dialyxir, "~> 0.5", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.19.2", only: :dev, runtime: false}
]
end
defp dialyzer() do
[
ignore_warnings: "dialyzer.ignore"
]
end
defp description() do
"""
Concatenated JSON streaming parser
"""
end
defp package() do
[
name: "odgn_concat_json",
maintainers: ["Alexander Veenendaal"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/odogono/elixir-concat-json"},
files: ["lib", "mix.exs", "README.md", "LICENSE"]
]
end
defp docs() do
[
main: "readme",
name: "ODGN ConcatJSON",
source_ref: "v#{@version}",
canonical: "http://hexdocs.pm/odgn_concat_json",
source_url: "https://github.com/odogono/elixir-concat-json",
extras: [
"README.md"
]
]
end
end