From 36cb8f4676c7b5ff34bd22ad729e00e77efb6f00 Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Thu, 27 Jun 2013 16:28:35 -0500 Subject: [PATCH] Move javascript websockify files to other/js --- other/js/README.md | 7 +++++++ other/{ => js}/package.json | 4 +++- other/{ => js}/websockify.js | 0 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 other/js/README.md rename other/{ => js}/package.json (77%) rename other/{ => js}/websockify.js (100%) diff --git a/other/js/README.md b/other/js/README.md new file mode 100644 index 00000000..8143f984 --- /dev/null +++ b/other/js/README.md @@ -0,0 +1,7 @@ +A JavaScript implementation of the websockify WebSocket-to-TCP bridge/proxy. + +Copyright (C) 2013 - Joel Martin (github.com/kanaka) + +Licensed under LGPL-3. + +See http://github.com/kanaka/websockify for more info. diff --git a/other/package.json b/other/js/package.json similarity index 77% rename from other/package.json rename to other/js/package.json index 2d583b03..c6717407 100644 --- a/other/package.json +++ b/other/js/package.json @@ -1,12 +1,14 @@ { "author": "Joel Martin (http://github.com/kanaka)", "name": "websockify", - "description": "websockify is a WebSocket to TCP proxy/bridge", + "description": "websockify is a WebSocket-to-TCP proxy/bridge", + "license": "LGPL-3", "version": "0.5.0-pre", "repository": { "type": "git", "url": "git://github.com/kanaka/websockify.git" }, + "files": ["../../docs/LICENSE.LGPL-3"], "bin": { "websockify": "./websockify.js" }, diff --git a/other/websockify.js b/other/js/websockify.js similarity index 100% rename from other/websockify.js rename to other/js/websockify.js