-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
39 lines (35 loc) · 829 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
defmodule Beats.MixProject do
use Mix.Project
def project do
[
aliases: aliases(),
app: :beats,
version: "0.1.0",
elixir: "~> 1.6",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
def application do
[
extra_applications: [:logger, :portmidi, :ex_ncurses, :parse_trans],
mod: {Beats.Application, []}
]
end
defp aliases do
[
s: "run --no-halt -e \"\" ",
t: "run --no-halt -e \"\" -- --filename test.json"
]
end
defp deps do
[
{:file_system, "~> 0.2"},
{:poison, "~> 3.1"},
{:portmidi, git: "https://github.com/mtrudel/ex-portmidi"},
{:sched_ex, "~> 1.0.0"},
{:ex_ncurses, git: "https://github.com/mtrudel/ex_ncurses.git"},
{:distillery, "~> 1.4", runtime: false}
]
end
end