├── .editorconfig ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── gruntfile.js ├── index.js ├── package.json └── test ├── .eslintrc ├── launcher.spec.js └── mocha-globals.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ie-launcher/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "standard" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .* 2 | 3 | Gruntfile.coffee 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ie-launcher/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ie-launcher/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ie-launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ie-launcher/HEAD/README.md -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ie-launcher/HEAD/gruntfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ie-launcher/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ie-launcher/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ie-launcher/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/launcher.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ie-launcher/HEAD/test/launcher.spec.js -------------------------------------------------------------------------------- /test/mocha-globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ie-launcher/HEAD/test/mocha-globals.js --------------------------------------------------------------------------------