1.4.40 • Published 6 years ago

deedee v1.4.40

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

deedee

Build Status NPM Version 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
  • ...

Installation

$ npm install --save deedee

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

$ npm install -g deedee

Usage

The easiest way to use deedee is from the command line:

$ deedee ./node_modules/growl

Output

node_modules/growl/package.json
Name: growl
Type: Node.js (devDependencies)

   eslint                     ^4.8.0
   eslint-config-airbnb-base  ^12.0.1
   eslint-plugin-import       ^2.7.0
   eslint-plugin-node         ^5.2.0

You can also easily use it in a 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

MIT © Forrest Desjardins

1.4.40

6 years ago

1.4.39

6 years ago

1.4.38

6 years ago

1.4.37

7 years ago

1.4.36

7 years ago

1.4.35

7 years ago

1.4.34

7 years ago

1.4.33

7 years ago

1.4.32

7 years ago

1.4.31

7 years ago

1.4.30

7 years ago

1.4.29

7 years ago

1.4.28

8 years ago

1.4.27

8 years ago

1.4.26

8 years ago

1.4.25

8 years ago

1.4.24

8 years ago

1.4.23

8 years ago

1.4.22

8 years ago

1.4.21

8 years ago

1.4.20

8 years ago

1.4.19

8 years ago

1.4.18

8 years ago

1.4.17

8 years ago

1.4.16

8 years ago

1.4.15

8 years ago

1.4.14

9 years ago

1.4.13

9 years ago

1.4.12

9 years ago

1.4.11

9 years ago

1.4.10

9 years ago

1.4.9

9 years ago

1.4.8

9 years ago

1.4.7

9 years ago

1.4.6

9 years ago

1.4.5

9 years ago

1.4.4

9 years ago

1.4.3

9 years ago

1.4.2

9 years ago

1.4.1

9 years ago

1.4.0

9 years ago

1.3.0

10 years ago

1.2.2

10 years ago

1.2.1

10 years ago

1.2.0

10 years ago

1.1.0

10 years ago

1.0.6

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago