diff --git a/Gruntfile.js b/Gruntfile.js index 821f97e1..62709e74 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -10,7 +10,7 @@ module.exports = function(grunt) { ui: 'bdd', reporter: 'spec' }, - all: { src: ['test/*/*/*_spec.js'] }, + all: { src: ['test/*/*/*_spec.js'] } }, jshint: { options: { diff --git a/README.md b/README.md index cde101f2..74444fef 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,8 @@ Copyright 2013, 2016 IBM Corp. under [the Apache 2.0 license](LICENSE). **node-red-node-intel-galileo** - *[mraa-spio](hardware/intel)* - A collection of analogue & digital input & output nodes for the Intel Galileo and Edison. +**node-red-node-pi-gpiod** - *[pigpiod](hardware/pigpiod)* - An alternative to the default PI GPIO nodes that allows remote access - so a host machine can access a remote Pi (via network) and is better for driving multiple servos. + **node-red-node-pi-mcp3008** - *[pimcp3008](hardware/mcp3008)* - Allows A Raspberry Pi to node to read from an MCP3008 Analogue to Digital Converter chip via the SPI bus. **node-red-node-pi-neopixel** - *[neopixel](hardware/neopixel)* - Allows A Raspberry Pi to drive a strip of NeoPixels directly. diff --git a/package.json b/package.json index 0f32886c..78e94d8a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name" : "node-red-nodes", - "version" : "0.0.8", + "version" : "0.0.9", "description" : "Node-RED-nodes package to hold the test framework ONLY - use npm to install individual nodes", "homepage" : "http://nodered.org", "license" : "Apache-2.0", @@ -19,25 +19,22 @@ "devDependencies": { "grunt": "^1.0.1", "grunt-contrib-jshint": "^1.1.0", - "grunt-jscs": "^2.8.0", + "grunt-jscs": "^3.0.1", "grunt-lint-inline": "^1.0.0", "grunt-simple-mocha": "^0.4.1", - "mocha": "^2.4.5", - "should": "^8.4.0", + "mocha": "^3.2.0", + "should": "^11.2.1", "sinon": "^1.17.7", - "supertest": "^1.2.0", + "supertest": "^3.0.0", "proxyquire": "^1.7.11", "pushbullet": "^2.0.0", "when": "^3.7.8", "exif": "^0.6.0", "ngeohash": "^0.6.0", - "nodemailer": "^1.11.0", + "nodemailer": "^4.0.1", "poplib": "^0.1.7", - "mailparser": "^0.6.2", + "mailparser": "^2.0.3", "imap": "^0.8.19", "msgpack-js": "^0.3.0" - }, - "engines": { - "node": ">=0.10" } }