node-red/package.json

59 lines
1.5 KiB
JSON
Raw Normal View History

2013-09-05 16:02:48 +02:00
{
2013-10-20 22:42:01 +02:00
"name" : "node-red",
2014-06-29 23:55:08 +02:00
"version" : "0.8.1",
2013-10-20 22:42:01 +02:00
"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" : {
2014-01-14 07:13:07 +01:00
"start": "node red.js",
"test": "./node_modules/.bin/grunt"
2013-10-20 22:42:01 +02:00
},
"contributors": [
2013-10-21 09:30:39 +02:00
{"name": "Nick O'Leary"},
2013-10-20 22:42:01 +02:00
{"name": "Dave Conway-Jones"}
],
"keywords": [
2013-10-21 09:28:33 +02:00
"editor", "messaging", "iot", "m2m", "pi", "arduino", "beaglebone", "ibm", "flow"
2013-10-20 22:42:01 +02:00
],
"dependencies": {
"express": "3.x",
2014-04-16 23:42:26 +02:00
"when": "3.1.0",
"nopt": "2.2.0",
2014-04-16 23:42:26 +02:00
"mqtt": "0.3.x",
"ws": "0.4.31",
2014-04-16 23:42:26 +02:00
"fs-extra": "0.8.1",
"clone": "0.1.11",
2014-04-16 23:42:26 +02:00
"mustache": "0.8.1",
"cron":"1.0.4",
"raw-body":"1.1.3",
"twitter-ng":"0.6.2",
"oauth":"0.9.11",
"xml2js":"0.4.2",
"sentiment":"0.2.3",
"irc":"0.3.6",
"follow-redirects":"0.0.3",
"cors":"2.2.0",
2014-05-04 18:30:55 +02:00
"mkdirp":"0.3.5",
"cheerio":"0.15.0",
"uglify-js":"2.4.13"
2013-10-20 22:42:01 +02:00
},
"devDependencies": {
2014-04-16 23:42:26 +02:00
"grunt": "0.4.4",
"grunt-cli": "0.1.13",
2014-04-16 23:42:26 +02:00
"grunt-simple-mocha": "0.4.0",
2014-06-28 22:40:46 +02:00
"grunt-contrib-jshint": "0.10.0",
2014-04-16 23:42:26 +02:00
"mocha": "1.18.2",
2014-05-03 23:26:35 +02:00
"should": "3.3.1",
2014-07-23 15:51:11 +02:00
"sinon": "1.9.1",
"supertest": "^0.13.0"
2013-10-20 22:42:01 +02:00
},
"engines": {
"node": ">=0.8"
}
2013-09-05 16:02:48 +02:00
}