-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 994 Bytes
/
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
{
"name": "mqtt-forget",
"version": "1.0.3",
"description": "Command line tool to remove retained MQTT topics by wildcard",
"main": "index.js",
"bin": {
"mqtt-forget": "./index.js"
},
"preferGlobal": true,
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "camo-purge ; xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hobbyquaker/mqtt-forget.git"
},
"keywords": [
"MQTT",
"retain",
"message",
"delete",
"forget",
"remove",
"wildcard"
],
"author": "Sebastian Raff <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hobbyquaker/mqtt-forget/issues"
},
"homepage": "https://github.com/hobbyquaker/mqtt-forget#readme",
"xo": {
"space": 4
},
"devDependencies": {
"camo-purge": "latest",
"xo": "latest"
},
"dependencies": {
"async": "^2.6.0",
"mqtt": "^2.15.3",
"prompt-confirm": "^1.2.0",
"yargs": "^11.0.0"
}
}