forked from moscajs/aedes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.09 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
71
72
73
74
75
76
77
78
79
{
"name": "aedes",
"version": "0.38.0",
"description": "Stream-based MQTT broker",
"main": "aedes.js",
"types": "types/index.d.ts",
"scripts": {
"lint": "standard",
"tslint": "tslint types/**/*.d.ts",
"typescript-compile-test": "tsc -p test/typescript/tsconfig.json",
"typescript-compile-execute": "node test/typescript/*.js",
"typescript-test": "npm run typescript-compile-test && npm run typescript-compile-execute",
"test": "tape test/*.js test/*/*.js | faucet",
"ci": "npm run lint && npm run typescript-test && npm run coverage",
"coverage": "istanbul cover tape test/*.js test/*/*.js",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"pre-commit": [
"lint",
"tslint",
"test",
"typescript-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": {
"@types/node": "^8.10.40",
"compute-mode": "^1.0.0",
"concat-stream": "^2.0.0",
"convert-hrtime": "^2.0.0",
"coveralls": "^3.0.2",
"duplexify": "^4.0.0",
"faucet": "0.0.1",
"istanbul": "^0.4.1",
"mqtt": "^2.18.8",
"mqtt-connection": "^4.0.0",
"pre-commit": "^1.0.10",
"standard": "^12.0.0",
"tape": "^4.10.0",
"tslint": "^5.12.1",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.3.3",
"websocket-stream": "^5.1.2"
},
"dependencies": {
"aedes-packet": "^1.0.0",
"aedes-persistence": "^6.0.0",
"bulk-write-stream": "^2.0.0",
"end-of-stream": "^1.4.1",
"fastfall": "^1.0.0",
"fastparallel": "^2.0.0",
"fastseries": "^1.5.0",
"from2": "^2.1.0",
"mqemitter": "^2.2.0",
"mqtt-packet": "^6.0.0",
"pump": "^3.0.0",
"retimer": "^2.0.0",
"reusify": "^1.0.4",
"shortid": "^2.2.14",
"through2": "^3.0.0",
"uuid": "^3.3.2",
"why-is-node-running": "^2.0.3"
}
}