-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.02 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.02 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "occu-test",
"version": "0.5.0",
"description": "Automated System Tests for ReGaHss",
"private": true,
"scripts": {
"test": "camo-purge; xo && mocha --colors",
"lint": "xo",
"lintfix": "xo --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jens-maus/occu-test.git"
},
"keywords": [
"eQ-3",
"Homematic",
"OCCU",
"ReGaHSS",
"test",
"automation"
],
"author": "Sebastian Raff <hq@ccu.io>",
"contributors": [
{
"name": "Jens Maus",
"email": "mail@jens-maus.de"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jens-maus/occu-test/issues"
},
"homepage": "https://github.com/jens-maus/occu-test#readme",
"dependencies": {
"async": "^3.2.6",
"request": "^2.88.0",
"binrpc": "^3.1.0",
"camo-purge": "latest",
"hm-simulator": "0.0.4",
"homematic-rega": "latest",
"homematic-xmlrpc": "^1.0.2",
"indent-string": "^5.0.0",
"mocha": "11.7.5",
"mocha-clean": "latest",
"should": "latest",
"stream-splitter": "latest",
"mocha-steps": "latest",
"moment": "latest"
},
"devDependencies": {
"eslint": ">=7.32.0",
"xo": "^2.0.2",
"yargs-parser": ">=22.0.0"
},
"xo": {
"space": 4,
"rules": {
"@stylistic/array-bracket-spacing": "off",
"@stylistic/comma-dangle": "off",
"@stylistic/max-len": "off",
"@stylistic/no-multi-spaces": "off",
"import-x/newline-after-import": "off",
"import-x/no-unassigned-import": "off",
"import-x/order": "off",
"logical-assignment-operators": "off",
"n/prefer-global/buffer": "off",
"n/prefer-global/process": "off",
"require-unicode-regexp": "off",
"unicorn/no-array-for-each": "off",
"unicorn/no-array-reverse": "off",
"unicorn/no-typeof-undefined": "off",
"unicorn/numeric-separators-style": "off",
"unicorn/prefer-module": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/prefer-string-raw": "off"
}
}
}