Skip to content

Commit

Permalink
feat: release v0.9.8 (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
leslie-tsang authored Feb 19, 2022
1 parent d2dd949 commit 0096f5e
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions rockspec/jsonschema-0.9.8-0.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package = "jsonschema"
version = "0.9.8-0"
source = {
url = "git://github.com/api7/jsonschema.git",
tag = "v0.9.8",
}

description = {
summary = "JSON Schema data validator",
detailed = [[
This library provides a jsonschema draft 4, draft 6, draft 7 validator for Lua/LuaJIT.
Given an JSON schema, it will generates a validator function that can be used
to validate any kind of data (not limited to JSON).
Base on https://github.com/jdesgats/jsonschema .
]],
homepage = "https://github.com/api7/jsonschema",
license = "Apache License 2.0",
}

dependencies = {
"net-url",
"lrexlib-pcre = 2.9.1-1",
}

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

0 comments on commit 0096f5e

Please sign in to comment.