$web=Get-SPWeb
"http://siteURL"
$list=$web.Lists["ListName"]
$list.EventReceivers
$web.Dispose()
Display Names of the Event receivers
$web=Get-SPWeb
"http://SIteURL"
$list=$web.Lists["ListName"]
$list.EventReceivers
|ForEach-Object {Write-host $_.Type
$_.Name}
$web.Dispose()