-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
84 lines (84 loc) · 2.68 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
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
80
81
82
83
84
{
"name": "node-red-contrib-homekit-bridged",
"version": "1.7.2",
"description": "Node-RED nodes to simulate Apple HomeKit devices.",
"main": "build/nodes/nrchkb.js",
"scripts": {
"build": "npm run clean && tsc",
"clean": "del-cli \"build/lib\" \"build/**/*.js\"",
"test": "mocha -r ts-node/register './src/**/*.test.[tj]s' --exit --timeout 30000",
"prettier": "prettier --write \"**/*.{js,ts}\"",
"eslint": "eslint \"src/**/*.ts\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NRCHKB/node-red-contrib-homekit-bridged.git"
},
"keywords": [
"homekit",
"node-red",
"NRCHKB",
"iot",
"home",
"hap-nodejs",
"homebridge"
],
"node-red": {
"nodes": {
"nrchkb": "build/nodes/nrchkb.js",
"bridge": "build/nodes/bridge.js",
"standalone": "build/nodes/standalone.js",
"service": "build/nodes/service.js",
"service2": "build/nodes/service2.js",
"status": "build/nodes/status.js"
},
"version": ">=1.3.7"
},
"author": "Tadeusz Wyrzykowski <[email protected]> (https://github.com/Shaquu)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NRCHKB/node-red-contrib-homekit-bridged/issues"
},
"homepage": "https://github.com/NRCHKB/node-red-contrib-homekit-bridged#readme",
"dependencies": {
"@nrchkb/logger": "~3.1.1",
"hap-nodejs": "0.12.3-beta.18",
"node-persist": "^3.1.3",
"semver": "~7.6.2",
"uuid": "~10.0.0"
},
"devDependencies": {
"@homebridge/ciao": "~1.3.0",
"@node-red/registry": "^4.0.2",
"@types/mocha": "^10.0.7",
"@types/node": "^18",
"@types/node-persist": "^3.1.8",
"@types/node-red": "^1.3.5",
"@types/node-red-node-test-helper": "^0.3.4",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"babel-eslint": "^10.1.0",
"del-cli": "^5.1.0",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.0.11",
"mocha": "^10.6.0",
"node-red": "^4.0.2",
"node-red-node-test-helper": "^0.3.4",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=18"
},
"files": [
"/build",
"/examples"
]
}