Skip to content
This repository has been archived by the owner on May 31, 2021. It is now read-only.
/ package-compliant Public archive

Validate the `support` property in the `package.json`

License

Notifications You must be signed in to change notification settings

nodejs/package-compliant

Repository files navigation

THIS REPO IS ARHIVED.

package-compliant

JavaScript Style Guide Build Status

Validate the support property in the package.json following the package-maintenance guidelines!

⚠ This project has been deprecated. Use @pkgjs/support instead.

Install

You can use this package as a CLI or as a Module if you need to use the core function of this module.

// As a CLI
npm i package-compliant -g

// As a module
npm i package-compliant

Commands

To run the commands you can execute:

package-compliant validate --file ./package-custom.json
// or simply in a project folder
package-compliant validate

// npx is supported of course
npx package-compliant validate

Validate

package-compliant validate [--file|-f <file path>]

Validation applied:

  • ✔ Validate support property of the JSON --file if it exists. The default --file is the package.json in the directory where the command is executed.

Module

To use this package as a module you need to:

const packageCompliant = require('package-compliant')
const aPackageJson = require('./package.json')

try {
  packageCompliant.validateSupportField(aPackageJson.support)
  // the package is valid
} catch (err) {
  // the package has some errors
}

// or you can use callback:
packageCompliant.validateSupportField(aPackageJson.support, (err, valid) => {
  if (err) {
    // there are some errors!!
  }
})

Contributions

Read the CONTRIBUTING guidelines to start help us!

License

Licensed under MIT.