├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── gulpfile.js ├── package.json ├── release.sh ├── tasks ├── lib │ └── budget.js └── sitespeed.js └── test └── gulpfile.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamzmaster/gulp-sitespeedio/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | test/* 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamzmaster/gulp-sitespeedio/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamzmaster/gulp-sitespeedio/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamzmaster/gulp-sitespeedio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamzmaster/gulp-sitespeedio/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamzmaster/gulp-sitespeedio/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamzmaster/gulp-sitespeedio/HEAD/package.json -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamzmaster/gulp-sitespeedio/HEAD/release.sh -------------------------------------------------------------------------------- /tasks/lib/budget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamzmaster/gulp-sitespeedio/HEAD/tasks/lib/budget.js -------------------------------------------------------------------------------- /tasks/sitespeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamzmaster/gulp-sitespeedio/HEAD/tasks/sitespeed.js -------------------------------------------------------------------------------- /test/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamzmaster/gulp-sitespeedio/HEAD/test/gulpfile.js --------------------------------------------------------------------------------