npm-package-json-lint icon indicating copy to clipboard operation
npm-package-json-lint copied to clipboard

Configurable linter for package.json files

Results 91 npm-package-json-lint issues
Sort by recently updated
recently updated
newest added

Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.3 to 1.15.6. Commits 35a517c Release version 1.15.6 of the npm package. c4f847f Drop Proxy-Authorization across hosts. 8526b4a Use GitHub for disclosure. b1677ce Release version 1.15.5 of...

dependencies :package:
javascript

Bumps [esbuild](https://github.com/evanw/esbuild) from 0.20.1 to 0.20.2. Release notes Sourced from esbuild's releases. v0.20.2 Support TypeScript experimental decorators on abstract class fields (#3684) With this release, you can now use TypeScript...

dependencies :package:

Bumps [figures](https://github.com/sindresorhus/figures) from 3.2.0 to 6.1.0. Release notes Sourced from figures's releases. v6.1.0 Add useFallback option to replaceSymbols() (#101) 0ab1df3 https://github.com/sindresorhus/figures/compare/v6.0.1...v6.1.0 v6.0.1 Fix circleQuestionMark and questionMarkPrefix on Linux (#98) 8b59acd...

dependencies :package:

Hi! 👋 I was trying out the CLI and when reading the [documentation](https://npmpackagejsonlint.org/docs/cli#--noconfigfiles-alias--ncf), I interpreted that if I used the `--noConfigFiles` flag, I would be able to run the tool...

Hi! 👋 After going through the README file, in the [_From the command line_ subsection](https://github.com/tclindner/npm-package-json-lint?tab=readme-ov-file#from-the-command-line), I think that `npx npm-package-json-lint` should be replaced by `npx npm-package-json-lint .`, in order to...

Bumps [cosmiconfig](https://github.com/cosmiconfig/cosmiconfig) from 8.3.6 to 9.0.0. Changelog Sourced from cosmiconfig's changelog. 9.0.0 Added searchStrategy option: The none value means that cosmiconfig does not traverse any directories upwards. Breaking change: This...

dependencies :package:

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2 to 3. Release notes Sourced from github/codeql-action's releases. CodeQL Bundle v2.15.4 Bundles CodeQL CLI v2.15.4 (changelog, release) Includes the following CodeQL language packs from github/codeql@codeql-cli/v2.15.4: codeql/cpp-queries...

dependencies :package:
github_actions

I have a situation where my project uses a package, but there are dependencies that also have older versions of the package. I use a `resolution` field to force the...

Check order of sub-properties with [`prefer-property-order`](https://npmpackagejsonlint.org/docs/rules/package-json-properties/prefer-property-order/). Example with sub-properties of `exports` to check that [`types` comes first](https://nodejs.org/dist/latest-v20.x/docs/api/packages.html#community-conditions-definitions) and [`default` comes last](https://nodejs.org/dist/latest-v20.x/docs/api/packages.html#conditional-exports) (I had a [problem](https://github.com/jsdelivr/jsdelivr/issues/18496) because I had positioned `types`...

Export the types (file `*.d.ts`) of the configuration so that we can validate our configurations with TypeScript. --- Example of `npmpackagejsonlint.config.js` if types are exported: ```JavaScript // @ts-check /** *...