-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (49 loc) · 1.11 KB
/
package.json
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
{
"name": "noflo-runtime-msgflo",
"description": "NoFlo runtime for Node.js over AMQP/MQTT etc",
"version": "0.12.0",
"author": {
"name": "Jon Nordby",
"email": "jononor@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/noflo/noflo-runtime-msgflo.git"
},
"license": "MIT",
"keywords": [
"noflo",
"msgflo",
"mqtt",
"amqp"
],
"dependencies": {
"amqplib": "^0.5.1",
"async": "^2.5.0",
"coffeescript": "^2.0.2",
"commander": "^2.10.0",
"debug": "^4.0.0",
"fbp": "^1.6.0",
"mqtt": "^2.7.1",
"msgflo-nodejs": "^0.11.1",
"newrelic": "^3.0.0",
"noflo": "^1.0.0",
"noflo-runtime-base": "^0.10.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"chai": "^4.0.0",
"mocha": "^6.0.0",
"noflo-core": ">= 0.4.0",
"noflo-objects": ">= 0.3.0",
"msgflo": "^0.12.0",
"randomstring": "^1.1.0"
},
"bin": {
"noflo-runtime-msgflo": "./bin/noflo-runtime-msgflo"
},
"main": "./runtime/network.js",
"scripts": {
"test": "mocha --exit --reporter spec --require coffeescript/register spec/*.coffee"
}
}