node-red/package.json

61 lines
1.6 KiB
JSON
Raw Normal View History

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