A package.json linter for Node projects
- npm-package-json-lint
- What is npm-package-json-lint?
- Install and Use
- Custom Configuration
- Local Development
- Documentation
- Migrating from v5.x.x to 6.x.x
- Migrating from v4.x.x to 5.x.x
- Migrating from v3.x.x to 4.x.x
- Migrating from v2.x.x to 3.x.x
- Migrating from v1.x.x to 2.x.x
- Migrating from v0.x.x to 1.x.x
- Contributing
- Release History
- Related
- License
npm-package-json-lint helps enforce standards for your package.json file. This helps to ensure that your files are of the highest standard and quality. It is also customisable to match your specific project guidline requirements/desires. It has support for both command line and programmatic usage. Currently it can check for:
- validity of data types in nodes. Ex:
name
should always be a string. - whether a string is a lowercase
- whether a version number is a valid
- the presence of a given module
- the presence of a pre-release version of a module
- the presence of an author
- the presence of any bugs
- valid dependencies
- valid licenses
- and much more!
Please see the website for a list of rules.
First thing first, let's make sure you have the necessary pre-requisites.
npm install npm-package-json-lint -g
npm install npm-package-json-lint
- Once npm-package-json-lint is installed either in the project or globally it can be run with the
following command,
npx npm-package-json-lint
. This will go through the process of linting/validating your code to meet your desired specifications.
-
The linter can also be used as a module in the program and the output be displayed via a log message. Adding the following code to your file can accomplish this.
const npmPackageJsonLint = require("npm-package-json-lint"); const result = npmPackageJsonLint.lintFiles(["package.json"]); console.log(result);
npm-package-json-lint has the ability to be constomly configured to match your desires. To configure the linter navigate to the .npmpackagejsonlintrc file in the repository and add in or remove your desired rules.
Follow these steps to get your local environement set up to allow you to contribute to the repository
- In the terminal, navigate to the directory in which you want the repository to be cloned.
- Run this command from the terminal,
git clone https://github.com/tclindner/npm-package-json-lint.git
- After cloning the repository navigate into the project's root directory from the terminal.
- Run "npm install" to install the necessary dependencies.
- Your local environment is now set up to create PR's and work on different issues
Quick links
CLI commands and configuration | Node.js API | Integrations
Please see the migration guide.
Please see the migration guide.
Please see the migration guide.
Please see the migration guide.
Please see the migration guide.
Please see the migration guide.
Please see the migration guide.
Please see CONTRIBUTING.md.
Please see CHANGELOG.md.
- npm-package-json-lint-config-default: Shared default configuration module for npm-package-json-lint
Copyright (c) 2016-2023 Thomas Lindner. Licensed under the MIT license.