summaryrefslogtreecommitdiff
path: root/Resources/DefaultContent/Libraries/json4lua/json4lua-1.0.0-1.rockspec
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-10-26 11:32:46 +0800
committerchai <chaifix@163.com>2021-10-26 11:32:46 +0800
commit0549b1e5a8a3132005e275d6026db8003cb067d2 (patch)
treef0d7751ec32ecf5c4d23997fa0ffd3450a5a755a /Resources/DefaultContent/Libraries/json4lua/json4lua-1.0.0-1.rockspec
parent32345800737b668011a87328cd3dcce59ec2934c (diff)
*rename folder
Diffstat (limited to 'Resources/DefaultContent/Libraries/json4lua/json4lua-1.0.0-1.rockspec')
-rw-r--r--Resources/DefaultContent/Libraries/json4lua/json4lua-1.0.0-1.rockspec32
1 files changed, 0 insertions, 32 deletions
diff --git a/Resources/DefaultContent/Libraries/json4lua/json4lua-1.0.0-1.rockspec b/Resources/DefaultContent/Libraries/json4lua/json4lua-1.0.0-1.rockspec
deleted file mode 100644
index b3b737a..0000000
--- a/Resources/DefaultContent/Libraries/json4lua/json4lua-1.0.0-1.rockspec
+++ /dev/null
@@ -1,32 +0,0 @@
-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"
- }
-}