@baicie/ncu 0.1.14

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/package.json ADDED
@@ -0,0 +1,185 @@
1
+ {
2
+ "name": "@baicie/ncu",
3
+ "version": "0.1.14",
4
+ "author": "Tomas Junnonen <tomas1@gmail.com>",
5
+ "license": "Apache-2.0",
6
+ "contributors": [
7
+ "Raine Revere (https://github.com/raineorshine)",
8
+ "Imamuzzaki Abu Salam <imamuzzaki@gmail.com>"
9
+ ],
10
+ "description": "Find newer versions of dependencies than what your package.json allows",
11
+ "keywords": [
12
+ "dependencies",
13
+ "npm",
14
+ "package.json",
15
+ "update",
16
+ "upgrade",
17
+ "versions"
18
+ ],
19
+ "engines": {
20
+ "node": ">=20.0.0",
21
+ "npm": ">=8.12.1"
22
+ },
23
+ "main": "build/index.js",
24
+ "types": "build/index.d.ts",
25
+ "scripts": {
26
+ "build": "rimraf build && npm run build:options && vite build",
27
+ "build:options": "vite-node src/scripts/build-options.ts",
28
+ "build:analyze": "rimraf build && npm run build:options && ANALYZER=true vite build",
29
+ "lint": "cross-env FORCE_COLOR=1 npm-run-all --parallel --aggregate-output lint:*",
30
+ "lint:lockfile": "lockfile-lint",
31
+ "lint:markdown": "markdownlint \"**/*.md\" --ignore \"**/node_modules/**/*.md\" --ignore build --config .markdownlint.js",
32
+ "lint:src": "eslint --cache --cache-location node_modules/.cache/.eslintcache --ignore-path .gitignore --report-unused-disable-directives .",
33
+ "prepublishOnly": "npm run build",
34
+ "prettier": "prettier . --check",
35
+ "prettier:fix": "prettier . --write",
36
+ "test": "npm run test:unit && npm run test:e2e",
37
+ "test:bun": "test/bun-install.sh && mocha test/bun",
38
+ "test:unit": "mocha test test/package-managers/*",
39
+ "test:e2e": "./test/e2e.sh",
40
+ "ncu": "node build/cli.js",
41
+ "release": "tsx script/release.mts",
42
+ "ci-publish": "tsx script/publish.mts"
43
+ },
44
+ "bin": {
45
+ "npm-check-updates": "build/cli.js",
46
+ "ncu": "build/cli.js"
47
+ },
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "git+https://github.com/raineorshine/npm-check-updates.git"
51
+ },
52
+ "homepage": "https://github.com/raineorshine/npm-check-updates",
53
+ "bugs": {
54
+ "url": "https://github.com/raineorshine/npm-check-updates/issues"
55
+ },
56
+ "overrides": {
57
+ "ip": "2.0.1",
58
+ "jsonparse": "https://github.com/ARitz-Cracker/jsonparse/tree/patch-1",
59
+ "@yarnpkg/parsers": "2.6.0"
60
+ },
61
+ "devDependencies": {
62
+ "@baicie/release": "^0.1.11",
63
+ "@trivago/prettier-plugin-sort-imports": "^5.2.2",
64
+ "@types/bun": "^1.2.23",
65
+ "@types/chai": "^4.3.19",
66
+ "@types/chai-as-promised": "^8.0.0",
67
+ "@types/chai-string": "^1.4.5",
68
+ "@types/cli-table": "^0.3.4",
69
+ "@types/hosted-git-info": "^3.0.5",
70
+ "@types/ini": "^4.1.1",
71
+ "@types/js-yaml": "^4.0.9",
72
+ "@types/jsonlines": "^0.1.5",
73
+ "@types/lodash": "^4.17.20",
74
+ "@types/mocha": "^10.0.10",
75
+ "@types/node": "^24.5.2",
76
+ "@types/npm-registry-fetch": "^8.0.8",
77
+ "@types/parse-github-url": "^1.0.3",
78
+ "@types/picomatch": "^4.0.2",
79
+ "@types/progress": "^2.0.7",
80
+ "@types/prompts": "^2.4.9",
81
+ "@types/semver": "^7.7.1",
82
+ "@types/semver-utils": "^1.1.3",
83
+ "@types/sinon": "^17.0.4",
84
+ "@types/update-notifier": "^6.0.8",
85
+ "@typescript-eslint/eslint-plugin": "^8.44.1",
86
+ "@typescript-eslint/parser": "^8.44.1",
87
+ "camelcase": "^6.3.0",
88
+ "chai": "^4.3.10",
89
+ "chai-as-promised": "^7.1.2",
90
+ "chai-string": "^1.6.0",
91
+ "chalk": "^5.6.2",
92
+ "cli-table3": "^0.6.5",
93
+ "commander": "^14.0.1",
94
+ "cross-env": "^10.0.0",
95
+ "dequal": "^2.0.3",
96
+ "eslint": "^8.57.0",
97
+ "eslint-config-prettier": "^10.1.8",
98
+ "eslint-config-raine": "^0.5.0",
99
+ "eslint-config-standard": "^17.1.0",
100
+ "eslint-plugin-import": "^2.32.0",
101
+ "eslint-plugin-jsdoc": "^60.5.0",
102
+ "eslint-plugin-n": "^16.6.2",
103
+ "eslint-plugin-promise": "^6.6.0",
104
+ "fast-glob": "^3.3.3",
105
+ "fast-memoize": "^2.5.2",
106
+ "find-up": "5.0.0",
107
+ "fp-and-or": "^1.0.2",
108
+ "hosted-git-info": "^9.0.0",
109
+ "ini": "^5.0.0",
110
+ "js-yaml": "^4.1.0",
111
+ "jsonc-parser": "^3.3.1",
112
+ "jsonlines": "^0.1.1",
113
+ "lockfile-lint": "^4.14.1",
114
+ "lodash": "^4.17.21",
115
+ "markdownlint-cli": "^0.45.0",
116
+ "mocha": "^11.7.2",
117
+ "npm-registry-fetch": "^19.0.0",
118
+ "npm-run-all": "^4.1.5",
119
+ "p-map": "^4.0.0",
120
+ "parse-github-url": "^1.0.3",
121
+ "picomatch": "^4.0.3",
122
+ "prettier": "^3.6.2",
123
+ "progress": "^2.0.3",
124
+ "prompts-ncu": "^3.0.2",
125
+ "rc-config-loader": "^4.1.3",
126
+ "rfdc": "^1.4.1",
127
+ "rimraf": "^6.0.1",
128
+ "rollup-plugin-node-externals": "^8.1.1",
129
+ "semver": "^7.7.2",
130
+ "semver-utils": "^1.1.4",
131
+ "should": "^13.2.3",
132
+ "sinon": "^21.0.0",
133
+ "source-map-support": "^0.5.21",
134
+ "spawn-please": "^3.0.0",
135
+ "strip-ansi": "^7.1.2",
136
+ "ts-node": "^10.9.2",
137
+ "tsx": "^4.21.0",
138
+ "typescript": "^5.9.2",
139
+ "typescript-json-schema": "^0.65.1",
140
+ "untildify": "^4.0.0",
141
+ "update-notifier": "^7.3.1",
142
+ "verdaccio": "^6.1.6",
143
+ "vite": "^7.1.7",
144
+ "vite-bundle-analyzer": "^1.2.3",
145
+ "vite-node": "^3.2.4",
146
+ "vite-plugin-dts": "^4.5.4",
147
+ "yarn": "^1.22.22"
148
+ },
149
+ "files": [
150
+ "build",
151
+ "!**/test/**"
152
+ ],
153
+ "lockfile-lint": {
154
+ "allowed-schemes": [
155
+ "https:",
156
+ "git+ssh:"
157
+ ],
158
+ "allowed-hosts": [
159
+ "npm",
160
+ "github.com"
161
+ ],
162
+ "empty-hostname": false,
163
+ "type": "npm ",
164
+ "path": "package-lock.json"
165
+ },
166
+ "mocha": {
167
+ "check-leaks": true,
168
+ "extension": [
169
+ "test.ts"
170
+ ],
171
+ "require": [
172
+ "source-map-support/register",
173
+ "ts-node/register"
174
+ ],
175
+ "timeout": 60000,
176
+ "trace-deprecation": true,
177
+ "trace-warnings": true,
178
+ "use_strict": true
179
+ },
180
+ "packageManager": "pnpm@10.26.2",
181
+ "publishConfig": {
182
+ "access": "public",
183
+ "registry": "https://registry.npmjs.org/"
184
+ }
185
+ }