Skip to content

Commit faa202f

Browse files
authored
feat: release v0.9.9 (#82)
1 parent b8c362b commit faa202f

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

rockspec/jsonschema-0.9.9-0.rockspec

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package = "jsonschema"
2+
version = "0.9.9-0"
3+
source = {
4+
url = "git://github.com/iresty/jsonschema.git",
5+
tag = "v0.9.9",
6+
}
7+
8+
description = {
9+
summary = "JSON Schema data validator",
10+
detailed = [[
11+
This module is data validator the implements JSON Schema draft 4.
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/ljsonschema .
16+
]],
17+
homepage = "https://github.com/iresty/jsonschema",
18+
license = "Apache License 2.0",
19+
}
20+
21+
dependencies = {
22+
"net-url",
23+
"lrexlib-pcre = 2.9.1-1",
24+
}
25+
26+
build = {
27+
type = "builtin",
28+
modules = {
29+
["jsonschema"] = "lib/jsonschema.lua",
30+
["jsonschema.store"] = "lib/jsonschema/store.lua",
31+
}
32+
}

0 commit comments

Comments
 (0)