diff --git a/README.md b/README.md index d940b49a..5c9bc5c1 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,14 @@ To manually install using this repo: To run tests on all of the nodes you will need the node-red runtime: - npm install node-red --no-save + npm i node-red-nodes + npm i node-red --no-save + npm test + +If you already have Node-RED installed you can point to the existing installation to save space. + + npm i node-red-nodes + npm i {path_to_your_existing_Node-RED-install} --no-save npm test ## Contributing diff --git a/package.json b/package.json index d88802dc..b4830f6f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-red-nodes", - "version": "0.0.11", + "version": "0.1.0", "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", @@ -20,6 +20,9 @@ }, { "name": "Ben Hardill" + }, + { + "name": "Mike Blackstock" } ], "keywords": [ @@ -53,6 +56,6 @@ "when": "^3.7.8" }, "peerDependencies": { - "node-red": "^0.18.4" + "node-red": "0.*" } }