-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
{
"name": "homematic-rega",
"version": "1.5.2",
"description": "Homematic CCU ReGaHSS Remote Script Interface",
"main": "index.js",
"engines": {
"node": ">=10.0.0"
},
"engineStrict": true,
"scripts": {
"test": "camo-purge ; xo",
"lintfix": "xo --fix",
"docs": "cat readme/README.header.md > README.md; jsdoc2md index.js >> README.md; cat readme/README.footer.md >> README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hobbyquaker/homematic-rega.git"
},
"keywords": [
"eq-3",
"homematic",
"ccu",
"regahss",
"script",
"smart home automation"
],
"author": "Sebastian Raff <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hobbyquaker/homematic-rega/issues"
},
"homepage": "https://github.com/hobbyquaker/homematic-rega#readme",
"dependencies": {
"iconv-lite": "^0.6.2",
"request": "^2.88.2",
"temp-dir": "^2.0.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"camo-purge": "latest",
"xo": "latest",
"jsdoc-to-markdown": "latest"
},
"xo": {
"space": 4,
"ignore": [
"test.js"
],
"rules": {
"unicorn/prevent-abbreviations": "warn"
}
}
}