When using webpack to build your library we get the the error: ERROR in ./node_modules/buffermaker/test/BufferMaker.js
Module not found: Error: Can't resolve 'should'
This is because 'should' is only a a dev dependency of your project and you have included you tests in the distributed package.
Could you remove your tests from the distributed package or add 'should' to you dependencies?
Thanks Harry