From 35e389c6698e9a7292835655259fc94acb9abde5 Mon Sep 17 00:00:00 2001 From: Hilmar Lapp Date: Sun, 14 Feb 2016 13:40:40 -0500 Subject: [PATCH] Updates serialport dependency to one that installs on 0.12.+ The dependency on the ninjablocks/node-serialport fork fails to install on nodejs 4.x, and likely would on 0.12.x as well. Also increments version, and adds minimum nodejs version according to serialport declaration. This is to distinguish from previous version. --- package.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1e418d2..d5b7171 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ninja-arduino", - "version": "0.1.0", + "version": "0.1.1", "description": "Driver handling communication to the Ninja Blocks arduino cape.", "main": "index.js", "repository": "", @@ -17,7 +17,10 @@ ], "license": "MIT", "dependencies": { - "serialport": "git://github.com/ninjablocks/node-serialport.git", + "serialport": "~2.0.6", "through": "~2.2.6" + }, + "engines": { + "node": ">=0.10.0" } }