@knit/depcheck
Advanced tools
Comparing version 0.0.3 to 0.0.6
{ | ||
"homepage": "https://github.com/knitjs/knit#readme", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/knitjs/knit/issues" | ||
}, | ||
"name": "@knit/depcheck", | ||
"description": "Depcheck parsers for knit", | ||
"version": "0.0.6", | ||
"main": "index.js", | ||
"private": false, | ||
"version": "0.0.3", | ||
"repository": { | ||
@@ -16,7 +23,2 @@ "type": "git", | ||
}, | ||
"homepage": "https://github.com/knitjs/knit#readme", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/knitjs/knit/issues" | ||
}, | ||
"dependencies": { | ||
@@ -28,5 +30,3 @@ "lodash": "4.16.4", | ||
}, | ||
"peerDependencies": {}, | ||
"name": "@knit/depcheck", | ||
"description": "Depcheck parsers for knit" | ||
"peerDependencies": {} | ||
} |
@@ -21,6 +21,7 @@ /* @flow weak */ | ||
const parser = config.parser ? [config.parser] : []; | ||
const configs = (config.extends || []).map(pkg => normalizePkgName(pkg, 'eslint-config')); | ||
const plugins = (config.plugins || []).map(pkg => normalizePkgName(pkg, 'eslint-plugin')); | ||
return configs.concat(plugins); | ||
return configs.concat(plugins).concat(parser).filter(Boolean); | ||
} | ||
@@ -27,0 +28,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7893
184