Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions rockspec/jsonschema-0.9.10-0.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package = "jsonschema"
version = "0.9.10-0"
source = {
url = "git://github.com/api7/jsonschema.git",
tag = "v0.9.10",
}

description = {
summary = "JSON Schema data validator",
detailed = [[
This module is a data validator that implements JSON Schema draft 4.
Given a JSON schema, it will generate a validator function that can be used
to validate any kind of data (not limited to JSON).

Based on https://github.com/jdesgats/ljsonschema .
]],
homepage = "https://github.com/api7/jsonschema",
license = "Apache License 2.0",
}

dependencies = {
"net-url",
"lrexlib-pcre = 2.9.1-1",
Comment thread
nic-6443 marked this conversation as resolved.
}

build = {
type = "builtin",
modules = {
["jsonschema"] = "lib/jsonschema.lua",
["jsonschema.store"] = "lib/jsonschema/store.lua",
}
}
Loading