-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
76 lines (65 loc) · 1.78 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
defmodule Flame.MixProject do
use Mix.Project
@version "0.1.0"
def project do
[
app: :flame,
package: package(),
version: @version,
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
docs: [
main: "Flame",
extras: ["README.md", "CHANGELOG.md"]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:epoch, "~> 1.2"},
{:goth, ">= 1.3.1"},
{:finch, "~> 0.11"},
{:tesla, "~> 1.4"},
{:ex_firebase_auth, "~> 0.6.0",
git: "https://github.com/jsmestad/ExFirebaseAuth.git",
ref: "4a981ee10ccc92b9e50ed465d600c198642468c5"},
{:ecto, "~> 3.8"},
{:jason, "~> 1.3"},
# Types
{:dialyxir, ">= 1.0.0", only: [:dev, :test], runtime: false},
# Testing
{:bypass, "~> 2.1.0-rc.0", only: :test},
{:faker, "~> 0.13", only: [:test]},
# Documentation
{:ex_doc, "~> 0.28", only: :dev},
# Lint
{:mix_audit, "~> 2.0", only: [:dev, :test], runtime: false},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false}
]
end
defp description do
"""
An Elixir wrapper around the Firebase Authentication / Google Identity Platform APIs.
"""
end
defp package do
[
maintainers: ["Justin Smestad"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/jsmestad/flame"}
]
end
end