Add Tail node as separate node package - adds windows support

This commit is contained in:
Dave Conway-Jones
2018-10-24 15:08:42 +01:00
parent 425f5c151f
commit 5b34702ac4
6 changed files with 201 additions and 0 deletions

27
storage/tail/package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "node-red-node-tail",
"version": "0.0.1",
"description": "A node to tail files for Node-RED",
"dependencies": {
"tail": "^2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-nodes/storage/tail/"
},
"license": "Apache-2.0",
"keywords": [
"node-red",
"tail"
],
"node-red": {
"nodes": {
"tail": "28-tail.js"
}
},
"author": {
"name": "Dave Conway-Jones",
"email": "ceejay@vnet.ibm.com",
"url": "http://nodered.org"
}
}