(path)
| 6 | const packageLockPath = resolve(__dirname, '../package-lock.json'); |
| 7 | |
| 8 | async function readJSON(path) { |
| 9 | return await JSON.parse((await readFile(path)).toString()); |
| 10 | } |
| 11 | |
| 12 | function checkDependency({resolved, integrity}) { |
| 13 | if (!( |
no test coverage detected