forked from node-red/node-red
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name" : "node-red",
"version" : "0.6.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",
"test": "mocha test"
},
"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.8.0",
"nopt": "2.2.0",
"mqtt": "~0.3.7",
"ws": "0.4.31",
"fs-extra": "~0.8.1",
"clone": "0.1.11",
"mustache": "~0.8.1",
"cron":"~1.0.3",
"raw-body":"1.1.2",
"twitter-ng":"~0.6.2",
"oauth":"~0.9.11",
"xml2js":"~0.2.8",
"sentiment":"~0.2.1",
"irc":"~0.3.6",
"follow-redirects":"~0.0.3",
"cors":"~2.2.0",
"mkdirp":"~0.3.5"
},
"devDependencies": {
"grunt": "~0.4.4",
"grunt-simple-mocha": "~0.4.0",
"mocha": "~1.12.0",
"should": "~1.2.2"
},
"engines": {
"node": ">=0.8"
}
}