(packageName: string)
| 15 | join(appNodeModulesPath, ...packageName.split('/'), 'package.json') |
| 16 | |
| 17 | const readPackageJSON = (packageName: string): IPackageJSON => |
| 18 | JSON.parse(readFileSync(getPackageJSONPath(packageName), 'utf8')) |
| 19 | |
| 20 | const readOptionalPackageJSON = ( |
| 21 | packageName: string |
no test coverage detected