From bdaebc1738629516c2af54e988f3f2bf13fcc671 Mon Sep 17 00:00:00 2001 From: Ryan Ostrgaer Date: Sat, 8 Jun 2013 21:47:17 -0400 Subject: [PATCH 1/2] Added package.json for easier installation. Updated readme accordingly. --- README.md | 4 +--- code/package.json | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 3 deletions(-) create mode 100644 code/package.json diff --git a/README.md b/README.md index e518437..b2e09e6 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,6 @@ node-osc-unity Node Open Sounce Control Configured to connect serial device like Arduino to Unity over UDP using JSON -npm install serialport -npm install node-osc -npm install coffee +npm install diff --git a/code/package.json b/code/package.json new file mode 100644 index 0000000..9a58adf --- /dev/null +++ b/code/package.json @@ -0,0 +1,24 @@ +{ + "name": "WorldManager", + "preferGlobal": "false", + "version": "0.0.0", + "author": "Rutgers Virtual Worlds", + "description": "Tool for managing and creating unity3d games", + "contributors": [ + { + "name": "Ryan Ostrager", + "email": "rostrage@docs.rutgers.edu" + } + ], + "dependencies" : { + "osc-min" : "*", + "serialport" : "*" + }, + "analyze" : false, + "devDependencies" : [ + ], + "license" : "MIT", + "engines" : { + "node": ">=0.8" + } +} From e157a05430bd863c686669c4bb0f05f20215dcf2 Mon Sep 17 00:00:00 2001 From: Ryan Ostrgaer Date: Sat, 8 Jun 2013 21:49:48 -0400 Subject: [PATCH 2/2] Updated description in package.json --- code/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/package.json b/code/package.json index 9a58adf..df80ead 100644 --- a/code/package.json +++ b/code/package.json @@ -1,9 +1,9 @@ { - "name": "WorldManager", + "name": "node-osc-unity", "preferGlobal": "false", "version": "0.0.0", - "author": "Rutgers Virtual Worlds", - "description": "Tool for managing and creating unity3d games", + "author": "Rick Anderson", + "description": "Tool for serial communication using osc", "contributors": [ { "name": "Ryan Ostrager",