├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── fixture ├── index.js └── package.json ├── gruntfile.js ├── license ├── package.json ├── readme.md └── tasks └── dependency-check.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-dependency-check/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-dependency-check/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /fixture/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-dependency-check/HEAD/fixture/index.js -------------------------------------------------------------------------------- /fixture/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-dependency-check/HEAD/fixture/package.json -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-dependency-check/HEAD/gruntfile.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-dependency-check/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-dependency-check/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-dependency-check/HEAD/readme.md -------------------------------------------------------------------------------- /tasks/dependency-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-dependency-check/HEAD/tasks/dependency-check.js --------------------------------------------------------------------------------