Gathering detailed insights and metrics for broccoli-dependency-funnel
Gathering detailed insights and metrics for broccoli-dependency-funnel
Gathering detailed insights and metrics for broccoli-dependency-funnel
Gathering detailed insights and metrics for broccoli-dependency-funnel
Funnels a set of files included (or excluded) from a JS dependency graph
npm install broccoli-dependency-funnel
Typescript
Module System
Min. Node Version
Node Version
NPM Version
85.3
Supply Chain
74
Quality
77.7
Maintenance
100
Vulnerability
98.2
License
JavaScript (100%)
Total Downloads
4,459,444
Last Day
516
Last Week
8,019
Last Month
41,013
Last Year
525,672
3 Stars
68 Commits
4 Forks
2 Watchers
1 Branches
5 Contributors
Updated on Sep 14, 2018
Minified
Minified + Gzipped
Latest Version
2.1.2
Package Id
broccoli-dependency-funnel@2.1.2
Unpacked Size
11.01 kB
Size
3.78 kB
File Count
6
NPM Version
6.2.0
Node Version
10.6.0
Cumulative downloads
Total Downloads
Last Day
-28.4%
516
Compared to previous day
Last Week
-25.4%
8,019
Compared to previous week
Last Month
-0%
41,013
Compared to previous month
Last Year
-14%
525,672
Compared to previous year
This Broccoli plugin funnels a set of files included (or excluded) from a JS dependency graph.
In other words, you specify an ES6 module as an entry point and the plugin will walk its import graph and only copy-forward the files included in the graph. Alternatively, you can copy forward all files except those in the graph.
1const DependencyFunnel = require('broccoli-dependency-funnel'); 2const input = 'src'; // Can be a directory or Broccoli plugin/node 3 4module.exports = new DependencyFunnel(input, { 5 include: true, 6 entry: 'app.js', 7 external: [ 'lodash' ] 8});
include
/ exclude
: you must specify exactly one of these options set to true
. This determines whether the files included in the dependency graph or the files excluded from the dependency graph will be funneled forward.
entry
: you must specify an entry point to the dependency graph you wish to funnel. This should be a string path relative the input directory/node.
external
: an optional array of imports to be treated as external, meaning they aren't present in the given input directory structure.
git clone <repository-url>
cd broccoli-dependency-funnel
npm install
npm run test
or npm run test:debug
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
Found 2/18 approved changesets -- score normalized to 1
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
74 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More