Gathering detailed insights and metrics for @inthepocket/npm-license-scraper
Gathering detailed insights and metrics for @inthepocket/npm-license-scraper
Gathering detailed insights and metrics for @inthepocket/npm-license-scraper
Gathering detailed insights and metrics for @inthepocket/npm-license-scraper
📜 Dead simple license scraper for npm packages (with zero real dependencies)
npm install @inthepocket/npm-license-scraper
Typescript
Module System
Node Version
NPM Version
TypeScript (56.09%)
JavaScript (43.91%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
7 Stars
54 Commits
3 Forks
21 Watchers
4 Branches
35 Contributors
Updated on May 12, 2024
Latest Version
2.3.2
Package Id
@inthepocket/npm-license-scraper@2.3.2
Unpacked Size
18.97 kB
Size
5.53 kB
File Count
16
NPM Version
9.6.7
Node Version
18.17.1
Published on
Sep 12, 2023
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
npm-license-scraper
will scan your package.json
and node_modules
to generate a JSON file including the licenses of all open source packages that are being used.
1$ npm i -D @inthepocket/npm-license-scraper 2 3# Via npx 4$ npx npm-license-scraper 5 6# Directly 7$ node node_modules/.bin/npm-license-scraper
--export [filename]
: Export to a JSON file. (default ./licenses.json
)--includeDev
: Include dev dependencies in output (default false
)--exclude [package|package,package,package]
: Ignore certain packages from the check (e.g submodules, monorepo or private packages)The exported JSON file has the following format:
1type JSON = Array<{ 2 name: string; 3 version: string; 4 license: string; 5 url: string; 6 isValid: boolean; 7}>;
Example:
1[ 2 { 3 "package": "react", 4 "version": "18.0.0", 5 "license": "MIT", 6 "url": "https://reactjs.org/", 7 "isValid": true 8 }, 9 { 10 "package": "react-native", 11 "version": "0.69.3", 12 "license": "MIT", 13 "url": "https://npmjs.com/package/react-native", 14 "isValid": true 15 } 16]
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
6 existing vulnerabilities detected
Details
Reason
Found 6/17 approved changesets -- score normalized to 3
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
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
security policy file not detected
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