From 3b42f3bcd938702ea28b2c327ad92cc7b9886496 Mon Sep 17 00:00:00 2001 From: ErikOrjehag Date: Sun, 5 Oct 2014 16:04:16 +0200 Subject: [PATCH] added package.json --- package.json | 38 ++++++++++++++++++++++++++++++++++++++ tiny-json.js | 4 ++-- 2 files changed, 40 insertions(+), 2 deletions(-) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..ee4002c --- /dev/null +++ b/package.json @@ -0,0 +1,38 @@ +{ + "name": "tiny-json", + "version": "0.0.1", + "desciption": "A new approach to packing JSON data ~ 80%", + "keywords": [ + "json", + "pack", + "compress", + "encode", + "shorten", + "small", + "tiny", + "short", + "compression", + "minify", + "dna", + "many" + ], + "homepage": "https://github.com/ErikOrjehag/tiny-json", + "bugs": { + "url": "https://github.com/ErikOrjehag/tiny-json/issues", + "email": "erik@orjehag.se" + }, + "license": "MIT", + "author": "Erik Örjehag (http://orjehag.se)", + "files": ["tiny-json.js"], + "main": "tiny-json", + "repository": { + "type": "git", + "url": "https://github.com/ErikOrjehag/tiny-json.git" + }, + "dependencies": { + "lz-string": "1.3.3" + }, + "devDependencies": { + "mocha": "^1.21.4" + } +} \ No newline at end of file diff --git a/tiny-json.js b/tiny-json.js index 48bcfe5..abf39be 100644 --- a/tiny-json.js +++ b/tiny-json.js @@ -115,10 +115,10 @@ module.exports = (function () { } return { - // Public + // public pack: pack, unpack: unpack, - // Testing + // testing _compress: compress, _decompress: decompress };