1.4.40 • Published 5 years ago

deedee v1.4.40

Weekly downloads
4
License
MIT
Repository
github
Last release
5 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

5 years ago

1.4.39

5 years ago

1.4.38

5 years ago

1.4.37

5 years ago

1.4.36

5 years ago

1.4.35

6 years ago

1.4.34

6 years ago

1.4.33

6 years ago

1.4.32

6 years ago

1.4.31

6 years ago

1.4.30

6 years ago

1.4.29

6 years ago

1.4.28

6 years ago

1.4.27

6 years ago

1.4.26

7 years ago

1.4.25

7 years ago

1.4.24

7 years ago

1.4.23

7 years ago

1.4.22

7 years ago

1.4.21

7 years ago

1.4.20

7 years ago

1.4.19

7 years ago

1.4.18

7 years ago

1.4.17

7 years ago

1.4.16

7 years ago

1.4.15

7 years ago

1.4.14

7 years ago

1.4.13

7 years ago

1.4.12

7 years ago

1.4.11

7 years ago

1.4.10

7 years ago

1.4.9

7 years ago

1.4.8

7 years ago

1.4.7

8 years ago

1.4.6

8 years ago

1.4.5

8 years ago

1.4.4

8 years ago

1.4.3

8 years ago

1.4.2

8 years ago

1.4.1

8 years ago

1.4.0

8 years ago

1.3.0

8 years ago

1.2.2

8 years ago

1.2.1

8 years ago

1.2.0

8 years ago

1.1.0

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago