-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.19 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
80
81
82
{
"name": "com.barelysufficient.flexit.nordic",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=22.22.1 <23"
},
"volta": {
"node": "22.22.1",
"npm": "10.9.4"
},
"ts-node": {
"files": true
},
"main": "app.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "node scripts/check-test-titles.js && eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "npm run typecheck && vitest run --config vitest.config.ts --coverage.enabled",
"test:vitest": "vitest run --config vitest.config.ts",
"start": "homey app run --remote",
"validate": "npm run lint && npm test && homey app validate",
"fake-unit:start": "ts-node scripts/fake-unit.ts",
"fake-unit:cli": "ts-node scripts/fake-unit-cli.ts",
"bacnet:read-probe": "node scripts/bacnet-read-probe.js",
"prepare": "husky"
},
"dependencies": {
"bacstack": "0.0.1-beta.14",
"pino": "^10.3.1",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tsconfig/node22": "^22.0.5",
"@types/chai": "^5.2.3",
"@types/homey": "npm:homey-apps-sdk-v3-types",
"@types/mocha": "^10.0.10",
"@types/node": "^26.0.1",
"@types/proxyquire": "^1.3.31",
"@types/sinon": "^21.0.1",
"@types/source-map-support": "^0.5.10",
"@vitest/coverage-v8": "^4.1.9",
"c8": "^11.0.0",
"chai": "^6.2.2",
"eslint": "^10.6.0",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.17.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"jiti": "^2.7.0",
"proxyquire": "^2.1.3",
"sinon": "^22.0.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0",
"vitest": "^4.1.9"
},
"c8": {
"check-coverage": true,
"all": true,
"include": [
"lib/**/*.ts",
"drivers/**/*.ts",
"app.ts",
"scripts/fake-unit/**/*.ts",
"scripts/fake-unit.ts",
"scripts/fake-unit-cli.ts",
"scripts/bacnet-read-probe.js"
],
"exclude": [
"test/**",
"**/*.d.ts"
],
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80
}
}