Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

deedee

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deedee

A tool for detecting dependencies

  • 1.3.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

deedee

A tool for detecting dependencies

NPM Version Build Status Coverage

Identifying all the dependencies used in a project can be difficult, especially when they're spread out across many files and directories. Deedee can locate dependencies for a variety of languages and produce a summary of the names of those dependencies as well as their versions and other relevant information. This information can help highlight a number of issues in projects, such as out-of-date libraries, unused dependencies, and problems in package manifest files.

Supports

  • Node.js
  • Bower
  • PHP (Composer)
  • Inline <script> tags
  • CSS @import
  • Ruby
  • Python
  • Go
  • DNX
  • ...

Installation

Use deedee in your project:

$ npm install --save deedee

Or install it globally to use it from the command line:

$ npm install -g deedee

Usage

$ deedee path/to/some/awesome/project
import path from 'path';
import deedee from '../lib/deedee.js';

deedee({
	path: path.resolve('..'),
	recursive: false
}).then(deps => {
	console.log(JSON.stringify(deps, null, 2));
});

License Dependencies devDependencies

Keywords

FAQs

Package last updated on 11 Apr 2016

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc