├── .github └── workflows │ └── codeql.yml ├── .gitignore ├── .jshintrc ├── .npmignore ├── Gruntfile.js ├── LICENSE.md ├── README.md ├── package.json ├── tasks └── retire.js └── test-files ├── bower.json ├── dojo.js ├── jquery-1.6.js ├── jsrepository.json ├── not-js.txt ├── npmrepository.json ├── package.json.vulnerable └── safe.js /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetireJS/grunt-retire/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp 4 | *.iml 5 | .idea/ 6 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetireJS/grunt-retire/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetireJS/grunt-retire/HEAD/.npmignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetireJS/grunt-retire/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetireJS/grunt-retire/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetireJS/grunt-retire/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetireJS/grunt-retire/HEAD/package.json -------------------------------------------------------------------------------- /tasks/retire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetireJS/grunt-retire/HEAD/tasks/retire.js -------------------------------------------------------------------------------- /test-files/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetireJS/grunt-retire/HEAD/test-files/bower.json -------------------------------------------------------------------------------- /test-files/dojo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetireJS/grunt-retire/HEAD/test-files/dojo.js -------------------------------------------------------------------------------- /test-files/jquery-1.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetireJS/grunt-retire/HEAD/test-files/jquery-1.6.js -------------------------------------------------------------------------------- /test-files/jsrepository.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetireJS/grunt-retire/HEAD/test-files/jsrepository.json -------------------------------------------------------------------------------- /test-files/not-js.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-files/npmrepository.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetireJS/grunt-retire/HEAD/test-files/npmrepository.json -------------------------------------------------------------------------------- /test-files/package.json.vulnerable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetireJS/grunt-retire/HEAD/test-files/package.json.vulnerable -------------------------------------------------------------------------------- /test-files/safe.js: -------------------------------------------------------------------------------- 1 | console.log(); 2 | --------------------------------------------------------------------------------