-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
69 lines (69 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
{
"name": "aedes-cli",
"version": "0.8.0",
"description": "Aedes MQTT broker from cli",
"main": "./lib/cli.js",
"bin": {
"aedes": "./bin/aedes"
},
"scripts": {
"test": "npm run lint:standard && npm run test:ci",
"lint:standard": "standard --verbose | snazzy",
"docker:build": "docker build -t moscajs/aedes:latest -f docker/Dockerfile .",
"test:ci": "tap test/*.test.js",
"release": "read -p 'GITHUB_TOKEN: ' GITHUB_TOKEN && export GITHUB_TOKEN=$GITHUB_TOKEN && release-it --disable-metrics"
},
"release-it": {
"github": {
"release": true
},
"git": {
"tagName": "v${version}"
},
"hooks": {
"before:init": [
"npm run test"
]
},
"npm": {
"publish": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/moscajs/aedes-cli.git"
},
"keywords": [
"aedes",
"mqtt",
"broker",
"nodejs",
"cli"
],
"author": "Daniel Lando <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/moscajs/aedes-cli/issues"
},
"homepage": "https://github.com/moscajs/aedes-cli#readme",
"devDependencies": {
"leaked-handles": "^5.2.0",
"release-it": "^16.2.1",
"snazzy": "^9.0.0",
"standard": "^17.1.0",
"tap": "^18.5.2"
},
"dependencies": {
"aedes": "^0.50.0",
"aedes-persistence-mongodb": "^9.1.1",
"aedes-persistence-redis": "^10.0.0",
"aedes-stats": "^4.0.0",
"minimatch": "^9.0.3",
"mqemitter-mongodb": "^8.1.0",
"mqemitter-redis": "^5.0.0",
"pino": "^8.16.0",
"pino-pretty": "^10.2.3",
"ws": "^8.14.2",
"yargs": "^17.7.2"
}
}