c9-core/node_modules/msgpack-js-browser/package.json

54 wiersze
2.7 KiB
JSON

{
"name": "msgpack-js-browser",
"version": "0.1.4",
"description": "A msgpack encoder and decoder using ArrayBuffer and DataView",
"main": "msgpack.js",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"repositories": [
{
"type": "git",
"url": "http://github.com/creationix/msgpack-js-browser.git"
}
],
"github": "http://github.com/creationix/msgpack-js-browser",
"readme": "# msgpack for the browser\n\n[![Build Status](https://secure.travis-ci.org/creationix/msgpack-js-browser.png)](http://travis-ci.org/creationix/msgpack-js-browser)\n\nA handwritten msgpack encoder and decoder for Browsers\n\nThis is a browser port of https://github.com/creationix/msgpack-js\n\nThe original format can be found at <http://wiki.msgpack.org/display/MSGPACK/Format+specification>\n\n## Extension\n\nI've extended the format a little to allow for encoding and decoding of `undefined` and `ArrayBuffer` instances.\n\nThis required three new type codes that were previously marked as \"reserved\".\nThis change means that using these new types will render your serialized data\nincompatible with other messagepack implementations that don't have the same\nextension.\n\nThere are two new types for storing browser `ArrayBuffer` instances. These work just \nlike \"raw 16\" and \"raw 32\" except they are binary buffers instead of strings.\n\n buffer 16 11011000 0xd8\n buffer 32 11011001 0xd9\n\nAlso I've added a type for `undefined` that works just like the `null` type.\n\n undefined 11000100 0xc4\n\n## Usage\n\n``` javascript\nrequire(['msgpack'], function (msgpack) {\n\n var initial = {Hello: \"World\"};\n var encoded = msgpack.encode(initial);\n var decoded = msgpack.decode(encoded);\n\n});\n```\n\n",
"readmeFilename": "README.md",
"_id": "msgpack-js-browser@0.1.4",
"dist": {
"shasum": "622e314e585eae67663b82b1d0698d08922fd766",
"tarball": "https://registry.npmjs.org/msgpack-js-browser/-/msgpack-js-browser-0.1.4.tgz"
},
"_from": "msgpack-js-browser@>=0.1.4 <0.2.0",
"_npmVersion": "1.2.11",
"_npmUser": {
"name": "creationix",
"email": "tim@creationix.com"
},
"maintainers": [
{
"name": "fjakobs",
"email": "fabian.jakobs@web.de"
},
{
"name": "creationix",
"email": "tim@creationix.com"
},
{
"name": "sergi",
"email": "sergi.mansilla@gmail.com"
},
{
"name": "janjongboom",
"email": "jan@c9.io"
}
],
"directories": {},
"_shasum": "622e314e585eae67663b82b1d0698d08922fd766",
"_resolved": "https://registry.npmjs.org/msgpack-js-browser/-/msgpack-js-browser-0.1.4.tgz"
}