forked from sikanhe/algolia-elixir
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
37 lines (33 loc) · 754 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
defmodule Algolia.Mixfile do
use Mix.Project
def project do
[
app: :algolia,
version: "0.8.0",
description: "Elixir implementation of Algolia Search API",
elixir: "~> 1.5",
package: package(),
deps: deps(),
docs: [extras: ["README.md"], main: "readme"]
]
end
def package do
[
maintainers: ["Sikan He"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/sikanhe/algolia-elixir"}
]
end
def application do
[applications: [:logger, :hackney]]
end
defp deps do
[
{:hackney, "~> 1.9 or ~> 1.10"},
{:jason, "~> 1.0"},
# Docs
{:ex_doc, "~> 0.19", only: :dev},
{:inch_ex, ">= 0.0.0", only: :dev}
]
end
end