Packages

Basebones Noonlight API client

Current section

Files

Jump to
noonlight mix.exs
Raw

mix.exs

defmodule Noonlight.MixProject do
use Mix.Project
def project do
[
app: :noonlight,
version: "0.1.1",
description: "A Noonlight client",
build_path: "_build",
config_path: "config/config.exs",
deps_path: "deps",
lockfile: "mix.lock",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: [
licenses: [],
links: %{"Github" => "https://github.com/ROARforGood/noonlight"},
description: "Basebones Noonlight API client"
]
]
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
[
{:tesla, "~> 1.4"},
{:hackney, "~> 1.17"},
{:jason, "~> 1.4"},
{:plug, "~> 1.8"},
{:uuid, "~> 1.1"},
{:plug_cowboy, "~> 2.7.2"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end