-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmix.exs
More file actions
48 lines (43 loc) · 960 Bytes
/
mix.exs
File metadata and controls
48 lines (43 loc) · 960 Bytes
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
defmodule GuardianOnetime.Mixfile do
use Mix.Project
@version "1.0.0"
@url "https://github.com/ueberauth/guardian_onetime"
@maintainers [
"Daniel Neighman",
"Sean Callan",
"Sonny Scroggin"
]
def project do
[
app: :guardian_onetime,
version: @version,
elixir: "~> 1.5",
maintainers: @maintainers,
description: "A single use token implementation for Guardian",
homepage_url: @url,
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:guardian, "~> 1.0"},
{:ecto, "~> 2.2"},
{:postgrex, "~> 0.13"},
{:credo, ">= 0.0.0", only: [:dev, :test], runtime: false}
]
end
defp package do
[
maintainers: @maintainers,
licenses: ["MIT"],
links: %{github: @url},
files: ~w(lib) ++ ~w(LICENSE mix.exs README.md)
]
end
end