Packages
smart_city
2.8.2
6.0.0
5.4.7
5.4.6
5.4.5
5.4.4
5.4.3
5.4.2
5.4.1
5.4.0
5.3.0
5.2.8
5.2.6
5.2.5
5.2.4
5.2.3
5.2.2
5.2.1
5.2.0
5.1.1
5.1.0
5.0.7
5.0.6
5.0.5
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
4.0.1
4.0.0
3.25.0
3.24.0
3.23.0
3.22.0
3.21.0
3.20.1
3.20.0
3.19.1
3.19.0
3.18.3
3.18.2
3.18.1
3.18.0
3.17.0
3.16.0
3.15.1
3.15.0
3.14.1
3.14.0
3.13.0
3.12.0
3.11.0
3.10.0
3.9.0
3.8.0
3.7.0
3.6.0
3.5.1
3.5.0
3.4.0
3.3.0
3.2.4
3.2.3
3.2.1
3.2.0
3.1.0
3.0.0
2.9.0
2.8.2
2.8.0
2.7.1
2.7.0
2.6.1
2.5.0
2.4.2
retired
2.4.1
2.4.0
2.3.0
2.2.0
2.1.6
2.1.5
2.1.4
2.1.3
2.1.2
A library for shared helper modules in the Smart Cities Data project.
Current section
Files
Jump to
Current section
Files
smart_city
mix.exs
mix.exs
defmodule SmartCity.MixProject do
use Mix.Project
def project do
[
app: :smart_city,
version: "2.8.2",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
description: description(),
package: package(),
source_url: "https//www.github.com/smartcitiesdata/smart_city"
]
end
def application do
[]
end
defp deps do
[
{:brook_serializer, "~> 1.0"},
{:checkov, "~> 0.4", only: :test},
{:credo, "~> 1.1", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 0.5", only: [:dev]},
{:ex_doc, "~> 0.21", only: :dev},
{:husky, "~> 1.0", only: :dev, runtime: false},
{:jason, "~> 1.1"},
{:mime, "~> 1.3"},
{:mix_test_watch, "~> 0.9", only: :dev, runtime: false},
{:placebo, "~> 1.2", only: [:dev, :test, :integration]}
]
end
defp description do
"A library for shared helper modules in the Smart Cities Data project."
end
defp package do
[
maintainers: ["smartcitiesdata"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://www.github.com/smartcitiesdata/smart_city"}
]
end
defp docs do
[
main: "readme",
source_url: "https://github.com/smartcitiesdata/smart_city",
extras: [
"README.md"
]
]
end
end