mcasimir / depcheck-ci

Npm depcheck util that plays nice with ci
1 stars 1 forks source link

Depcheck CI

Depcheck util that plays nice with ci

Differences with depcheck

Install

npm i --save-dev --save-exact depcheck-ci

Add npm script in package.json:

scripts: {
  "depcheck": "depcheck-ci"
}

Usage

npm run depcheck

Configuration

Either add a .depcheckrc file on root of project or a depcheck section in package.json

Default settings are:

{
  "ignore": [],
  "ignoreDirs": [
    "node_modules",
    "bower_components"
  ],
  "strict": true,
  "unused": true
}