-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.33 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
{
"name": "homeiq",
"version": "1.0.0",
"description": "HomeIQ - Enterprise-grade Home Assistant intelligence platform with AI-powered automation, pattern detection, and comprehensive data analytics.",
"main": "validate-deployment.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "python scripts/simple-unit-tests.py",
"test:unit": "python scripts/simple-unit-tests.py",
"test:unit:python": "python scripts/simple-unit-tests.py --python-only",
"test:unit:typescript": "python scripts/simple-unit-tests.py --typescript-only",
"test:e2e": "cd tests/e2e && npx playwright test",
"test:coverage": "python scripts/simple-unit-tests.py && echo 'Coverage reports available in test-results/coverage/'",
"validate": "node validate-deployment.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wtthornton/HomeIQ.git"
},
"keywords": [
"home-assistant",
"home-automation",
"ai",
"smart-home",
"iot",
"pattern-detection"
],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/wtthornton/HomeIQ/issues"
},
"homepage": "https://github.com/wtthornton/HomeIQ#readme",
"dependencies": {
"puppeteer": "^24.30.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2"
}
}