UNPKG

npm-package-json-lint

Version:
10 lines (9 loc) 430 B
import { n as Severity, t as LintIssue } from "./lint-issue.js"; import { PackageJson } from "type-fest"; //#region src/rules/prefer-scripts.d.ts declare const ruleType = RuleType.Array; declare const minItems = 1; declare const lint: (packageJsonData: PackageJson | any, severity: Severity, requiredScripts: any) => LintIssue | null; //#endregion export { lint, minItems, ruleType }; //# sourceMappingURL=prefer-scripts.d.ts.map