Socket
Socket
Sign inDemoInstall

package-json-analyzer

Package Overview
Dependencies
76
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    package-json-analyzer

A tool for analyzing npm dependencies and generating a detailed report.


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
3.18 MB
Created
Weekly downloads
 

Readme

Source

npm version

NPM Dependency Reporter

This project is a tool for analyzing dependencies from a package.json file. It generates an HTML report that provides information about each dependency's repository. The report includes the star count, open issue count, last updated date, homepage (on both npm and GitHub), and the license type.

Installation

You can install this package via npm using the following command:

npm install package-json-analyzer

Usage

The main function getDependencyReport requires three parameters:

  • packageJsonPath: The path to the package.json file to analyze.
  • outputHtmlPath: The path where the HTML report will be saved.
  • githubToken: Your GitHub personal access token. This is required to use GitHub's API to fetch repository information.

Here's an example of how you could use this function:

import getDependencyReport from 'package-json-analyzer';

const packageJsonPath = './path/to/your/package.json';
const outputHtmlPath = './path/to/output/report.html';
const githubToken = 'your github token here';

getDependencyReport(packageJsonPath, outputHtmlPath, githubToken);

example

This will create an HTML report at the specified outputHtmlPath. The report contains information about the dependency's GitHub and npm homepages, and the type of license.

A check is also performed on the type of license. Packages with licenses that may be considered risky for commercial development (like GPL, AGPL, SSPL) are highlighted. If such packages are found, their details will be displayed separately in the report.

Contributing

Contributions are always welcome. Please make a pull request.

License

This project is licensed under the terms of the MIT license.

Keywords

FAQs

Last updated on 14 Jun 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc