我有一个节点github repo(repo A),我想将其安装在另一个节点github repo(repo B)中。我在仓库B的package.json中将其定义为依赖项。当我在存储库B中运行npm install时,它会在其node_modules(repoB / node_modules / repoA)中安装存储库A,但是存储库A不会在其node_modules中安装其依赖项。 (存储库A和存储库B的所有)依赖项都安装在repoB / node_modules /中。 相反,我应该怎么做才能在repoB / node_modules / repoA / node_modules中安装仓库A的依赖项?