I suggest you do this for all of your modules then delete your node modules dir and push to git.
git add -A
git commit -m "cleaning up node modules"
git push
Then after pushing add node_modules to your .git ignore
The reason you want to do this is so the user can run npm install from the root of your dir and they will get the right packages for their system and arch.
switch to dominos module
npm i --save dominos
this will go into your package.json
I suggest you do this for all of your modules then delete your node modules dir and push to git.
Then after pushing add node_modules to your .git ignore
The reason you want to do this is so the user can run npm install from the root of your dir and they will get the right packages for their system and arch.
This is also the start to making this a module ;)