-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
66 lines (60 loc) · 1.4 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
defmodule UeberauthWorkos.MixProject do
use Mix.Project
@version "0.0.3"
@source_url "https://github.com/codesandbox/ueberauth_workos"
def project do
[
app: :ueberauth_workos,
version: @version,
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
name: "Ueberauth Strategy for WorkOS",
source_url: @source_url,
homepage_url: @source_url,
deps: deps(),
docs: docs(),
package: package()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, "~> 0.29", only: :dev, runtime: false},
{:jason, "~> 1.0", optional: true},
{:mock, "~> 0.3.0", only: :test},
{:oauth2, "~> 2.0"},
{:ueberauth, "~> 0.10"}
]
end
defp docs do
[
main: "readme",
extras: [
"README.md": [title: "Overview"],
"guides/getting-started.md": [title: "Getting Started"],
"CODE_OF_CONDUCT.md": [title: "Code of Conduct"],
"CONTRIBUTING.md": [title: "Contributing"],
LICENSE: [title: "License"]
]
]
end
defp package do
[
description: "Ueberauth Strategy for WorkOS Single Sign-On",
files: [
"guides",
"lib",
"LICENSE",
"mix.exs",
"README.md"
],
licenses: ["MIT"],
links: %{"GitHub" => @source_url},
maintainers: ["AJ Foster"]
]
end
end