File: luajson-0.10-2.rockspec

package info (click to toggle)
lua-json 1.3.4-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 652 kB
  • sloc: makefile: 67; php: 3
file content (43 lines) | stat: -rw-r--r-- 1,448 bytes parent folder | download | duplicates (5)
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
33
34
35
36
37
38
39
40
41
42
43
package = "luajson"
version = "0.10-2"
source = {
	url = "http://luaforge.net/frs/download.php/3893/luajson-0.10.tar.bz2",
	md5 = "0b6fa5e3a07daabe79241922b0bfda92"
}
description = {
	summary = "customizable JSON decoder/encoder",
	detailed = [[
		LuaJSON is a customizable JSON decoder/encoder using
		LPEG for parsing.
	]],
	homepage = "http://github.com/harningt/luajson",
	maintainer = "Thomas Harning <harningt@gmail.com>",
	license = "MIT/X11"
}
dependencies = {
	"lua >= 5.1",
	"lunit >= 0.4",
	"lpeg >= 0.8.1"
}
build = {
	type = "module",
	modules = {
		json = "src/json.lua",
		["json.util"] = "src/json/util.lua",
		["json.decode"] = "src/json/decode.lua",
		["json.decode.array"] = "src/json/decode/array.lua",
		["json.decode.calls"] = "src/json/decode/calls.lua",
		["json.decode.number"] = "src/json/decode/number.lua",
		["json.decode.object"] = "src/json/decode/object.lua",
		["json.decode.others"] = "src/json/decode/others.lua",
		["json.decode.strings"] = "src/json/decode/strings.lua",
		["json.decode.util"] = "src/json/decode/util.lua",
		["json.encode"] = "src/json/encode.lua",
		["json.encode.array"] = "src/json/encode/array.lua",
		["json.encode.calls"] = "src/json/encode/calls.lua",
		["json.encode.number"] = "src/json/encode/number.lua",
		["json.encode.object"] = "src/json/encode/object.lua",
		["json.encode.others"] = "src/json/encode/others.lua",
		["json.encode.strings"] = "src/json/encode/strings.lua"
	}
}