如何列出已安装的 grunt 插件

How to list installed grunt-plugins

我已经安装了很多grunt插件,所以我不知道当我想使用它的时候是否已经安装了插件。 如何列出已安装的 grunt 插件。

grunt --help 列出每个已安装插件的条目。提到的package.json是查看项目是否包含某个插件的地方。

编辑:

如您所指,这些只是某些项目的插件。您想知道您在计算机上安装了哪些插件。

如果您是通过 npm 安装的,请使用

npm list -g --depth=0

来源: http://ponderingdeveloper.com/2013/09/03/listing-globally-installed-npm-packages-and-version/

我知道这个 post 很旧,但是如果有人是 Grunt 的新手并且正在寻找相同的信息,那么这将有所帮助。

你可以在package.json文件中检查所有安装的插件,即你是否使用了--save-dev标志。 你应该看到这样的东西。

....
"devDependencies": {
    "grunt": "^1.0.1",
    "grunt-contrib-concat": "^1.0.1",
    "grunt-contrib-copy": "^1.0.0",
    "grunt-contrib-cssmin": "^1.0.2",
    "grunt-contrib-watch": "^1.0.0",
    "time-grunt": "^1.4.0"
    }
....

如果你没有使用过flag,可以在node_modules文件夹中看到安装好的插件。

 /- node_modules/
    +- grunt
    +- grunt-contrib-concat
    +- grunt-contrib-copy
    +- grunt-contrib-cssmin
    +- grunt-contrib-watch
    +- time-grunt

您还可以通过执行 npm list --depth=0 在您的 cmd 中查看所有已安装的插件。 -g 是全局的,如果你使用 npm list -g --depth=0 它会列出全局安装的插件,但是如果你想检查本地安装的插件然后使用没有 -g.

如果您想了解更多关于 grunt 插件的信息 installation/uninstall 以及插件的一些详细信息 -- 您可以访问这里 >> http://www.beekeeperstudio.com/category/grunt/.