-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 937 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
{
"name": "xyz2mqtt",
"private": true,
"version": "0.0.0",
"description": "skeleton for creation of mqtt-smarthome daemons",
"main": "index.js",
"bin": {
"xyz2mqtt": "index.js"
},
"preferGlobal": true,
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "camo-purge ; xo"
},
"repository": {
"type": "git",
"url": "https://github.com/hobbyquaker/xyz2mqtt"
},
"keywords": [
"mqtt",
"smarthome",
"skeleteon",
"template",
"boilerplate"
],
"author": "Sebastian Raff <hq@ccu.io> (https://hobbyquaker.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hobbyquaker/xyz2mqtt/issues"
},
"homepage": "https://github.com/hobbyquaker/xyz2mqtt",
"dependencies": {
"mqtt": "^2.15.1",
"yalm": "^4.1.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"camo-purge": "latest",
"xo": "latest"
},
"xo": {
"space": 4
}
}