npm install doesnt create dist folder
You are missing running grunt
default task
You should run:
npm install
(which installs your dependencies), followed by a grunt
(which copies src files to dist as you can see in the Gruntfile.js copy:src_to_dist
task)
So in short just run: $ npm install && grunt