├── .gitignore ├── .npmignore ├── .project ├── .settings ├── .jsdtscope ├── com.eclipsesource.jshint.ui.prefs ├── org.eclipse.wst.jsdt.core.prefs ├── org.eclipse.wst.jsdt.ui.prefs ├── org.eclipse.wst.jsdt.ui.superType.container └── org.eclipse.wst.jsdt.ui.superType.name ├── .travis.yml ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── bin └── grunt-istanbul ├── package.json ├── tasks ├── helpers.js └── istanbul.js └── test ├── fixtures ├── instrument │ ├── hello.es6 │ └── hello.js └── makeReport │ └── coverage.json ├── istanbul_test.js └── testHelpers.js /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /node_modules 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/.npmignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/.project -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/.settings/.jsdtscope -------------------------------------------------------------------------------- /.settings/com.eclipsesource.jshint.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/.settings/com.eclipsesource.jshint.ui.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/.settings/org.eclipse.wst.jsdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/.settings/org.eclipse.wst.jsdt.ui.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.JRE_CONTAINER -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Global -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/README.md -------------------------------------------------------------------------------- /bin/grunt-istanbul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/bin/grunt-istanbul -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/package.json -------------------------------------------------------------------------------- /tasks/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/tasks/helpers.js -------------------------------------------------------------------------------- /tasks/istanbul.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/tasks/istanbul.js -------------------------------------------------------------------------------- /test/fixtures/instrument/hello.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/test/fixtures/instrument/hello.es6 -------------------------------------------------------------------------------- /test/fixtures/instrument/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/test/fixtures/instrument/hello.js -------------------------------------------------------------------------------- /test/fixtures/makeReport/coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/test/fixtures/makeReport/coverage.json -------------------------------------------------------------------------------- /test/istanbul_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/test/istanbul_test.js -------------------------------------------------------------------------------- /test/testHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taichi/grunt-istanbul/HEAD/test/testHelpers.js --------------------------------------------------------------------------------