Merge branch '1.0.x' into 1.1.x
[luajson.git] / lua / json.lua
blob2c281de38ccd228747d318b6d8c00d5ec6711d33
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.1.2"
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