forked from zwave-js/node-zwave-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 4.64 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
{
"name": "@zwave-js/repo",
"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.6.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^5.0.0",
"@alcalzone/jsonl-db": "^2.4.1",
"@alcalzone/release-script": "~3.4.3",
"@alcalzone/release-script-plugin-lerna": "~3.4.3",
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "*",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/plugin-proposal-private-methods": "*",
"@babel/plugin-proposal-private-property-in-object": "*",
"@babel/plugin-transform-typescript": "*",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@tsconfig/node12": "^1.0.9",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^26.0.24",
"@types/node": "^15.12.5",
"@types/semver": "^7.3.9",
"@types/source-map-support": "^0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@zwave-js/config": "workspace:*",
"@zwave-js/core": "workspace:*",
"@zwave-js/nvmedit": "workspace:*",
"@zwave-js/shared": "workspace:*",
"alcalzone-shared": "^4.0.1",
"ansi-colors": "^4.1.1",
"comment-json": "^4.1.1",
"commitizen": "^4.2.4",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "0.14.1",
"esbuild-register": "^3.3.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.0.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"lerna": "^4.0.0",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"reflect-metadata": "^0.1.13",
"semver": "^7.3.5",
"source-map-support": "^0.5.21",
"ts-node": "^10.4.0",
"typescript": "4.5.4",
"zwave-js": "workspace:*"
},
"scripts": {
"prebuild": "yarn workspace zwave-js run b prebuild",
"build": "tsc -b packages/!(zwave-js)/tsconfig.build.json && yarn prebuild && tsc -b packages/zwave-js/tsconfig.build.json",
"watch": "yarn run build --watch",
"deprecated": "node -p '\\\"\\\\n \\\\n \\\\033[31;1;4mThe \\\\\"build:full\\\\\" script has been deprecated. Use \\\\\"build\\\\\" instead!\\\\033[0m\\\\n \\\\n\\\"'",
"build:full": "yarn run deprecated && yarn run build",
"test:reset": "jest --clear-cache",
"test:ts": "jest",
"test:ci": "yarn run test:ts --runInBand",
"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 \"packages/*/src/**/*.ts\"",
"lint:config": "lerna run lint_config",
"lint:configjson": "prettier -c \"packages/config/config/**/*.json\"",
"lint:zwave": "lerna run lint_zwave",
"lint": "yarn run lint:ts && 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",
"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"
},
"readme": "README.md",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]"
}