Got to start somewhere

This commit is contained in:
Nicholas O'Leary
2013-09-05 15:02:48 +01:00
commit 32796dd74c
155 changed files with 21836 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "node-red",
"version": "0.1.0",
"description" : "A visual tool for wiring the Internet of Things",
"scripts": {
"start": "node red.js"
},
"main": "lib/server.js",
"author": "Nicholas O'Leary",
"contributors": [ {"name": "Dave Conway-Jones"} ],
"keywords": ["editor", "messaging", "iot", "m2m", "pi", "arduino", "beaglebone", "ibm"],
"license": "Apache",
"dependencies": {
"express": "3.x",
"mqtt": "*",
"ws": "*",
"mustache": "*"
},
"engines": { "node": ">=0.8" }
}