defmodule Dictionary.MixProject do use Mix.Project def project do [ app: :dictionary_johnson, version: "0.1.0", elixir: "~> 1.10", start_permanent: Mix.env() == :prod, description: description(), package: package(), deps: deps() ] end defp description do """ Is a random word generator dictionary used to create hangman game """ 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: {Dictionary.Runtime.Application, []}, extra_applications: [:logger] ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:ex_doc, "~> 0.11", only: :dev} # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} ] end end