Merge pull request #2821 from balena-io/bump-dev-deps

update dev dependencies
This commit is contained in:
flowzone-app[bot] 2024-09-03 14:55:19 +00:00 committed by GitHub
commit c30dd323f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 761 additions and 916 deletions

1
.husky/pre-commit Normal file
View File

@ -0,0 +1 @@
node automation/check-npm-version.js && ts-node automation/check-doc.ts

View File

@ -84,13 +84,13 @@ function getPageNumbers(
if (parsed.next.per_page) { if (parsed.next.per_page) {
perPage = parseInt(parsed.next.per_page, 10); perPage = parseInt(parsed.next.per_page, 10);
} }
res.page = parseInt(parsed.next.page, 10) - 1; res.page = parseInt(parsed.next.page!, 10) - 1;
res.pages = parseInt(parsed.last.page, 10); res.pages = parseInt(parsed.last!.page!, 10);
} else { } else {
if (parsed.prev.per_page) { if (parsed.prev!.per_page) {
perPage = parseInt(parsed.prev.per_page, 10); perPage = parseInt(parsed.prev!.per_page, 10);
} }
res.page = res.pages = parseInt(parsed.prev.page, 10) + 1; res.page = res.pages = parseInt(parsed.prev!.page!, 10) + 1;
} }
res.ordinal = (res.page - 1) * perPage + 1; res.ordinal = (res.page - 1) * perPage + 1;
return res; return res;

1627
npm-shrinkwrap.json generated

File diff suppressed because it is too large Load Diff

View File

@ -76,7 +76,7 @@
"lint-tsconfig": "balena-lint -e ts -e js -t tsconfig.dev.json --fix automation/ src/ tests/ typings/", "lint-tsconfig": "balena-lint -e ts -e js -t tsconfig.dev.json --fix automation/ src/ tests/ typings/",
"lint-other": "balena-lint -e ts -e js --fix bin/run.js bin/dev.js completion/ .mocharc.js .mocharc-standalone.js", "lint-other": "balena-lint -e ts -e js --fix bin/run.js bin/dev.js completion/ .mocharc.js .mocharc-standalone.js",
"update": "ts-node --transpile-only ./automation/update-module.ts", "update": "ts-node --transpile-only ./automation/update-module.ts",
"prepare": "echo {} > bin/.fast-boot.json", "prepare": "echo {} > bin/.fast-boot.json && husky",
"prepublishOnly": "npm run build" "prepublishOnly": "npm run build"
}, },
"keywords": [ "keywords": [
@ -93,11 +93,6 @@
"engines": { "engines": {
"node": "^20.6.0" "node": "^20.6.0"
}, },
"husky": {
"hooks": {
"pre-commit": "node automation/check-npm-version.js && ts-node automation/check-doc.ts"
}
},
"oclif": { "oclif": {
"bin": "balena", "bin": "balena",
"commands": "./build/commands", "commands": "./build/commands",
@ -120,7 +115,7 @@
"@electron/notarize": "^2.0.0", "@electron/notarize": "^2.0.0",
"@octokit/plugin-throttling": "^3.5.1", "@octokit/plugin-throttling": "^3.5.1",
"@octokit/rest": "^18.6.7", "@octokit/rest": "^18.6.7",
"@types/archiver": "^5.1.1", "@types/archiver": "^6.0.2",
"@types/bluebird": "^3.5.36", "@types/bluebird": "^3.5.36",
"@types/body-parser": "^1.19.2", "@types/body-parser": "^1.19.2",
"@types/chai": "^4.3.0", "@types/chai": "^4.3.0",
@ -132,7 +127,7 @@
"@types/ejs": "^3.1.0", "@types/ejs": "^3.1.0",
"@types/express": "^4.17.13", "@types/express": "^4.17.13",
"@types/fast-levenshtein": "^0.0.4", "@types/fast-levenshtein": "^0.0.4",
"@types/fs-extra": "^9.0.13", "@types/fs-extra": "^11.0.4",
"@types/global-agent": "^2.1.1", "@types/global-agent": "^2.1.1",
"@types/global-tunnel-ng": "^2.1.1", "@types/global-tunnel-ng": "^2.1.1",
"@types/http-proxy": "^1.17.8", "@types/http-proxy": "^1.17.8",
@ -140,27 +135,25 @@
"@types/intercept-stdout": "^0.1.0", "@types/intercept-stdout": "^0.1.0",
"@types/is-root": "^2.1.2", "@types/is-root": "^2.1.2",
"@types/js-yaml": "^4.0.5", "@types/js-yaml": "^4.0.5",
"@types/jsonwebtoken": "^8.5.6", "@types/jsonwebtoken": "^9.0.6",
"@types/klaw": "^3.0.3", "@types/klaw": "^3.0.6",
"@types/lodash": "^4.14.178", "@types/lodash": "^4.14.178",
"@types/mixpanel": "^2.14.3", "@types/mixpanel": "^2.14.3",
"@types/mocha": "^10.0.7", "@types/mocha": "^10.0.7",
"@types/mock-require": "^2.0.1", "@types/mock-require": "^2.0.1",
"@types/moment-duration-format": "^2.2.3", "@types/moment-duration-format": "^2.2.3",
"@types/ndjson": "^2.0.1", "@types/ndjson": "^2.0.1",
"@types/net-keepalive": "^0.4.1",
"@types/nock": "^11.1.0",
"@types/node": "^20.0.0", "@types/node": "^20.0.0",
"@types/node-cleanup": "^2.1.2", "@types/node-cleanup": "^2.1.2",
"@types/parse-link-header": "^1.0.1", "@types/parse-link-header": "^2.0.3",
"@types/prettyjson": "^0.0.33", "@types/prettyjson": "^0.0.33",
"@types/progress-stream": "^2.0.2", "@types/progress-stream": "^2.0.2",
"@types/request": "^2.48.7", "@types/request": "^2.48.7",
"@types/rewire": "^2.5.28", "@types/rewire": "^2.5.30",
"@types/rimraf": "^3.0.2", "@types/rimraf": "^3.0.2",
"@types/semver": "^7.3.9", "@types/semver": "^7.3.9",
"@types/shell-escape": "^0.2.0", "@types/shell-escape": "^0.2.0",
"@types/sinon": "^10.0.6", "@types/sinon": "^17.0.3",
"@types/split": "^1.0.0", "@types/split": "^1.0.0",
"@types/stream-to-promise": "^2.2.1", "@types/stream-to-promise": "^2.2.1",
"@types/tar-stream": "^2.2.2", "@types/tar-stream": "^2.2.2",
@ -170,7 +163,7 @@
"@types/which": "^2.0.1", "@types/which": "^2.0.1",
"@types/window-size": "^1.1.1", "@types/window-size": "^1.1.1",
"@yao-pkg/pkg": "^5.11.1", "@yao-pkg/pkg": "^5.11.1",
"archiver": "^5.3.0", "archiver": "^7.0.1",
"catch-uncommitted": "^2.0.0", "catch-uncommitted": "^2.0.0",
"chai": "^4.3.4", "chai": "^4.3.4",
"chai-as-promised": "^7.1.1", "chai-as-promised": "^7.1.1",
@ -179,22 +172,22 @@
"diff": "^5.0.0", "diff": "^5.0.0",
"ent": "^2.2.0", "ent": "^2.2.0",
"filehound": "^1.17.5", "filehound": "^1.17.5",
"fs-extra": "^9.1.0", "fs-extra": "^11.2.0",
"http-proxy": "^1.18.1", "http-proxy": "^1.18.1",
"husky": "^4.3.8", "husky": "^9.1.5",
"inline-source-cli": "^2.0.0", "inline-source-cli": "^2.0.0",
"intercept-stdout": "^0.1.2", "intercept-stdout": "^0.1.2",
"jsonwebtoken": "^9.0.0", "jsonwebtoken": "^9.0.0",
"klaw": "^3.0.0", "klaw": "^4.1.0",
"mkdirp": "^1.0.4", "mkdirp": "^3.0.1",
"mocha": "^10.6.0", "mocha": "^10.6.0",
"mock-require": "^3.0.3", "mock-require": "^3.0.3",
"nock": "^13.2.1", "nock": "^13.2.1",
"oclif": "^4.14.0", "oclif": "^4.14.0",
"parse-link-header": "^2.0.0", "parse-link-header": "^2.0.0",
"rewire": "^5.0.0", "rewire": "^7.0.0",
"simple-git": "^3.14.1", "simple-git": "^3.14.1",
"sinon": "^11.1.2", "sinon": "^18.0.0",
"ts-node": "^10.4.0", "ts-node": "^10.4.0",
"typescript": "^5.5.2" "typescript": "^5.5.2"
}, },
@ -253,7 +246,7 @@
"node-cleanup": "^2.1.2", "node-cleanup": "^2.1.2",
"node-unzip-2": "^0.2.8", "node-unzip-2": "^0.2.8",
"open": "^7.1.0", "open": "^7.1.0",
"patch-package": "^6.5.1", "patch-package": "^8.0.0",
"prettyjson": "^1.2.5", "prettyjson": "^1.2.5",
"progress-stream": "^2.0.0", "progress-stream": "^2.0.0",
"reconfix": "^1.0.0-v0-1-0-fork-46760acff4d165f5238bfac5e464256ef1944476", "reconfix": "^1.0.0-v0-1-0-fork-46760acff4d165f5238bfac5e464256ef1944476",