bump email, feed parser, twilio, sqlite, rbe packages

This commit is contained in:
Dave Conway-Jones 2018-03-29 09:34:31 +01:00
parent cf48039427
commit 4a8f071c91
No known key found for this signature in database
GPG Key ID: 9E7F9C73F5168CD4
5 changed files with 18 additions and 15 deletions

View File

@ -1,6 +1,6 @@
{
"name" : "node-red-node-rbe",
"version" : "0.2.1",
"version" : "0.2.2",
"description" : "A Node-RED node that provides report-by-exception (RBE) and deadband capability.",
"dependencies" : {
},

View File

@ -1,6 +1,6 @@
{
"name": "node-red-node-email",
"version": "0.1.25",
"version": "0.1.26",
"description": "Node-RED nodes to send and receive simple emails",
"dependencies": {
"nodemailer": "^1.11.0",

View File

@ -1,6 +1,6 @@
{
"name": "node-red-node-feedparser",
"version": "0.1.10",
"version": "0.1.11",
"description": "A Node-RED node to get RSS Atom feeds.",
"dependencies": {
"feedparser": "^2.2.9",

View File

@ -1,6 +1,6 @@
{
"name" : "node-red-node-twilio",
"version" : "0.0.15",
"version" : "0.1.0",
"description" : "A Node-RED node to send SMS messages via the Twilio service.",
"dependencies" : {
"twilio" : "^3.11.3"

View File

@ -1,18 +1,21 @@
{
"name" : "node-red-node-sqlite",
"version" : "0.2.0",
"description" : "A sqlite node for Node-RED",
"dependencies" : {
"sqlite3" : "3.*"
"name": "node-red-node-sqlite",
"version": "0.2.1",
"description": "A sqlite node for Node-RED",
"dependencies": {
"sqlite3": "^4.0.0"
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/storage/sqlite/"
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes/storage/sqlite/"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "sqlite" ],
"node-red" : {
"nodes" : {
"keywords": [
"node-red",
"sqlite"
],
"node-red": {
"nodes": {
"sqlite": "sqlite.js"
}
},