-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 2.56 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
{
"name": "bosch-smart-home-bridge",
"version": "1.4.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"postinstall": "husky && node disable-publish-semantic-release-github.cjs",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"clean": "rimraf dist && rimraf dist.spec",
"build:ts": "tsc -p tsconfig.app.json && tsc -p tsconfig.spec.json",
"build": "npm run clean && npm run build:ts",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint --max-warnings 0 --fix .",
"prettier": "prettier --write .",
"test": "cross-env TS_NODE_PROJECT='./tsconfig.spec.json' c8 mocha --grep should --exit",
"test:watch": "cross-env TS_NODE_PROJECT='./tsconfig.spec.json' c8 mocha --grep should",
"release": "semantic-release"
},
"keywords": [
"Bosch Smart Home",
"Smart Home",
"home automation"
],
"author": {
"name": "Christopher Holomek",
"email": "[email protected]"
},
"homepage": "https://github.com/holomekc/bosch-smart-home-bridge",
"license": "MIT",
"description": "Allows communication to Bosch Smart Home Controller",
"repository": {
"type": "git",
"url": "https://github.com/holomekc/bosch-smart-home-bridge"
},
"bugs": {
"url": "https://github.com/holomekc/bosch-smart-home-bridge/issues"
},
"dependencies": {
"rxjs": "7.8.1",
"selfsigned": "2.4.1",
"uuid": "11.0.5"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.18.0",
"@semantic-release/exec": "6.0.3",
"@tsconfig/node22": "22.0.0",
"@types/chai": "4.3.16",
"@types/express": "5.0.0",
"@types/mocha": "10.0.10",
"@types/node": "22.10.5",
"@types/sinon": "17.0.3",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"c8": "10.1.3",
"chai": "4.5.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"cross-env": "7.0.3",
"eslint": "9.18.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unused-imports": "4.1.4",
"express": "4.21.2",
"husky": "9.1.7",
"mocha": "11.0.1",
"pinst": "3.0.0",
"prettier": "3.4.2",
"prettier-eslint": "16.3.0",
"rimraf": "6.0.1",
"semantic-release": "24.2.1",
"semantic-release-yarn": "3.0.2",
"sinon": "19.0.2",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"packageManager": "[email protected]"
}