forked from zwave-js/zwave-js-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.81 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
{
"name": "@zwave-js/server",
"version": "1.36.0",
"description": "Full access to zwave-js driver through Websockets",
"homepage": "https://github.com/zwave-js/zwave-js-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zwave-js/zwave-js-server.git"
},
"bugs": {
"url": "https://github.com/zwave-js/zwave-js-server/issues"
},
"main": "dist/lib/index.js",
"bin": {
"zwave-server": "dist/bin/server.js",
"zwave-client": "dist/bin/client.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts . && prettier -w .",
"test": "prettier --check src && tsc --noEmit && npm run lint && ts-node src/test/integration.ts",
"build": "tsc -p .",
"prepare": "npm run build",
"prepublishOnly": "rm -rf dist && npm run build"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@homebridge/ciao": "^1.1.7",
"minimist": "^1.2.8",
"ws": "^8.13.0"
},
"peerDependencies": {
"zwave-js": "^12.11.0"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.1",
"@types/minimist": "^1.2.2",
"@types/node": "^18.17.14",
"@types/triple-beam": "^1.3.2",
"@types/ws": "^8.5.5",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.1.1",
"alcalzone-shared": "^4.0.8",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^4.3.8",
"lint-staged": "^15.0.2",
"prettier": "^3.0.0",
"semver": "^7.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"zwave-js": "^12.11.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,css,md}": [
"prettier --write"
]
}
}