├── .gitignore ├── .versions ├── LICENSE ├── README.md ├── lib ├── client-report.html ├── client-report.js ├── client-report.less ├── icon-time.png ├── reamplify.js ├── status-widget.less ├── velocity-logo.png ├── velocity.import.less ├── velocity.js ├── velocity_cog.svg └── velocity_logo.svg └── package.js /.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | *.swp 3 | -------------------------------------------------------------------------------- /.versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/html-reporter/HEAD/.versions -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/html-reporter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/html-reporter/HEAD/README.md -------------------------------------------------------------------------------- /lib/client-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/html-reporter/HEAD/lib/client-report.html -------------------------------------------------------------------------------- /lib/client-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/html-reporter/HEAD/lib/client-report.js -------------------------------------------------------------------------------- /lib/client-report.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/html-reporter/HEAD/lib/client-report.less -------------------------------------------------------------------------------- /lib/icon-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/html-reporter/HEAD/lib/icon-time.png -------------------------------------------------------------------------------- /lib/reamplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/html-reporter/HEAD/lib/reamplify.js -------------------------------------------------------------------------------- /lib/status-widget.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/html-reporter/HEAD/lib/status-widget.less -------------------------------------------------------------------------------- /lib/velocity-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/html-reporter/HEAD/lib/velocity-logo.png -------------------------------------------------------------------------------- /lib/velocity.import.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/html-reporter/HEAD/lib/velocity.import.less -------------------------------------------------------------------------------- /lib/velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/html-reporter/HEAD/lib/velocity.js -------------------------------------------------------------------------------- /lib/velocity_cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/html-reporter/HEAD/lib/velocity_cog.svg -------------------------------------------------------------------------------- /lib/velocity_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/html-reporter/HEAD/lib/velocity_logo.svg -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/html-reporter/HEAD/package.js --------------------------------------------------------------------------------