mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
e1dbb95396
Fixes #85 As well as adding deep-clone (via the new dependency on the 'clone' module), we no longer clone the message if there is a single recipient. This makes simple node-to-node flows more efficient. I've done some simple profiling using process.hrtime to time how long the Node.send function takes, and at best, this change is neutral to performance.
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name" : "node-red",
|
|
"version" : "0.4.0",
|
|
"description" : "A visual tool for wiring the Internet of Things",
|
|
"homepage" : "http://nodered.org",
|
|
"license" : "Apache",
|
|
"repository" : {
|
|
"type":"git",
|
|
"url":"https://github.com/node-red/node-red.git"
|
|
},
|
|
"main" : "red/red.js",
|
|
"scripts" : {
|
|
"start": "node red.js"
|
|
},
|
|
"contributors": [
|
|
{"name": "Nick O'Leary"},
|
|
{"name": "Dave Conway-Jones"}
|
|
],
|
|
"keywords": [
|
|
"editor", "messaging", "iot", "m2m", "pi", "arduino", "beaglebone", "ibm", "flow"
|
|
],
|
|
"dependencies": {
|
|
"express": "3.x",
|
|
"when": "~2.6.0",
|
|
"mqtt": "~0.3.3",
|
|
"ws": "~0.4.31",
|
|
"fs-extra": "~0.8.1",
|
|
"clone": "~0.1.11",
|
|
"mustache": "~0.7.2",
|
|
"cron":"1.x",
|
|
"ntwitter":"0.5.0",
|
|
"oauth":"~0.9.10",
|
|
"xml2js":"~0.2.8",
|
|
"sentiment":"~0.2.1",
|
|
"irc":"~0.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "~1.12.0",
|
|
"should": "~1.2.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.8"
|
|
}
|
|
}
|