-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathjson4lua-1.0.0-1.rockspec
32 lines (31 loc) · 1018 Bytes
/
json4lua-1.0.0-1.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package="JSON4Lua"
version="1.0.0"
source = {
url = "git://github.com/craigmj/json4lua.git",
tag = "1.0.0"
}
description = {
summary = "JSON4Lua and JSONRPC4Lua implement JSON (JavaScript Object Notation) encoding and decoding and a JSON-RPC-over-http client for Lua.",
detailed = [[
JSON4Lua and JSONRPC4Lua implement JSON (JavaScript Object Notation)
encoding and decoding and a JSON-RPC-over-http client for Lua.
JSON is JavaScript Object Notation, a simple encoding of
Javascript-like objects that is ideal for lightweight transmission
of relatively weakly-typed data. A sub-package of JSON4Lua is
JSONRPC4Lua, which provides a simple JSON-RPC-over-http client and server
(in a CGILua environment) for Lua.
]],
homepage = "http://github.com/craigmj/json4lua/",
license = "GPL"
}
dependencies = {
"lua >= 5.2",
"luasocket",
}
build = {
type = "builtin",
modules = {
["json"] = "json/json.lua",
["json.rpc"] = "json/rpc.lua"
}
}