-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
54 lines (47 loc) · 1.07 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
defmodule Styledown.Mixfile do
use Mix.Project
@version "0.0.3"
def project do
[
app: :styledown,
version: @version,
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps,
name: "Styledown",
description: description,
package: package,
docs: docs
]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:execjs, "~> 1.1.3"},
{:ex_doc, "~> 0.11", only: :docs},
{:earmark, "~> 0.2", only: :docs}
]
end
defp description, do: "Elixir integration of Styledown"
defp package do
[
maintainers: ["Victor Solis"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/styledown/styledown_ex"
},
files: ["lib", "vendor", "mix.exs", "README*", "LICENSE*"]
]
end
defp docs do
[
source_ref: "v#{@version}",
main: "Styledown",
canonical: "http://hexdocs.pm/styledown",
source_url: "https://github.com/styledown/styledown_ex"
]
end
end