* Fix Spelling
- Rename `Listenler` to `Listener`
* Add Options to Connection
- Add options which can be passed to connection string for `SocketIO`
* Build New Version
* Fix spelling in Package.json
- Change `implemantation` to `implementation`
- Change `vuejs` to `Vue.js`
- Change `vuex` to `VueX`
* Updates to index.js
- Add `options` to JSDocs for constructor
- Fix spelling for JSDoc on `install` and `connect` methods
Native event was passed capitalized which cause unexpected camelCase
conversion.
Event is now passed without uppercasing and save string transformations
e.g.
SOCKET_CONNECT => `socket_cONNECT` instead of `socket_connect`
SOCKET_CONNECT_ERROR => `socket_cONNECTERROR` instead of `socket_connectError`