require-main
Enabling this rule will result in an error being generated if main
is missing from the package.json file.
Example .npmpackagejsonlintrc configuration
{
"rules": {
"require-main": "error"
}
}
Rule Details
Incorrect example(s)
{
}
Correct example(s)
{
"main": "src/NpmPackageJsonLint.js"
}
History
- Introduced in version 1.0.0