├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── IMPLEMENTATION-EXAMPLE.md ├── IMPLEMENTATIONS.md ├── LICENSE ├── README.md ├── index.js ├── package.json └── test └── main.js /.gitignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | node_modules/ 3 | npm-debug.log 4 | *.sublime-* 5 | .idea/ 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/gulp-sri/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/gulp-sri/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/gulp-sri/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /IMPLEMENTATION-EXAMPLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/gulp-sri/HEAD/IMPLEMENTATION-EXAMPLE.md -------------------------------------------------------------------------------- /IMPLEMENTATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/gulp-sri/HEAD/IMPLEMENTATIONS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/gulp-sri/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/gulp-sri/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/gulp-sri/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/gulp-sri/HEAD/package.json -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathisonian/gulp-sri/HEAD/test/main.js --------------------------------------------------------------------------------