forked from zwave-js/node-zwave-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
143 lines (143 loc) · 5.12 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
{
"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.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@alcalzone/release-script": "^1.8.3",
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.13.8",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@fimbul/mithotyn": "^0.24.0",
"@fimbul/wotan": "^0.24.0",
"@types/fs-extra": "^9.0.8",
"@types/gulp": "^4.0.7",
"@types/gulp-sourcemaps": "0.0.34",
"@types/jest": "^26.0.14",
"@types/js-levenshtein": "^1.1.0",
"@types/json-logic-js": "^1.2.1",
"@types/json5": "2.2.0",
"@types/mockdate": "^2.0.0",
"@types/node": "^14.14.31",
"@types/pegjs": "^0.10.2",
"@types/prettier": "^2.2.1",
"@types/semver": "^7.3.4",
"@types/serialport": "^8.0.1",
"@types/triple-beam": "^1.3.2",
"@types/xml2json": "^0.11.3",
"@types/yargs": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"@xstate/test": "^0.4.2",
"ansi-colors": "^4.1.1",
"axios": "^0.21.1",
"clipboardy": "^2.3.0",
"commitizen": "^4.2.3",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.1.4",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-circus": "^26.4.2",
"jest-extended": "^0.11.5",
"js-levenshtein": "^1.1.6",
"lerna": "^4.0.0",
"mockdate": "^3.0.2",
"pegjs": "^0.10.0",
"prettier": "^2.1.2",
"prettier-plugin-organize-imports": "^1.1.1",
"semver": "^7.3.2",
"supports-color": "^8.1.1",
"ts-morph": "^9.1.0",
"ts-node": "^9.0.0",
"ts-pegjs": "^0.3.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.2",
"xml2json": "^0.12.0",
"yargs": "^16.0.3"
},
"scripts": {
"build": "lerna run build --scope=zwave-js",
"build:full": "lerna run build --scope=@zwave-js/* && lerna run build:full",
"watch": "lerna run watch --parallel",
"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:wotan": "wotan",
"lint:config": "lerna exec --scope=@zwave-js/config -- gulp lintConfigFiles",
"lint:configjson": "prettier -c \"packages/config/config/**/*.json\"",
"lint:zwave": "lerna exec --scope=zwave-js -- gulp lint",
"lint": "yarn run lint:wotan && yarn run lint:ts && yarn run lint:configjson",
"implemented_ccs": "ts-node packages/maintenance/src/implementedCCs.ts",
"gh-cc-table": "yarn run implemented_ccs -- --flavor=github --only-incomplete",
"toLogEntryOverview": "ts-node packages/zwave-js/maintenance/checkCCToLogEntry.ts",
"usbdebug": "cmd.exe /c \"test\\usbdebug.bat\"",
"commit": "git-cz",
"release": "yarn run build && lerna version --no-commit-hooks",
"release:all": "yarn run build && lerna version --no-commit-hooks --force-publish",
"preversion": "release-script --lerna-check",
"version": "yarn install && release-script --lerna",
"postversion": "git push && git push --tags",
"config": "ts-node packages/config/maintenance/importConfig.ts",
"docs": "docsify serve docs",
"docs:generate": "ts-node -P packages/maintenance/tsconfig.json packages/maintenance/src/generateTypedDocs.ts",
"test:perf": "ts-node test/valuedb-perf.ts",
"test:firmware": "ts-node test/firmware-extraction.ts"
},
"readme": "README.md",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}