(path: &Path)
| 112 | } |
| 113 | |
| 114 | fn read_package_json(path: &Path) -> Result<Value> { |
| 115 | let contents = fs::read_to_string(path)?; |
| 116 | Ok(serde_json::from_str(&contents)?) |
| 117 | } |
| 118 | |
| 119 | fn is_npm_package_json(package_json: &Value) -> bool { |
| 120 | [ |
no test coverage detected
searching dependent graphs…