Hi,
sorry but Easy Profile extends Joomla User Profile. the email field is a Joomla core field and we can't change this.
You can use a simple workaround:
in file /administrator/components/com_jsn/helpers/fields/usermail.php
replace at line 35 this
<field name="email1" type="email"
with this
<field name="email1" type="'.(JRequest::getVar('layout','')=='edit' ? 'hidden' : 'email').'"
replace at line 53 this
<field name="email2" type="email"
with this
<field name="email2" type="'.(JRequest::getVar('layout','')=='edit' ? 'hidden' : 'email').'"