-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmix.exs
More file actions
47 lines (42 loc) · 1.02 KB
/
mix.exs
File metadata and controls
47 lines (42 loc) · 1.02 KB
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
defmodule GuardianPaseto.MixProject do
use Mix.Project
def project do
[
app: :guardian_paseto,
version: "0.2.1",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:guardian, "~> 1.0"},
{:paseto, "~> 1.3.1"},
{:poison, "~>3.1"},
{:credo, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:stream_data, "~> 0.1", only: :test},
{:elixir_uuid, "~> 1.2"},
{:ex_doc, "~> 0.19.0", only: :dev, runtime: false}
]
end
defp description do
"A backend for validating issued Paseto through Guardian."
end
defp package do
[
name: "guardian_paseto",
files: ["lib", "mix.exs", "LICENSE"],
maintainers: ["Ian Lee Clark"],
licenses: ["BSD 3-clause"],
links: %{"Github" => "https://github.com/GrappigPanda/guardian_paseto"}
]
end
end