-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.34 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
{
"name": "mqtt-smarthome-connect",
"version": "0.0.8",
"description": "Node library for MQTT-Smarthome",
"main": "index.js",
"scripts": {
"test": "camo-purge; xo && nyc mocha --exit tests/*.js && nyc report --reporter=text-lcov | coveralls --force",
"testonly": "xo; mocha --exit tests/*.js || exit 0",
"testcov": "xo; nyc mocha --exit tests/*.js && nyc report",
"lintfix": "xo --fix",
"docs": "cat docs/README.header.md > README.md ; jsdoc2md --param-list-format list -f index.js >> README.md ; cat docs/README.footer.md >> README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dersimn/node-mqtt-smarthome-connect.git"
},
"author": "Simon Christmann <simon@christmann.email>",
"contributors": [
"Sebastian Raff https://github.com/hobbyquaker"
],
"license": "MIT",
"dependencies": {
"mqtt": "^3.0.0",
"mqtt-wildcard": "^3.0.9",
"shortid": "^2.2.15",
"yalm": "^4.1.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"camo-purge": "^1.0.2",
"coveralls": "^3.0.7",
"jsdoc-to-markdown": "^5.0.2",
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"should": "^13.2.3",
"xo": "^0.25.3"
},
"xo": {
"space": 4,
"ignore": [
"test.js",
"benchmark.js",
"examples/*"
]
},
"nyc": {
"include": [
"index.js"
]
}
}