-
Notifications
You must be signed in to change notification settings - Fork 42
/
mix.exs
46 lines (41 loc) · 1.1 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
defmodule WebPushEncryption.Mixfile do
use Mix.Project
@version "0.3.1"
def project do
[
app: :web_push_encryption,
version: @version,
elixir: "~> 1.4",
description: "Web push encryption library",
source_url: "https://github.com/tuvistavie/elixir-web-push-encryption",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps(),
docs: [source_ref: "#{@version}", extras: ["README.md"], main: "readme"]
]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
{:httpoison, "~> 1.0"},
{:jose, "~> 1.11.1"},
{:poison, "~> 3.0", only: [:dev, :test]},
{:earmark, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.11", only: :dev}
]
end
defp package do
[
maintainers: ["Daniel Perez"],
files: ["lib", "mix.exs", "README.md"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/tuvistavie/elixir-web-push-encryption",
"Docs" => "http://hexdocs.pm/web_push_encryption/"
}
]
end
end