├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── lib ├── core.js ├── handlers.js └── zip-writer.js ├── package.json └── test ├── app ├── README.md ├── index.js ├── package.json ├── public │ ├── js │ │ ├── client.js │ │ └── dead.js │ └── vendor │ │ └── jquery.js ├── server │ ├── data.js │ └── index.js └── views │ ├── detail.hbs │ └── index.hbs ├── phantom-test.js ├── run-tests.js └── run.sh /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | test/output/ 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/index.js -------------------------------------------------------------------------------- /lib/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/lib/core.js -------------------------------------------------------------------------------- /lib/handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/lib/handlers.js -------------------------------------------------------------------------------- /lib/zip-writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/lib/zip-writer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/package.json -------------------------------------------------------------------------------- /test/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/test/app/README.md -------------------------------------------------------------------------------- /test/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/test/app/index.js -------------------------------------------------------------------------------- /test/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/test/app/package.json -------------------------------------------------------------------------------- /test/app/public/js/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/test/app/public/js/client.js -------------------------------------------------------------------------------- /test/app/public/js/dead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/test/app/public/js/dead.js -------------------------------------------------------------------------------- /test/app/public/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/test/app/public/vendor/jquery.js -------------------------------------------------------------------------------- /test/app/server/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/test/app/server/data.js -------------------------------------------------------------------------------- /test/app/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/test/app/server/index.js -------------------------------------------------------------------------------- /test/app/views/detail.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/test/app/views/detail.hbs -------------------------------------------------------------------------------- /test/app/views/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/test/app/views/index.hbs -------------------------------------------------------------------------------- /test/phantom-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/test/phantom-test.js -------------------------------------------------------------------------------- /test/run-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/test/run-tests.js -------------------------------------------------------------------------------- /test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotwarlost/istanbul-middleware/HEAD/test/run.sh --------------------------------------------------------------------------------