From 0b4520bfec3acc2356623641371fd006852978ba Mon Sep 17 00:00:00 2001 From: dh0072 Date: Tue, 22 May 2012 11:14:05 -0700 Subject: [PATCH] updated example app package.json to have exact dependencies --- examples/app/package.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/examples/app/package.json b/examples/app/package.json index 1d9343d..d909ff7 100644 --- a/examples/app/package.json +++ b/examples/app/package.json @@ -1,9 +1,11 @@ { - "name": "nmea-app" + "name": "nmea-tty-example-app" , "version": "0.0.1" , "dependencies": { - "express": "2.5.8" - , "ejs": ">= 0.0.1" - , "socket.io": ">= 0.0.1" + // these are the versions i used to test this app. it should work with others + "express": "2.5.8" + , "ejs": "0.7.1" + , "socket.io": "0.9.6" + , "serialport":"0.7.3" // https://github.com/voodootikigod/node-serialport } }