运行 脚本位于 package.json 依赖项中

Run script that is in package.json of a dependency

我有这个应用程序结构:

root
  whatever
  node_modules
    module_A
      package.json 

module_A 的 package.json 有一些脚本。比方说:

"scripts": {
  "first_script": whatever
}

如何从终端运行 first_script?

一个解决方案是:

npm explore module_A -- npm run first_script