Skip to content

Commit 177f568

Browse files
authored
feat: release v0.9.7 (#75)
1 parent 7bd1fec commit 177f568

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

rockspec/jsonschema-0.9.7-0.rockspec

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
package = "jsonschema"
2+
version = "0.9.7-0"
3+
source = {
4+
url = "git://github.com/api7/jsonschema.git",
5+
tag = "v0.9.7",
6+
}
7+
8+
description = {
9+
summary = "JSON Schema data validator",
10+
detailed = [[
11+
This library provides a jsonschema draft 4, draft 6, draft 7 validator for Lua/LuaJIT.
12+
Given an JSON schema, it will generates a validator function that can be used
13+
to validate any kind of data (not limited to JSON).
14+
15+
Base on https://github.com/jdesgats/jsonschema .
16+
]],
17+
homepage = "https://github.com/api7/jsonschema",
18+
license = "Apache License 2.0",
19+
}
20+
21+
dependencies = {
22+
"net-url",
23+
}
24+
25+
build = {
26+
type = "builtin",
27+
modules = {
28+
["jsonschema"] = "lib/jsonschema.lua",
29+
["jsonschema.store"] = "lib/jsonschema/store.lua",
30+
}
31+
}

0 commit comments

Comments
 (0)