-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
79 lines (79 loc) · 2.07 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
{
"name": "node-red-contrib-homebridge-automation",
"version": "0.2.1",
"description": "NodeRED Automation for HomeBridge",
"main": "src/HAP-NodeRed.js",
"scripts": {
"document": "./gh-md-toc --insert --no-backup --hide-footer README.md",
"watch": "nodemon",
"lint": "eslint --max-warnings=10 .",
"lint:fix": "eslint --fix --max-warnings=0 .",
"test": "jest --detectOpenHandles",
"test-coverage": "jest --coverage"
},
"keywords": [
"node-red",
"HomeBridge"
],
"node-red": {
"nodes": {
"HAP-NodeRed": "src/HAP-NodeRed.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/NorthernMan54/node-red-contrib-homebridge-automation.git"
},
"devDependencies": {
"@types/node-red": "^1.3.5",
"@types/jest": "^29.5.14",
"@eslint/js": "^9.16.0",
"eslint": "^8.57.1",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-jest": "^28.8.3",
"globals": "^15.13.0",
"jest": "^29.7.0",
"node-red": "^4.0.2",
"node-red-node-test-helper": "^0.3.4",
"nodemon": "^3.1.7",
"rimraf": "^6.0.1",
"semver": "^7.6.3"
},
"dependencies": {
"better-queue": ">=3.8.12",
"debug": "^4.3.7",
"@homebridge/hap-client": "^2.0.5"
},
"author": "NorthernMan54",
"license": "ISC",
"bugs": {
"url": "https://github.com/NorthernMan54/node-red-contrib-homebridge-automation/issues"
},
"homepage": "https://github.com/NorthernMan54/node-red-contrib-homebridge-automation#readme",
"nodemonConfig": {
"watch": [
"src"
],
"ext": "js,html",
"ignore": [],
"exec": "DEBUG=hapNodeRed* ~/npm/bin/node-red -v -u test/node-red",
"signal": "SIGTERM",
"env": {
"NODE_OPTIONS": "--trace-warnings"
}
},
"jest": {
"testEnvironment": "node",
"modulePathIgnorePatterns": [],
"coverageReporters": [
"lcov"
],
"collectCoverageFrom": [
"src/**",
"!src/accessories/**",
"!src/lib/definitions/generate-definitions.ts",
"!src/lib/definitions/generator-configuration.ts",
"!src/test-utils"
]
}
}