forked from zwave-js/node-zwave-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
145 lines (145 loc) · 5.95 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
137
138
139
140
141
142
143
144
145
{
"name": "@zwave-js/repo",
"version": "10.16.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.9.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.3",
"@alcalzone/jsonl-db": "^3.1.0",
"@alcalzone/monopack": "^1.2.0",
"@alcalzone/release-script": "~3.5.9",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.4.4",
"@esm2cjs/p-queue": "^7.3.0",
"@microsoft/api-extractor": "^7.33.7",
"@monorepo-utils/workspaces-to-typescript-project-references": "^2.9.0",
"@tsconfig/node14": "^1.0.3",
"@types/fs-extra": "^9.0.13",
"@types/node": "^14.18.36",
"@types/semver": "^7.3.12",
"@types/source-map-support": "^0.5.6",
"@types/ts-nameof": "^4.2.2",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"@zwave-js/cc": "workspace:*",
"@zwave-js/config": "workspace:*",
"@zwave-js/core": "workspace:*",
"@zwave-js/flash": "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.8",
"ansi-colors": "^4.1.3",
"chokidar": "^3.5.3",
"comment-json": "^4.2.3",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^5.0.0",
"esbuild": "0.15.7",
"esbuild-register": "^3.4.2",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"execa": "^5.1.1",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.1",
"reflect-metadata": "^0.1.13",
"semver": "^7.3.7",
"source-map-support": "^0.5.21",
"ts-nameof": "^5.0.0",
"ts-patch": "^2.1.0",
"turbo": "1.7.4",
"typescript": "4.9.5",
"zwave-js": "workspace:*"
},
"resolutions": {
"minimist": "^1.2.6",
"colors": "1.4.0"
},
"scripts": {
"w": "yarn ts maintenance/watch.ts",
"foreach": "yarn workspaces foreach -pvi --exclude @zwave-js/repo",
"clean": "yarn turbo run clean",
"build": "FORCE_COLOR=1 yarn turbo run build",
"watch": "yarn w build",
"test:ts": "FORCE_COLOR=1 yarn turbo run test:ts ${TURBO_FLAGS:-'--concurrency=1'} --",
"test": "yarn w test:ts",
"test:ci": "yarn test:ts --runInBand --forceExit",
"test:dirty:resolve": "yarn ts packages/maintenance/src/resolveDirtyTests.ts",
"test:dirty": "FORCE_COLOR=1 yarn turbo run test:dirty ${TURBO_FLAGS:-''} --",
"test:watch": "yarn w test:dirty",
"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:configjson": "FORCE_COLOR=1 yarn turbo run lint:prettier --filter=@zwave-js/config",
"lint:configjson:fix": "FORCE_COLOR=1 yarn turbo run lint:prettier:fix --filter=@zwave-js/config",
"lint:zwave": "FORCE_COLOR=1 yarn turbo run lint:zwave",
"lint:ts": "FORCE_COLOR=1 yarn turbo run lint:ts",
"lint:ts:fix": "FORCE_COLOR=1 yarn turbo run lint:ts:fix",
"lint:prettier": "FORCE_COLOR=1 yarn turbo run lint:prettier",
"lint:prettier:fix": "FORCE_COLOR=1 yarn turbo run lint:prettier:fix",
"lint": "FORCE_COLOR=1 yarn turbo run lint:ts lint:prettier",
"implemented_ccs": "yarn ts packages/maintenance/src/implementedCCs.ts",
"gh-cc-table": "yarn run implemented_ccs --flavor=github --only-incomplete",
"toLogEntryOverview": "yarn ts packages/cc/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 && yarn node maintenance/patch-tsserver.js",
"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)",
"codefind": "yarn ts packages/maintenance/src/codefind.ts",
"extract-api": "FORCE_COLOR=1 yarn turbo run extract-api",
"accept-api": "yarn extract-api -- --local",
"monopack": "yarn exec monopack",
"check-references": "workspaces-to-typescript-project-references --check && workspaces-to-typescript-project-references --check --tsconfigPath tsconfig.build.json",
"sync-references": "workspaces-to-typescript-project-references && workspaces-to-typescript-project-references --tsconfigPath tsconfig.build.json && prettier -c '{,packages/*/}{tsconfig,tsconfig.*}.json' -w --loglevel silent"
},
"readme": "README.md",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]"
}