defmodule Hangman.MixProject do use Mix.Project def project do [ app: :hangmanJohnson, version: "0.1.0", elixir: "~> 1.10", start_permanent: Mix.env() == :prod, description: description(), package: package(), deps: deps() ] end defp description do """ hangman API to interact with hangman dictionary """ end defp package do [ files: ["lib", "mix.exs", "README*", "LICENSE*"], maintainers: ["Johnson Dusabe"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/joshwambere/elixir-upskilling"} ] end # Run "mix help compile.app" to learn about applications. def application do [ mod: {Hangman.Runtime.Application, []}, extra_applications: [:logger] ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:dictionaryHangman, "~> 0.1.0"}, {:ex_doc, "~> 0.11", only: :dev}, {:dialyxir, "~> 1.0", only: [:dev], runtime: false} ] end end