forked from slime-lang/phoenix_slime
-
Notifications
You must be signed in to change notification settings - Fork 6
/
mix.exs
41 lines (36 loc) · 948 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
defmodule PhoenixSlime.Mixfile do
use Mix.Project
@version "0.13.0"
def project do
[
app: :phoenix_slime,
deps: deps(),
description: "Phoenix Template Engine for Slim-like templates",
elixir: "~> 1.4",
package: package(),
version: @version
]
end
def application do
[applications: [:phoenix, :slime]]
end
def deps do
[
{:phoenix, "~> 1.6.0"},
{:phoenix_html, "~> 3.0"},
{:phoenix_live_view, "> 0.18.0"},
{:jason, "~> 1.0", optional: true},
{:slime, github: "tensiondriven/slime", branch: "master"},
{:ex_doc, ">= 0.0.0", only: :dev},
{:earmark, ">= 0.0.0", only: :dev}
]
end
defp package do
[
maintainers: ["Sean Callan", "Alexander Stanko"],
files: ["lib", "priv", "mix.exs", "README*", "LICENSE*"],
licenses: ["MIT"],
links: %{github: "https://github.com/slime-lang/phoenix_slime"}
]
end
end