From 2c65241fbb10ae7db59f2594a60ac4cb2f0a7149 Mon Sep 17 00:00:00 2001 From: Krishna Srinivas Date: Tue, 16 Jun 2015 02:26:34 +0530 Subject: [PATCH] fix install issues with node v0.12 #19 --- app.js | 1 - package.json | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/app.js b/app.js index 141306d..f3e329b 100644 --- a/app.js +++ b/app.js @@ -5,7 +5,6 @@ var path = require('path'); var ws = require('websocket').server; var pty = require('pty.js'); var fs = require('fs'); -var waitpid = require('waitpid'); var opts = require('optimist') .options({ diff --git a/package.json b/package.json index 59207bb..48ed712 100644 --- a/package.json +++ b/package.json @@ -4,9 +4,8 @@ "dependencies": { "express": "3.5.1", "websocket": "^1.0", - "pty.js": "git+https://github.com/terryschen/pty.js", - "optimist": "^0.6", - "waitpid": "^0.1" + "pty.js": "^0.2.7-1", + "optimist": "^0.6" }, "devDependencies": { "load-grunt-tasks": "^3.0",