forked from moscajs/aedes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.24 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
50
51
52
53
54
55
56
57
58
{
"name": "aedes",
"version": "0.7.0",
"description": "Stream-based MQTT broker",
"main": "aedes.js",
"scripts": {
"lint": "standard",
"test": "tape test/*.js test/*/*.js | faucet",
"ci": "npm run lint; npm run test"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/mcollina/aedes.git"
},
"bugs": {
"url": "http://github.com/mcollina/aedes/issues"
},
"keywords": [
"mqtt",
"broker",
"stream",
"internet",
"of",
"things"
],
"author": "Matteo Collina <hello@matteocollina.com>",
"license": "MIT",
"devDependencies": {
"concat-stream": "^1.4.7",
"duplexify": "^3.4.1",
"faucet": "0.0.1",
"mqtt": "^1.0.6",
"mqtt-connection": "^2.1.0",
"pre-commit": "^1.0.10",
"standard": "^4.0.1",
"tape": "^4.0.0"
},
"dependencies": {
"bulk-write-stream": "^1.0.0",
"end-of-stream": "^1.1.0",
"fastfall": "^1.0.0",
"fastparallel": "^1.5.2",
"fastseries": "^1.0.1",
"from2": "^1.3.0",
"mqemitter": "^0.4.0",
"mqtt-packet": "^3.0.0",
"pump": "^1.0.0",
"qlobber": "^0.5.1",
"retimer": "^1.0.0",
"shortid": "^2.1.3",
"through2": "^0.6.3",
"uuid": "^2.0.1"
}
}