From cdeb338fe464e10d32c6e5d9a347e58d0707cbf6 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Thu, 27 Dec 2012 03:17:51 +0000 Subject: [PATCH] Added a package.json (so it can be installed by npm). --- package.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..761a312 --- /dev/null +++ b/package.json @@ -0,0 +1,29 @@ +{ + "name": "utf16", + "version": "0.8.0", + "description": "easy interfaces for Unicode compliance", + + "keywords": [ + "unicode", "string", + "utf-16", "utf16", + "ucs-2", "ucs2" + ], + + "bugs": { + "email": "saurik@saurik.com" + }, + + "author": { + "name": "Jay Freeman (saurik)", + "email": "saurik@saurik.com", + "url": "http://www.saurik.com/" + }, + + "files": ["utf16.js"], + "main": "utf16", + + "repository": { + "type": "git", + "url": "git://git.saurik.com/utf16js.git" + } +} -- 2.47.2