npm-check-updates 22.2.7 → 22.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -11
- package/build/cli.cjs +21 -21
- package/build/cli.cjs.map +1 -1
- package/build/cli.js +377 -410
- package/build/cli.js.map +1 -1
- package/build/index.cjs +127 -131
- package/build/index.cjs.map +1 -1
- package/build/index.d.ts +2 -5
- package/build/index.js +3968 -6093
- package/build/index.js.map +1 -1
- package/package.json +33 -31
- package/build/cli.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "npm-check-updates",
|
|
3
|
-
"version": "22.2.
|
|
3
|
+
"version": "22.2.8",
|
|
4
4
|
"author": "Tomas Junnonen <tomas1@gmail.com>",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"contributors": [
|
|
@@ -40,20 +40,19 @@
|
|
|
40
40
|
"build": "vite build",
|
|
41
41
|
"build:options": "tsx scripts/build-options.ts",
|
|
42
42
|
"build:analyze": "cross-env ANALYZER=true vite build",
|
|
43
|
-
"lint": "cross-env FORCE_COLOR=1 npm-run-all --parallel --aggregate-output lint:*",
|
|
43
|
+
"lint": "cross-env FORCE_COLOR=1 npm-run-all --parallel --continue-on-error --aggregate-output lint:*",
|
|
44
44
|
"lint:lockfile": "lockfile-lint",
|
|
45
45
|
"lint:types": "tsc --noEmit",
|
|
46
46
|
"lint:markdown": "markdownlint \"**/*.md\" --ignore \"**/node_modules/**/*.md\" --ignore build --config .markdownlint.json",
|
|
47
47
|
"lint:src": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives",
|
|
48
|
-
"prepare": "git config core.hooksPath .hooks",
|
|
48
|
+
"prepare": "git config core.hooksPath .hooks || exit 0",
|
|
49
49
|
"prepublishOnly": "npm run build",
|
|
50
50
|
"prettier": "prettier . --check",
|
|
51
51
|
"prettier:fix": "prettier . --write",
|
|
52
52
|
"test": "tsc --noEmit && npm run test:unit && npm run test:e2e",
|
|
53
53
|
"test:bun": "mocha test/bun",
|
|
54
54
|
"test:unit": "mocha test --ignore \"test/bun/*\"",
|
|
55
|
-
"test:e2e": "./test/e2e.sh",
|
|
56
|
-
"typecheck": "tsc --noEmit",
|
|
55
|
+
"test:e2e": "bash ./test/e2e.sh",
|
|
57
56
|
"ncu": "node build/cli.js"
|
|
58
57
|
},
|
|
59
58
|
"repository": {
|
|
@@ -71,19 +70,18 @@
|
|
|
71
70
|
"eslint-plugin-n": "$eslint-plugin-n",
|
|
72
71
|
"eslint-plugin-promise": "$eslint-plugin-promise"
|
|
73
72
|
},
|
|
74
|
-
"
|
|
75
|
-
|
|
76
|
-
"
|
|
73
|
+
"mocha": {
|
|
74
|
+
"diff": "^8.0.3",
|
|
75
|
+
"serialize-javascript": "^7.0.3"
|
|
77
76
|
},
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
"uuid": ">=14.0.0"
|
|
77
|
+
"@cypress/request": {
|
|
78
|
+
"uuid": "^14.0.0"
|
|
79
|
+
}
|
|
82
80
|
},
|
|
83
81
|
"devDependencies": {
|
|
84
82
|
"@eslint/compat": "^2.1.0",
|
|
85
83
|
"@eslint/js": "^10.0.1",
|
|
86
|
-
"@microsoft/api-extractor": "^7.58.
|
|
84
|
+
"@microsoft/api-extractor": "^7.58.9",
|
|
87
85
|
"@streamparser/json": "^0.0.22",
|
|
88
86
|
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
|
89
87
|
"@types/bun": "^1.3.14",
|
|
@@ -94,7 +92,7 @@
|
|
|
94
92
|
"@types/ini": "^4.1.1",
|
|
95
93
|
"@types/jsonlines": "^0.1.5",
|
|
96
94
|
"@types/mocha": "^10.0.10",
|
|
97
|
-
"@types/node": "^25.9.
|
|
95
|
+
"@types/node": "^25.9.4",
|
|
98
96
|
"@types/npm-registry-fetch": "^8.0.9",
|
|
99
97
|
"@types/parse-github-url": "^1.0.3",
|
|
100
98
|
"@types/picomatch": "^4.0.3",
|
|
@@ -103,30 +101,30 @@
|
|
|
103
101
|
"@types/semver-utils": "^1.1.3",
|
|
104
102
|
"@types/sinon": "^21.0.1",
|
|
105
103
|
"@types/update-notifier": "^6.0.8",
|
|
106
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
107
|
-
"@typescript-eslint/parser": "^8.
|
|
104
|
+
"@typescript-eslint/eslint-plugin": "^8.62.0",
|
|
105
|
+
"@typescript-eslint/parser": "^8.62.0",
|
|
108
106
|
"camelcase": "^9.0.0",
|
|
109
107
|
"chai": "^6.2.2",
|
|
110
108
|
"chai-as-promised": "^8.0.2",
|
|
111
|
-
"chai-string": "^
|
|
109
|
+
"chai-string": "^2.0.0",
|
|
112
110
|
"chalk": "^5.6.2",
|
|
113
111
|
"cli-table3": "^0.6.5",
|
|
114
112
|
"commander": "^14.0.3",
|
|
115
113
|
"cross-env": "^10.1.0",
|
|
116
|
-
"eslint": "^10.
|
|
114
|
+
"eslint": "^10.6.0",
|
|
117
115
|
"eslint-config-prettier": "^10.1.8",
|
|
118
116
|
"eslint-config-raine": "^0.5.0",
|
|
119
117
|
"eslint-config-standard": "^17.1.0",
|
|
120
118
|
"eslint-import-resolver-typescript": "^4.4.5",
|
|
121
|
-
"eslint-plugin-import-x": "^4.
|
|
119
|
+
"eslint-plugin-import-x": "^4.17.0",
|
|
122
120
|
"eslint-plugin-jsdoc": "^62.9.0",
|
|
123
|
-
"eslint-plugin-n": "^18.
|
|
121
|
+
"eslint-plugin-n": "^18.2.1",
|
|
124
122
|
"eslint-plugin-promise": "^7.3.0",
|
|
125
123
|
"fast-glob": "^3.3.3",
|
|
126
124
|
"fast-memoize": "^2.5.2",
|
|
127
125
|
"find-up": "^8.0.0",
|
|
128
126
|
"fp-and-or": "^1.0.2",
|
|
129
|
-
"globals": "^17.
|
|
127
|
+
"globals": "^17.7.0",
|
|
130
128
|
"hosted-git-info": "^9.0.3",
|
|
131
129
|
"ini": "^6.0.0",
|
|
132
130
|
"jsonc-parser": "^3.3.1",
|
|
@@ -140,29 +138,33 @@
|
|
|
140
138
|
"p-map": "^7.0.4",
|
|
141
139
|
"parse-github-url": "^1.0.4",
|
|
142
140
|
"picomatch": "^4.0.4",
|
|
143
|
-
"prettier": "^3.8.
|
|
141
|
+
"prettier": "^3.8.5",
|
|
144
142
|
"progress": "^2.0.3",
|
|
145
|
-
"prompts-ncu": "^3.0.
|
|
146
|
-
"semver": "^7.8.
|
|
143
|
+
"prompts-ncu": "^3.0.3",
|
|
144
|
+
"semver": "^7.8.5",
|
|
147
145
|
"semver-utils": "^1.1.4",
|
|
148
146
|
"sinon": "^22.0.0",
|
|
149
147
|
"spawn-please": "^3.0.0",
|
|
150
148
|
"timeago.js": "^4.0.2",
|
|
151
|
-
"ts-json-schema-generator": "
|
|
149
|
+
"ts-json-schema-generator": "2.4.0",
|
|
152
150
|
"tsx": "^4.22.4",
|
|
153
151
|
"typescript": "^6.0.3",
|
|
154
|
-
"unplugin-dts": "^1.0.
|
|
152
|
+
"unplugin-dts": "^1.0.3",
|
|
155
153
|
"untildify": "^6.0.0",
|
|
156
154
|
"update-notifier": "^7.3.1",
|
|
157
|
-
"verdaccio": "^6.7.
|
|
158
|
-
"vite": "^8.0
|
|
155
|
+
"verdaccio": "^6.7.4",
|
|
156
|
+
"vite": "^8.1.0",
|
|
159
157
|
"vite-bundle-analyzer": "^1.3.8",
|
|
160
158
|
"yaml": "^2.9.0",
|
|
161
159
|
"yarn": "^1.22.22",
|
|
162
160
|
"zod": "^4.4.3"
|
|
163
161
|
},
|
|
164
162
|
"files": [
|
|
165
|
-
"build"
|
|
166
|
-
|
|
167
|
-
|
|
163
|
+
"build"
|
|
164
|
+
],
|
|
165
|
+
"allowScripts": {
|
|
166
|
+
"yarn@1.22.22": true,
|
|
167
|
+
"esbuild@0.28.1": true,
|
|
168
|
+
"unrs-resolver@1.11.1": true
|
|
169
|
+
}
|
|
168
170
|
}
|
package/build/cli.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { }
|