6.0.0-development.1 • Published 2 years ago

@prodigytech/js-dependency-check v6.0.0-development.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

About

This utility is an Dev Dependency add-on to your javascript project. Running this tool will output a report with all the projects' dependencies and whether they are up to date or out of date.

This checks the project dependencies against the npm registry.

Add this package to your project with

yarn add  @prodigytech/js-dependency-check -D
npm install  @prodigytech/js-dependency-check  --save-dev

In order to set up this utility, you have the option to either, create a dependencyCheckConfig.json file or add a new object to your package.json or you can pass cli arguments.

package.json

dependencyCheckConfig: {
    "reportType" : "CI" | "HTML" | "JSON"
    "failOn" : "MAJOR" | "MINOR" | "NONE"
     "ignorePackages": [
        "@babel/preset-env",
        .....
    ]
  ],
}

standalone json config file (dependencyCheckConfig.json)

{
    "reportType" : "CI" | "HTML" | "JSON"
    "failOn" : "MAJOR" | "MINOR" | "NONE"
    "ignorePackages": [
        "@babel/preset-env",
        .....
    ]
}

cli arguments

npx @prodigytech/js-dependency-check --reportType="CI|HTML|JSON" --failOn=MAJOR|MINOR|NONE`

To run this utility

  • make sure you've added it as a dependency to your project
  • configure the utility with either the cli args, package.json or standalone config file.
  • run npx @prodigytech/js-dependency-check
  • The report will be saved to the root directory of the project for JSON & HTML report types. reportType CI will be printed to the screen.
6.0.1

2 years ago

6.0.0

2 years ago

5.0.0

3 years ago

4.0.4

3 years ago

4.0.3

3 years ago

4.0.2

3 years ago

4.0.1

3 years ago

4.0.0

3 years ago

3.0.1

3 years ago

3.0.0

3 years ago

2.0.0

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

0.0.12-alpha

3 years ago

0.0.11-alpha

3 years ago

0.0.10-alpha

3 years ago

0.0.9-alpha

3 years ago

0.0.8-alpha

3 years ago

0.0.7-alpha

3 years ago

0.0.6-alpha

3 years ago

0.0.5-alpha

3 years ago

0.0.4-alpha

3 years ago

0.0.3-alpha

3 years ago

0.0.2-alpha

3 years ago

0.0.1-alpha

3 years ago