-
Notifications
You must be signed in to change notification settings - Fork 18
/
mix.exs
48 lines (43 loc) · 932 Bytes
/
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
defmodule Pusher.Mixfile do
use Mix.Project
@description """
Pusher HTTP client
"""
def project do
[
app: :pusher,
version: "2.5.0",
elixir: "~> 1.16",
name: "Pusher",
description: @description,
package: package(),
source_url: "https://github.com/edgurgel/pusher",
deps: deps(),
docs: [
main: "readme",
extras: ["README.md"]
]
]
end
def application do
[]
end
defp deps do
[
{:httpoison, "~> 2.0"},
{:signaturex, "~> 1.4"},
{:jason, "~> 1.0"},
{:websockex, "~> 0.4.0"},
{:mimic, "~> 1.0", only: :test},
{:earmark, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.25", only: :dev}
]
end
defp package do
[
maintainers: ["Eduardo Gurgel Pinho", "Bernat Jufré"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/edgurgel/pusher"}
]
end
end