-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmix.exs
45 lines (40 loc) · 1018 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
42
43
44
45
defmodule ESTree.Mixfile do
use Mix.Project
def project do
[
app: :estree,
version: "2.7.0",
elixir: "~> 1.0",
deps: deps(),
description: description(),
package: package(),
source_url: "https://github.com/bryanjos/elixir-estree"
]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
{:ex_doc, "~> 0.21.1", only: :dev},
{:dialyze, "~> 0.2", only: :dev},
{:shouldi, "~> 0.3.2", only: :test},
{:poison, "~> 4.0", only: :test}
]
end
defp description do
"""
Represents the JavaScript AST from the ESTree spec.
Includes tools for building an AST and generating code from it.
"""
end
defp package do
# These are the default files included in the package
[
files: ["lib", "mix.exs", "README.md", "CHANGELOG.md"],
maintainers: ["Bryan Joseph"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/bryanjos/elixir-estree"}
]
end
end