├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── package.json ├── tasks └── javascript_obfuscator.js └── test ├── fixtures ├── first_sample.js ├── gruntfile_generic.js ├── gruntfile_multiple0_sourcemap.js ├── gruntfile_multiple1_sourcemap.js ├── gruntfile_multiple_files1.js ├── gruntfile_multiple_files2.js ├── gruntfile_multiple_sourcemap.js ├── gruntfile_no_file.js ├── gruntfile_no_sourcemap.js ├── gruntfile_not_separate_sourcemap.js ├── gruntfile_overwrite1.js ├── gruntfile_overwrite2.js ├── gruntfile_overwrite_without_dest.js ├── gruntfile_single_file.js ├── gruntfile_single_sourcemap.js ├── gruntfile_single_sourcemap_renamed.js ├── gruntfile_unknown_file.js └── second_sample.js ├── helper.js └── javascript_obfuscator_test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/package.json -------------------------------------------------------------------------------- /tasks/javascript_obfuscator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/tasks/javascript_obfuscator.js -------------------------------------------------------------------------------- /test/fixtures/first_sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/first_sample.js -------------------------------------------------------------------------------- /test/fixtures/gruntfile_generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/gruntfile_generic.js -------------------------------------------------------------------------------- /test/fixtures/gruntfile_multiple0_sourcemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/gruntfile_multiple0_sourcemap.js -------------------------------------------------------------------------------- /test/fixtures/gruntfile_multiple1_sourcemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/gruntfile_multiple1_sourcemap.js -------------------------------------------------------------------------------- /test/fixtures/gruntfile_multiple_files1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/gruntfile_multiple_files1.js -------------------------------------------------------------------------------- /test/fixtures/gruntfile_multiple_files2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/gruntfile_multiple_files2.js -------------------------------------------------------------------------------- /test/fixtures/gruntfile_multiple_sourcemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/gruntfile_multiple_sourcemap.js -------------------------------------------------------------------------------- /test/fixtures/gruntfile_no_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/gruntfile_no_file.js -------------------------------------------------------------------------------- /test/fixtures/gruntfile_no_sourcemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/gruntfile_no_sourcemap.js -------------------------------------------------------------------------------- /test/fixtures/gruntfile_not_separate_sourcemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/gruntfile_not_separate_sourcemap.js -------------------------------------------------------------------------------- /test/fixtures/gruntfile_overwrite1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/gruntfile_overwrite1.js -------------------------------------------------------------------------------- /test/fixtures/gruntfile_overwrite2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/gruntfile_overwrite2.js -------------------------------------------------------------------------------- /test/fixtures/gruntfile_overwrite_without_dest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/gruntfile_overwrite_without_dest.js -------------------------------------------------------------------------------- /test/fixtures/gruntfile_single_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/gruntfile_single_file.js -------------------------------------------------------------------------------- /test/fixtures/gruntfile_single_sourcemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/gruntfile_single_sourcemap.js -------------------------------------------------------------------------------- /test/fixtures/gruntfile_single_sourcemap_renamed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/gruntfile_single_sourcemap_renamed.js -------------------------------------------------------------------------------- /test/fixtures/gruntfile_unknown_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/gruntfile_unknown_file.js -------------------------------------------------------------------------------- /test/fixtures/second_sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/fixtures/second_sample.js -------------------------------------------------------------------------------- /test/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/helper.js -------------------------------------------------------------------------------- /test/javascript_obfuscator_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasz-oponowicz/grunt-javascript-obfuscator/HEAD/test/javascript_obfuscator_test.js --------------------------------------------------------------------------------