-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.64 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
70
{
"name": "aedes",
"version": "0.26.1",
"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 <hello@matteocollina.com>",
"license": "MIT",
"devDependencies": {
"compute-mode": "^1.0.0",
"concat-stream": "^1.4.7",
"convert-hrtime": "^1.0.0",
"coveralls": "^2.11.6",
"duplexify": "^3.4.1",
"faucet": "0.0.1",
"istanbul": "^0.4.1",
"mqtt": "^2.0.0",
"mqtt-connection": "^3.0.0",
"pre-commit": "^1.0.10",
"standard": "^10.0.0",
"tape": "^4.0.0",
"websocket-stream": "^4.0.0"
},
"dependencies": {
"aedes-packet": "^1.0.0",
"aedes-persistence": "^3.0.0",
"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.0.0",
"mqtt-packet": "^5.0.0",
"pump": "^1.0.0",
"qlobber": "^0.7.0",
"retimer": "^1.0.0",
"reusify": "^1.0.0",
"safe-buffer": "^5.0.1",
"shortid": "^2.1.3",
"through2": "^2.0.0",
"uuid": "^3.0.0",
"xtend": "^4.0.1"
}
}