package npm import ( _ "embed" "github.com/spf13/cobra" ) func NewNpmCommand() *cobra.Command { return &cobra.Command{ Use: "npm [action] [package]", Short: "Guard npm package manager", DisableFlagParsing: true, RunE: func(cmd *cobra.Command, args []string) error { return executeNpmFlow(args) }, } }