-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b8c362b
commit faa202f
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package = "jsonschema" | ||
version = "0.9.9-0" | ||
source = { | ||
url = "git://github.com/iresty/jsonschema.git", | ||
tag = "v0.9.9", | ||
} | ||
|
||
description = { | ||
summary = "JSON Schema data validator", | ||
detailed = [[ | ||
This module is data validator the implements JSON Schema draft 4. | ||
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/ljsonschema . | ||
]], | ||
homepage = "https://github.com/iresty/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", | ||
} | ||
} |