forked from zwave-js/node-zwave-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 5.21 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@zwave-js/repo",
"version": "9.3.0",
"private": true,
"description": "Z-Wave driver written entirely in JavaScript/TypeScript",
"keywords": [],
"author": {
"name": "AlCalzone",
"email": "[email protected]"
},
"contributors": [
"Daniel Lando (https://github.com/robertsLando)",
"RoboPhred (https://github.com/RoboPhred)"
],
"license": "MIT",
"homepage": "https://github.com/AlCalzone/node-zwave-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/AlCalzone/node-zwave-js.git"
},
"bugs": {
"url": "https://github.com/AlCalzone/node-zwave-js/issues"
},
"funding": {
"url": "https://github.com/sponsors/AlCalzone/"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@actions/core": "^1.7.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.1",
"@alcalzone/jsonl-db": "^2.5.2",
"@alcalzone/release-script": "~3.5.9",
"@babel/core": "^7.17.10",
"@babel/plugin-proposal-class-properties": "*",
"@babel/plugin-proposal-decorators": "^7.17.9",
"@babel/plugin-proposal-private-methods": "*",
"@babel/plugin-proposal-private-property-in-object": "*",
"@babel/plugin-transform-typescript": "*",
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@tsconfig/node12": "^1.0.9",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/node": "^14.18.16",
"@types/semver": "^7.3.9",
"@types/source-map-support": "^0",
"@types/ts-nameof": "^4.2.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"@zwave-js/config": "workspace:*",
"@zwave-js/core": "workspace:*",
"@zwave-js/host": "workspace:*",
"@zwave-js/maintenance": "workspace:*",
"@zwave-js/nvmedit": "workspace:*",
"@zwave-js/serial": "workspace:*",
"@zwave-js/shared": "workspace:*",
"@zwave-js/testing": "workspace:*",
"alcalzone-shared": "^4.0.1",
"ansi-colors": "^4.1.1",
"comment-json": "^4.2.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "0.14.38",
"esbuild-register": "^3.3.2",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.1.0",
"husky": "^7.0.4",
"jest": "^28.0.3",
"jest-extended": "^2.0.0",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^2.3.4",
"reflect-metadata": "^0.1.13",
"semver": "^7.3.7",
"source-map-support": "^0.5.21",
"ts-nameof": "^5.0.0",
"ts-patch": "^2.0.1",
"typescript": "4.6.4",
"zwave-js": "workspace:*"
},
"resolutions": {
"minimist": "^1.2.6"
},
"scripts": {
"foreach": "yarn workspaces foreach -pvi --exclude @zwave-js/repo",
"prebuild": "yarn workspace @zwave-js/maintenance run build",
"build": "yarn prebuild && yarn workspace zwave-js run build",
"watch": "yarn prebuild && yarn workspace zwave-js run watch",
"test:reset": "jest --clear-cache",
"test:ts": "jest",
"test:ci": "yarn run test:ts --runInBand --forceExit",
"test:watch": "yarn run test:ts --watch",
"test": "yarn run test:watch",
"coverage": "yarn run test:ts --collect-coverage",
"coverage:ci": "yarn run test:ci --collect-coverage",
"show-coverage": "yarn run coverage && start ./coverage/index.html",
"lint:ts": "eslint --ext .ts --rule \"prettier/prettier: off\" \"packages/*/src/**/*.ts\"",
"lint:exports": "yarn ts packages/maintenance/src/lintNoExternalImports.ts",
"lint:config": "yarn workspace @zwave-js/config run lint_config",
"lint:configjson": "prettier -c \"packages/config/config/**/*.json\"",
"lint:zwave": "yarn foreach run lint_zwave",
"lint:prettier": "prettier -c \"packages/*/src/**/*.ts\"",
"lint": "yarn run lint:exports && yarn run lint:ts && yarn run lint:prettier && yarn run lint:configjson",
"implemented_ccs": "yarn ts packages/maintenance/src/implementedCCs.ts",
"gh-cc-table": "yarn run implemented_ccs --flavor=github --only-incomplete",
"toLogEntryOverview": "yarn ts packages/zwave-js/maintenance/checkCCToLogEntry.ts",
"usbdebug": "cmd.exe /c \"test\\usbdebug.bat\"",
"commit": "git-cz",
"release": "release-script",
"release:all": "release-script --publish-all",
"postinstall": "husky install ; ts-patch install -s",
"prepare": "ts-patch install -s",
"config": "yarn ts packages/config/maintenance/importConfig.ts",
"docs": "docsify serve docs",
"docs:generate": "yarn ts packages/maintenance/src/generateTypedDocs.ts",
"test:perf": "yarn ts test/valuedb-perf.ts",
"test:firmware": "yarn ts test/firmware-extraction.ts",
"ts": "node -r esbuild-register",
"nvmedit": "yarn ts packages/nvmedit/src/cli.ts",
"ls-changed": "yarn changed list --exclude \"@zwave-js/repo\" --git-range=$(git describe --abbrev=0) --json | cut -d'\"' -f4",
"for-changed": "yarn changed foreach --exclude \"@zwave-js/repo\" --git-range=$(git describe --abbrev=0)"
},
"readme": "README.md",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]"
}