forked from phoenixframework/phoenix_html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
38 lines (31 loc) · 987 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
defmodule PhoenixHtml.Mixfile do
use Mix.Project
@version "2.2.0"
def project do
[app: :phoenix_html,
version: @version,
elixir: "~> 1.0",
deps: deps,
name: "Phoenix.HTML",
description: "Phoenix.HTML functions for working with HTML strings and templates",
package: package,
docs: [source_ref: "v#{@version}", main: "Phoenix.HTML",
source_url: "https://github.com/phoenixframework/phoenix_html"]]
end
def application do
[applications: [:logger, :plug]]
end
defp deps do
[{:plug, "~> 0.13 or ~> 1.0"},
# Docs dependencies
{:earmark, "~> 0.1", only: :docs},
{:ex_doc, "~> 0.8", only: :docs}]
end
defp package do
[contributors: ["Chris McCord", "José Valim"],
licenses: ["MIT"],
links: %{github: "https://github.com/phoenixframework/phoenix_html"},
files: ~w(lib priv web) ++
~w(brunch-config.js CHANGELOG.md LICENSE mix.exs package.json README.md)]
end
end