forked from moscajs/aedes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.62 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "aedes",
"version": "0.30.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 coverage",
"coverage": "istanbul cover tape test/*.js test/*/*.js",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"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 <[email protected]>",
"license": "MIT",
"devDependencies": {
"compute-mode": "^1.0.0",
"concat-stream": "^1.4.7",
"convert-hrtime": "^2.0.0",
"coveralls": "^2.11.6",
"duplexify": "^3.5.1",
"faucet": "0.0.1",
"istanbul": "^0.4.1",
"mqtt": "^2.12.0",
"mqtt-connection": "^3.0.0",
"pre-commit": "^1.0.10",
"standard": "^10.0.3",
"tape": "^4.8.0",
"websocket-stream": "^5.0.1"
},
"dependencies": {
"aedes-packet": "^1.0.0",
"aedes-persistence": "^5.1.1",
"bulk-write-stream": "^1.0.0",
"end-of-stream": "^1.1.0",
"fastfall": "^1.0.0",
"fastparallel": "^2.0.0",
"fastseries": "^1.5.0",
"from2": "^2.1.0",
"mqemitter": "^2.2.0",
"mqtt-packet": "^5.4.0",
"pump": "^1.0.0",
"retimer": "^1.0.0",
"reusify": "^1.0.2",
"safe-buffer": "^5.1.1",
"shortid": "^2.1.3",
"through2": "^2.0.0",
"uuid": "^3.1.0",
"xtend": "^4.0.1"
}
}