Allows you to use the WebHare forms API with Parsleyjs
This module integrates parsley to replace standard validation in the WebHare formsapi
Install the module
```
whcd
npm i @webhare/formsapi-parsleyjs
Use the module
`
import * as dompack from 'dompack';
import ParsleyForm from '@webhare/formsapi-parsleyjs'
dompack.register('form.wh-form', form => new ParsleyForm(form));
`
you can replace it
by importing this module, updating the library name (see above) and removing the jQuery parameter
from your call to new ParsleyForm`