UNPKG

npm-package-json-lint

Version:
7 lines (6 loc) 335 B
import { PackageJson } from 'type-fest'; import { RuleType } from '../types/rule-type'; import { Severity } from '../types/severity'; import { LintResult } from '../types/lint-result'; export declare const ruleType = RuleType.Standard; export declare const lint: (packageJsonData: PackageJson | any, severity: Severity) => LintResult;