grunt-dependency-check

1.1.0 • Public • Published

grunt-dependency-check Build Status

Checks which modules you have used in your code and then makes sure they are listed as dependencies in your package.json and vice-versa, using dependency-check

Issues with the output should be reported on the dependency-check issue tracker.

Install

$ npm install --save-dev grunt-dependency-check

Usage

require('load-grunt-tasks')(grunt); // npm install --save-dev load-grunt-tasks
 
grunt.initConfig({
    dependencyCheck: {
        files: ['**/*.js'],           // same as --entry
        options: {
            package: '.',             // module folder path
            missing: true,            // same as --missing
            unused: true,             // same as --unused
            excludeUnusedDev: false,  // same as --no-dev
            ignoreUnused: [],         // same as --ignore-module
            noDefaultEntries: true    // same as --no-default-entries
        }
    }
});
 
grunt.registerTask('default', ['dependencyCheck']);

Options

See the dependency-check docs.

In addition you can supply a package option.

License

MIT © Sindre Sorhus

Package Sidebar

Install

npm i grunt-dependency-check

Weekly Downloads

1

Version

1.1.0

License

MIT

Last publish

Collaborators

  • sindresorhus