base: fixes regression test lua path
[luajson.git] / lua / json.lua
blob2c44051604e52ddf2db10cef7674573cba23b55d
1 --[[
2 Licensed according to the included 'LICENSE' document
3 Author: Thomas Harning Jr <harningt@gmail.com>
4 ]]
5 local decode = require("json.decode")
6 local encode = require("json.encode")
7 local util = require("json.util")
9 module("json")
10 _VERSION = "1.0.3"
11 _DESCRIPTION = "LuaJSON : customizable JSON decoder/encoder"
12 _COPYRIGHT = "Copyright (c) 2007-2012 Thomas Harning Jr. <harningt@gmail.com>"
13 _M.decode = decode
14 _M.encode = encode
15 _M.util = util