defmodule Difftastic.MixProject do use Mix.Project def project do [ app: :difftastic, description: "Syntax-aware diffs for Elixir, provided by Difftastic", version: "0.2.0", elixir: "~> 1.18", start_permanent: Mix.env() == :prod, deps: deps(), 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 [ {:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false} ] end defp package do [ name: "difftastic", files: ~w(lib .formatter.exs mix.exs README*), licenses: ["MIT"], links: %{"GitHub" => "https://github.com/katafrakt/difftastic-elixir"} ] end end