2014-05-06 19:05:06 +00:00
|
|
|
defmodule JSX.Mixfile do
|
|
|
|
use Mix.Project
|
|
|
|
|
|
|
|
def project do
|
|
|
|
[
|
|
|
|
app: :jsx,
|
2014-08-27 05:45:12 -07:00
|
|
|
version: "2.1.1",
|
2014-05-06 19:05:06 +00:00
|
|
|
description: "an erlang application for consuming, producing and manipulating json. inspired by yajl",
|
|
|
|
package: package
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
defp package do
|
|
|
|
[
|
|
|
|
files: [
|
|
|
|
"CHANGES.md",
|
|
|
|
"LICENSE",
|
|
|
|
"package.exs",
|
|
|
|
"README.md",
|
|
|
|
"rebar.config",
|
|
|
|
"rebar.config.script",
|
|
|
|
"config",
|
|
|
|
"src"
|
|
|
|
],
|
|
|
|
contributors: ["alisdair sullivan"],
|
2014-09-07 14:06:06 -07:00
|
|
|
links: %{"github" => "https://github.com/talentdeficit/jsx"},
|
|
|
|
licenses: ["MIT"]
|
2014-05-06 19:05:06 +00:00
|
|
|
]
|
|
|
|
end
|
|
|
|
end
|