├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── RELEASE-CHECKLIST.md ├── TODO.md ├── bin └── headstart.js ├── gulpfile.js ├── lib └── hook.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | *node_modules* 2 | *.DS_Store* 3 | -------------------------------------------------------------------------------- /.npmignore : -------------------------------------------------------------------------------- 1 | .travis.yml 2 | TODO.md 3 | RELEASE-CHECKLIST.md -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flovan/headstart/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flovan/headstart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flovan/headstart/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flovan/headstart/HEAD/RELEASE-CHECKLIST.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flovan/headstart/HEAD/TODO.md -------------------------------------------------------------------------------- /bin/headstart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flovan/headstart/HEAD/bin/headstart.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flovan/headstart/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lib/hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flovan/headstart/HEAD/lib/hook.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flovan/headstart/HEAD/package.json --------------------------------------------------------------------------------