├── .coveralls.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── lib └── index.js ├── package.json └── tests ├── fixtures └── app │ └── index.js └── unit └── index.js /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/strip-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/strip-loader/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/strip-loader/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/strip-loader/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/strip-loader/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/strip-loader/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/strip-loader/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/strip-loader/HEAD/package.json -------------------------------------------------------------------------------- /tests/fixtures/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/strip-loader/HEAD/tests/fixtures/app/index.js -------------------------------------------------------------------------------- /tests/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/strip-loader/HEAD/tests/unit/index.js --------------------------------------------------------------------------------