Gathering detailed insights and metrics for rollup-plugin-es-info
Gathering detailed insights and metrics for rollup-plugin-es-info
Gathering detailed insights and metrics for rollup-plugin-es-info
Gathering detailed insights and metrics for rollup-plugin-es-info
npm install rollup-plugin-es-info
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
29 Commits
1 Forks
2 Watchers
1 Branches
1 Contributors
Updated on Aug 07, 2022
Latest Version
0.3.0
Package Id
rollup-plugin-es-info@0.3.0
Unpacked Size
6.29 kB
Size
2.73 kB
File Count
4
NPM Version
8.14.0
Node Version
17.4.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
Dump import/export information of each module. The information is extracted by es-info.
npm install -D rollup-plugin-es-info
1import esInfo from "rollup-plugin-es-info" 2 3export default { 4 input: ["entry.js"], 5 output: { 6 dir: "dist", 7 format: "cjs" 8 }, 9 plugins: [ 10 esInfo({ 11 include: ["**/*"], 12 file: "es-info.json", 13 import: false, 14 dynamicImport: false, 15 strip: true 16 }) 17 ] 18};
This module exports a single function.
options
has following properties:
include?
: Array<string>
. A list of minimatch pattern. Only matched files are processed. If undefined then match all files.exclude?
: Array<string>
. A list of minimatch pattern. Matched files are excluded.file?
: string
. A filename. If set then output the information table to the file.ongenerate?
: function
. When the bundle is generated, this function is called with an object map. Each key is the module path relative to cwd and the value is the information about the module.import?
: boolean
. If true then save import
information. Default: true
.export?
: boolean
. If true then save export
information. Default: true
.dynamicImport?
: boolean
. If true then save dynamicImport
information. Default: true
.strip?
: boolean
. If true then strip all the codes and leave only import
statements, resulting a faster build. Turn this on if you don't need the actual bundle e.g. you are just linting the code/verifying the dependency tree. Default: false
.0.3.0 (Aug 8, 2022)
0.2.0 (Jun 5, 2019)
0.1.3 (May 3, 2018)
0.1.2 (May 3, 2018)
sort-paths
.0.1.1 (May 3, 2018)
0.1.0 (May 2, 2018)
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
9 existing vulnerabilities detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/29 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
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
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
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