-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.43 KB
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
{
"name": "aedes-cli",
"version": "1.0.2",
"description": "Aedes MQTT broker from cli",
"main": "./lib/cli.js",
"bin": {
"aedes": "./bin/aedes"
},
"scripts": {
"test": "npm run lint && npm run test:ci",
"lint": "eslint .",
"docker:db": "docker compose -f docker-compose-test.yml up -d",
"docker:build": "docker build -t moscajs/aedes:latest -f docker/Dockerfile .",
"test:ci": "node --test test/*.test.js",
"release": "read -p 'GITHUB_TOKEN: ' GITHUB_TOKEN && export GITHUB_TOKEN=$GITHUB_TOKEN && release-it --disable-metrics"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moscajs/aedes-cli.git"
},
"keywords": [
"aedes",
"mqtt",
"broker",
"nodejs",
"cli"
],
"author": "Daniel Lando <daniel.sorridi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/moscajs/aedes-cli/issues"
},
"homepage": "https://github.com/moscajs/aedes-cli#readme",
"devDependencies": {
"eslint": "^9.27.0",
"leaked-handles": "^5.2.0",
"neostandard": "^0.13.0",
"release-it": "^19.2.4"
},
"dependencies": {
"aedes": "^1.0.1",
"aedes-persistence-mongodb": "^9.4.1",
"aedes-persistence-redis": "^11.2.2",
"aedes-stats": "^4.0.0",
"minimatch": "^10.2.4",
"mqemitter-mongodb": "^9.0.1",
"mqemitter-redis": "^7.2.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"ws": "^8.20.0",
"yargs": "^18.0.0"
}
}