-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
57 lines (52 loc) · 1.48 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
defmodule PlugShopifyJWT.MixProject do
use Mix.Project
def project do
[
app: :plug_shopify_jwt,
version: "0.1.1",
elixir: "~> 1.10",
test_coverage: [tool: ExCoveralls],
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps()
]
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Jordan Parker"],
licenses: ["AGPL-3.0-only"],
links: %{"GitHub" => "https://github.com/byjpr/plug_shopify_jwt"}
]
end
defp description do
"""
A Plug to validate Shopify JWT
"""
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
[
{:joken, "~> 2.0.0"},
{:phoenix, "~> 1.5.4"},
{:jason, "~> 1.2"},
{:plug_cowboy, "~> 2.0"},
{:timex, "~> 3.7"},
{:git_cli, "~> 0.3", only: :dev, runtime: false},
{:versioce, "~> 1.1.1", only: :dev, runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:excoveralls, "~> 0.10", only: :test, runtime: false},
{:credo, "~> 1.5", only: [:dev, :test], runtime: false},
{:credo_naming, "~> 1.0", only: [:dev, :test], runtime: false}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end